Also create VerifierDeps for boot image compilation.

It used to be that ART ensured all code in the boot classpath was fully
verified. Now that we have mainline, we cannot guarantee this at
compile-time. Therefore make boot image compilation also use
VerifierDeps.

Test: test.py
Change-Id: I414de823fe79a6637679550cdb16c1b28f397ed2
diff --git a/runtime/common_runtime_test.cc b/runtime/common_runtime_test.cc
index d7c77e8..e8c8385 100644
--- a/runtime/common_runtime_test.cc
+++ b/runtime/common_runtime_test.cc
@@ -460,6 +460,7 @@
     "-Xmx64m",
     "--runtime-arg",
     "-Xverify:softfail",
+    "--force-determinism",
   };
   CHECK_EQ(dex_files.size(), dex_locations.size());
   for (const std::string& dex_file : dex_files) {