diff options
| author | 2018-02-20 09:35:21 -0800 | |
|---|---|---|
| committer | 2018-02-20 09:35:21 -0800 | |
| commit | 9462a56f881bce9b4890e178e4558ffa9957b294 (patch) | |
| tree | 40c84aa4fbd0c037afa999fbef783ac9e0dccd83 | |
| parent | 38321bb87c3630afaef76f312e90df5bca6a0554 (diff) | |
ART: Fix up libartagent deps
Correctly depend on libdexfile vs libdexfiled.
Bug: 22322814
Test: mmma art
Change-Id: I645525a9e86e74c01195fc196ad712d86bb5c8c6
| -rw-r--r-- | test/Android.bp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/test/Android.bp b/test/Android.bp index 902f4edf8f..bf39ec4d9f 100644 --- a/test/Android.bp +++ b/test/Android.bp @@ -169,7 +169,6 @@ cc_defaults { "art_defaults", ], shared_libs: [ - "libdexfile", "libbacktrace", "libbase", "libnativehelper", @@ -180,7 +179,10 @@ art_cc_test_library { name: "libartagent", srcs: ["900-hello-plugin/load_unload.cc"], defaults: ["libartagent-defaults"], - shared_libs: ["libart"], + shared_libs: [ + "libart", + "libdexfile", + ], } art_cc_test_library { @@ -190,7 +192,10 @@ art_cc_test_library { "art_debug_defaults", "libartagent-defaults", ], - shared_libs: ["libartd"], + shared_libs: [ + "libartd", + "libdexfiled", + ], } art_cc_defaults { |