Pass the classpath to dex2oat.
This makes it possible to run applications that have multiple
dex files on the classpath.
Change-Id: I15264a001a46ddb253e87f2739e6b9644348f1be
diff --git a/src/compiler.h b/src/compiler.h
index c09e2c2..a8ea205 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -25,8 +25,8 @@
~Compiler();
- // Compile all Methods of all the Classes of all the DexFiles that are part of a ClassLoader.
- void CompileAll(const ClassLoader* class_loader);
+ void CompileAll(const ClassLoader* class_loader,
+ const std::vector<const DexFile*>& class_path);
// Compile a single Method
void CompileOne(const Method* method);