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: Ie59155c08890e96ce1893fa3687afcf763d7aea3
16 lines
344 B
Text
16 lines
344 B
Text
cc_library_static {
|
|
name: "libpropertyinfoparser",
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
recovery_available: true,
|
|
srcs: ["property_info_parser.cpp"],
|
|
|
|
cpp_std: "experimental",
|
|
cppflags: [
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Werror",
|
|
],
|
|
stl: "none",
|
|
export_include_dirs: ["include"],
|
|
}
|