61a5a8380d
Revert submission 1403568-sysprop_trace Reason for revert: makes property get/set non-reentrant Reverted Changes: I6f85f3f52:Add systrace tag for system property Id2b93acb2:Adding system property tracing Id78992d23:Add systrace tag for system property I1ba9fc7bd:Add systrace tag for system property Bug: 193050299 Test: build and boot a device Change-Id: Ic7a83fb01a39113d408ed0c95d27f694d5a2649c
52 lines
1.2 KiB
Text
52 lines
1.2 KiB
Text
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "bionic_libc_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
// SPDX-license-identifier-BSD
|
|
default_applicable_licenses: ["bionic_libc_license"],
|
|
}
|
|
|
|
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"],
|
|
}
|
|
|
|
cc_benchmark {
|
|
name: "property_context_lookup_benchmark",
|
|
srcs: [
|
|
"context_lookup_benchmark.cpp",
|
|
],
|
|
include_dirs: [
|
|
"bionic/libc",
|
|
],
|
|
|
|
shared_libs: ["libbase"],
|
|
static_libs: [
|
|
"libpropertyinfoserializer",
|
|
"libsystemproperties",
|
|
"libasync_safe",
|
|
],
|
|
}
|