7f04880820
Enable native bridge support for bionic libraries. Makes it possible to use them in binaries for translated architectures. Bug: http://b/77159578 Test: make Change-Id: Iccd4ad7aecfa5260cc15f09ca975d2e18987278a
25 lines
567 B
Text
25 lines
567 B
Text
cc_library_static {
|
|
name: "libsystemproperties",
|
|
defaults: ["libc_defaults"],
|
|
native_bridge_supported: true,
|
|
srcs: [
|
|
"context_node.cpp",
|
|
"contexts_split.cpp",
|
|
"contexts_serialized.cpp",
|
|
"prop_area.cpp",
|
|
"prop_info.cpp",
|
|
"system_properties.cpp",
|
|
],
|
|
whole_static_libs: [
|
|
"libpropertyinfoparser",
|
|
],
|
|
header_libs: [
|
|
"libasync_safe_headers",
|
|
],
|
|
|
|
include_dirs: [
|
|
"bionic/libc",
|
|
"bionic/libstdc++/include",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
}
|