summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2018-04-27 21:47:53 +0900
committerJiyong Park <jiyong@google.com>2018-04-27 21:47:53 +0900
commitbfb1424a250f9a28c9a6033bd6c7f62579e7228d (patch)
tree0a7a8e431e4993bab2acac4422972365851ddd7e
parent02ad8ad9214145f918020b17fb9a0f0d3f86dd46 (diff)
downloadexternal_libcxx-bfb1424a250f9a28c9a6033bd6c7f62579e7228d.tar.gz
external_libcxx-bfb1424a250f9a28c9a6033bd6c7f62579e7228d.tar.bz2
external_libcxx-bfb1424a250f9a28c9a6033bd6c7f62579e7228d.zip
Libraries that are direct or indirect dependencies of modules installed to recovery partition (e.g. toybox) are marked as recovery_available: true. This allows a recovery variant of the lib is created when it is depended by other recovery or recovery_available modules. Bug: 67916654 Bug: 64960723 Test: m -j Change-Id: I3dbc481be7ec367530adb57b1f4c92ce4b0db31a
-rw-r--r--Android.bp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 4312e5bf8..795ce6a6a 100644
--- a/Android.bp
+++ b/Android.bp
@@ -19,6 +19,7 @@ cc_library_static {
name: "libc++_static",
host_supported: true,
vendor_available: true,
+ recovery_available: true,
srcs: [
"src/algorithm.cpp",
"src/any.cpp",
@@ -81,6 +82,7 @@ cc_library_shared {
enabled: true,
support_system_process: true,
},
+ recovery_available: true,
whole_static_libs: ["libc++_static"],
stl: "none",