android_system_core/property_service/libpropertyinfoparser/Android.bp
Jiyong Park 612210c75b 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: Ie59155c08890e96ce1893fa3687afcf763d7aea3
2018-05-15 09:47:04 +09:00

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"],
}