summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-09-07 01:09:17 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2021-09-07 01:09:17 +0000
commit8bd2468cbd0ebc97ecfce32cdb26193f4c45e053 (patch)
tree79c5a1daefa45d0d8c336c6c10c6424c502affae
parent2720b1c975006282f13de2f442f8c558590797d8 (diff)
parent9f9f7e2ba070ac5b6cea8dd8af272dadebe43a30 (diff)
downloadunwinding-8bd2468cbd0ebc97ecfce32cdb26193f4c45e053.tar.gz
Snap for 7708222 from 9f9f7e2ba070ac5b6cea8dd8af272dadebe43a30 to sc-qpr1-release
Change-Id: Id3b44326cf2cc6c0c26891543b497577ddf73b38
-rw-r--r--libunwindstack/Android.bp6
1 files changed, 6 insertions, 0 deletions
diff --git a/libunwindstack/Android.bp b/libunwindstack/Android.bp
index 5443ce7..0651872 100644
--- a/libunwindstack/Android.bp
+++ b/libunwindstack/Android.bp
@@ -143,32 +143,38 @@ cc_library {
srcs: ["DexFile.cpp"],
cflags: ["-DDEXFILE_SUPPORT"],
static_libs: ["libdexfile_support"],
+ runtime_libs: ["libdexfile"], // libdexfile_support dependency
target: {
vendor: {
cflags: ["-UDEXFILE_SUPPORT"],
exclude_srcs: ["DexFile.cpp"],
exclude_static_libs: ["libdexfile_support"],
+ exclude_runtime_libs: ["libdexfile"],
},
product: {
cflags: ["-UDEXFILE_SUPPORT"],
exclude_srcs: ["DexFile.cpp"],
exclude_static_libs: ["libdexfile_support"],
+ exclude_runtime_libs: ["libdexfile"],
},
recovery: {
cflags: ["-UDEXFILE_SUPPORT"],
exclude_srcs: ["DexFile.cpp"],
exclude_static_libs: ["libdexfile_support"],
+ exclude_runtime_libs: ["libdexfile"],
},
vendor_ramdisk: {
cflags: ["-UDEXFILE_SUPPORT"],
exclude_srcs: ["DexFile.cpp"],
exclude_static_libs: ["libdexfile_support"],
+ exclude_runtime_libs: ["libdexfile"],
},
native_bridge: {
cflags: ["-UDEXFILE_SUPPORT"],
exclude_srcs: ["DexFile.cpp"],
exclude_static_libs: ["libdexfile_support"],
+ exclude_runtime_libs: ["libdexfile"],
},
},