diff options
author | 2021-04-13 21:14:53 +0100 | |
---|---|---|
committer | 2021-04-19 15:35:34 +0000 | |
commit | 108d4d6df2a3d74d84acbbd97ca044fe26e07de8 (patch) | |
tree | 2854b1c25ce3cc4cf346f0b40b572f368c5f881c | |
parent | 525fa42b13863305bc7cad34bba1c9ab5567894e (diff) |
Use runtime_libs for the dlopen dependency on libartpalette-system.
That will propagate it into requireNativeLibs in the ART APEX manifest.
Test: cat out/soong/.intermediates/art/build/apex/com.android.art/android_common_com.android.art_image/apex_manifest_full.json
check that requireNativeLibs contains libartpalette-system.so
Bug: 130340935
Change-Id: I09c4030a9c585f10e730b192e7a03c8d87e2d8f3
-rw-r--r-- | libartpalette/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libartpalette/Android.bp b/libartpalette/Android.bp index 2f41cf6695..66e8bda876 100644 --- a/libartpalette/Android.bp +++ b/libartpalette/Android.bp @@ -60,7 +60,7 @@ art_cc_library { // and binds the methods in the libartpalette-system library. android: { // libartpalette.so dlopen()'s libartpalette-system. - required: ["libartpalette-system"], + runtime_libs: ["libartpalette-system"], srcs: ["apex/palette.cc"], shared_libs: ["liblog"], version_script: "libartpalette.map.txt", |