d9d37c09d8
This CL is created as a best effort to migrate test targets to the new Android ownership model. It is based on historical data from repository history and insights from git blame. Given the nature of this effort, there may be instances of incorrect attribution. If you find incorrect or unnecessary attribution in this CL, please create a new CL to fix that. For detailed guidelines and further information on the migration please refer to the link below, go/new-android-ownership-model Bug: 304529413 Test: N/A Change-Id: Ie36b2a3245d9901323affcc5e51dafbb87af9248
56 lines
1.3 KiB
Text
56 lines
1.3 KiB
Text
package {
|
|
default_team: "trendy_team_native_tools_libraries",
|
|
// 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"],
|
|
apex_available: [
|
|
"com.android.runtime",
|
|
],
|
|
}
|
|
|
|
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",
|
|
],
|
|
}
|