diff options
author | 2020-04-02 10:50:35 +0100 | |
---|---|---|
committer | 2020-04-03 13:40:14 +0100 | |
commit | d1f73515701bc64b3a23727b3973da6906f1b167 (patch) | |
tree | 59d789c42edd402ae799caa748939b61aeb00be7 /runtime/class_linker.h | |
parent | bda163d9c8313f0b92046abda5ffb1216af1e808 (diff) |
dex2oat: add --updatable-bcp-packages-file argument.
Add a command line argument specifying a file that contains
the list of updatable boot class path packages.
Test: Updated module_exclusion_test
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Test: aosp_taimen-userdebug boots.
Bug: 151314205
Change-Id: Ic6a66ad7e565a9b9b344cc467cb1ed550ab41b3f
Diffstat (limited to 'runtime/class_linker.h')
-rw-r--r-- | runtime/class_linker.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/class_linker.h b/runtime/class_linker.h index 998f7392ce..4731203fad 100644 --- a/runtime/class_linker.h +++ b/runtime/class_linker.h @@ -829,6 +829,8 @@ class ClassLinker { return true; } + virtual bool IsUpdatableBootClassPathDescriptor(const char* descriptor); + private: class LinkInterfaceMethodsHelper; class VisiblyInitializedCallback; |