android_system_core/property_service/libpropertyinfoparser/Android.bp
Spandan Das 2e5cfbc1a4 Make apex availability of libpropertyinfoparser and libpropertyinfoparser explicit
The availability to runtime apex was done implicitly using a baseline map in
build/soong/apex/apex.go. Make this explicit in Android.bp

Bug: 281077552
Test: m nothing
Change-Id: Iba1f30ef57c0707189ec79813ef501029135eeba
2024-01-04 01:34:40 +00:00

32 lines
711 B
Text

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
cc_library_static {
name: "libpropertyinfoparser",
host_supported: true,
vendor_available: true,
ramdisk_available: true,
vendor_ramdisk_available: true,
recovery_available: true,
native_bridge_supported: true,
srcs: ["property_info_parser.cpp"],
cppflags: [
"-Wall",
"-Wextra",
"-Werror",
],
stl: "none",
target: {
bionic: {
system_shared_libs: [],
header_libs: ["libc_headers"],
},
},
export_include_dirs: ["include"],
apex_available: [
"//apex_available:platform",
"com.android.runtime",
],
}