Mark as recovery_available: true

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
This commit is contained in:
Jiyong Park
2018-04-27 21:47:53 +09:00
parent 02ad8ad921
commit bfb1424a25

View File

@@ -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",