platform_system_core/libutils/Android.bp

412 lines
8.2 KiB
Text
Raw Normal View History

[LSC] Add LOCAL_LICENSE_KINDS to system/core Added SPDX-license-identifier-Apache-2.0 to: bootstat/Android.bp cli-test/Android.bp code_coverage/Android.bp cpio/Android.bp debuggerd/crasher/Android.bp debuggerd/proto/Android.bp diagnose_usb/Android.bp fs_mgr/libdm/Android.bp fs_mgr/libfiemap/Android.bp fs_mgr/liblp/Android.bp fs_mgr/libsnapshot/Android.bp fs_mgr/libstorage_literals/Android.bp fs_mgr/libvbmeta/Android.bp fs_mgr/tests/Android.bp fs_mgr/tools/Android.bp gatekeeperd/Android.bp healthd/Android.bp healthd/testdata/Android.bp init/Android.bp init/Android.mk init/sysprop/Android.bp init/test_kill_services/Android.bp init/test_service/Android.bp libappfuse/Android.bp libasyncio/Android.bp libbinderwrapper/Android.bp libcrypto_utils/Android.bp libcrypto_utils/tests/Android.bp libdiskconfig/Android.bp libgrallocusage/Android.bp libkeyutils/mini_keyctl/Android.bp libmodprobe/Android.bp libnetutils/Android.bp libpackagelistparser/Android.bp libprocessgroup/Android.bp libprocessgroup/cgrouprc/Android.bp libprocessgroup/cgrouprc_format/Android.bp libprocessgroup/profiles/Android.bp libprocessgroup/setup/Android.bp libqtaguid/Android.bp libsparse/Android.bp libstats/push_compat/Android.bp libsuspend/Android.bp libsync/Android.bp libsystem/Android.bp libsysutils/Android.bp libusbhost/Android.bp libutils/Android.bp libvndksupport/Android.bp libvndksupport/tests/Android.bp llkd/Android.bp llkd/tests/Android.bp property_service/libpropertyinfoparser/Android.bp property_service/libpropertyinfoserializer/Android.bp property_service/property_info_checker/Android.bp qemu_pipe/Android.bp reboot/Android.bp rootdir/Android.bp rootdir/Android.mk rootdir/avb/Android.bp rootdir/avb/Android.mk run-as/Android.bp sdcard/Android.bp set-verity-state/Android.bp shell_and_utilities/Android.bp storaged/Android.bp toolbox/Android.bp trusty/apploader/Android.bp trusty/confirmationui/Android.bp trusty/confirmationui/fuzz/Android.bp trusty/coverage/Android.bp trusty/fuzz/Android.bp trusty/fuzz/test/Android.bp trusty/gatekeeper/Android.bp trusty/gatekeeper/fuzz/Android.bp trusty/keymaster/Android.bp trusty/keymaster/fuzz/Android.bp trusty/libtrusty/Android.bp trusty/libtrusty/tipc-test/Android.bp trusty/secure_dpu/Android.bp trusty/storage/interface/Android.bp trusty/storage/lib/Android.bp trusty/storage/proxy/Android.bp trusty/storage/tests/Android.bp trusty/utils/spiproxyd/Android.bp trusty/utils/trusty-ut-ctrl/Android.bp usbd/Android.bp watchdogd/Android.bp Added SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-BSD to: debuggerd/Android.bp fastboot/Android.bp libkeyutils/Android.bp Added SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-BSD SPDX-license-identifier-MIT to: libcutils/Android.bp Added SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-MIT to: fs_mgr/Android.bp fs_mgr/libfs_avb/Android.bp trusty/Android.bp trusty/utils/rpmb_dev/Android.bp Added SPDX-license-identifier-BSD to: fastboot/fuzzy_fastboot/Android.bp Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Exempt-From-Owner-Approval: janitorial work Change-Id: Id740a7d2884556081fdb68876584b25eb95e1bef
2021-02-17 04:02:14 +01:00
package {
default_applicable_licenses: ["system_core_libutils_license"],
}
license {
name: "system_core_libutils_license",
visibility: [":__subpackages__"],
license_kinds: [
"SPDX-license-identifier-Apache-2.0",
],
license_text: [
"NOTICE",
],
}
cc_library_headers {
name: "libutils_headers",
libutils: mark as vendor_available By setting vendor_available, the following may become true: * a prebuilt library from this release may be used at runtime by in a later releasse (by vendor code compiled against this release). so this library shouldn't depend on runtime state that may change in the future. * this library may be loaded twice into a single process (potentially an old version and a newer version). The symbols will be isolated using linker namespaces, but this may break assumptions about 1 library in 1 process (your singletons will run twice). Background: This means that these modules may be built and installed twice -- once for the system partition and once for the vendor partition. The system version will build just like today, and will be used by the framework components on /system. The vendor version will build against a reduced set of exports and libraries -- similar to, but separate from, the NDK. This means that all your dependencies must also mark vendor_available. At runtime, /system binaries will load libraries from /system/lib*, while /vendor binaries will load libraries from /vendor/lib*. There are some exceptions in both directions -- bionic(libc,etc) and liblog are always loaded from /system. And SP-HALs (OpenGL, etc) may load /vendor code into /system processes, but the dependencies of those libraries will load from /vendor until it reaches a library that's always on /system. In the SP-HAL case, if both framework and vendor libraries depend on a library of the same name, both versions will be loaded, but they will be isolated from each other. It's possible to compile differently -- reducing your source files, exporting different include directories, etc. For details see: https://android-review.googlesource.com/368372 None of this is enabled unless the device opts into the system/vendor split with BOARD_VNDK_VERSION := current. Bug: 36426473 Bug: 36079834 Test: m -j libutils Test: attempt to compile with BOARD_VNDK_VERSION := current Merged-In: I6c1279a74ef071851401e38bbdd377f13827694c Change-Id: I6c1279a74ef071851401e38bbdd377f13827694c
2017-04-11 21:43:16 +02:00
vendor_available: true,
product_available: true,
recovery_available: true,
vendor_ramdisk_available: true,
host_supported: true,
native_bridge_supported: true,
defaults: [
"apex-lowest-min-sdk-version",
],
apex_available: [
"//apex_available:platform",
"//apex_available:anyapex",
],
header_libs: [
"libbase_headers",
"libcutils_headers",
"liblog_headers",
"libprocessgroup_headers",
"libsystem_headers",
],
export_header_lib_headers: [
"libbase_headers",
"libcutils_headers",
"liblog_headers",
"libprocessgroup_headers",
"libsystem_headers",
],
export_include_dirs: ["include"],
target: {
linux_bionic: {
enabled: true,
},
windows: {
enabled: true,
},
},
}
cc_defaults {
name: "libutils_defaults_nodeps",
libutils: mark as vendor_available By setting vendor_available, the following may become true: * a prebuilt library from this release may be used at runtime by in a later releasse (by vendor code compiled against this release). so this library shouldn't depend on runtime state that may change in the future. * this library may be loaded twice into a single process (potentially an old version and a newer version). The symbols will be isolated using linker namespaces, but this may break assumptions about 1 library in 1 process (your singletons will run twice). Background: This means that these modules may be built and installed twice -- once for the system partition and once for the vendor partition. The system version will build just like today, and will be used by the framework components on /system. The vendor version will build against a reduced set of exports and libraries -- similar to, but separate from, the NDK. This means that all your dependencies must also mark vendor_available. At runtime, /system binaries will load libraries from /system/lib*, while /vendor binaries will load libraries from /vendor/lib*. There are some exceptions in both directions -- bionic(libc,etc) and liblog are always loaded from /system. And SP-HALs (OpenGL, etc) may load /vendor code into /system processes, but the dependencies of those libraries will load from /vendor until it reaches a library that's always on /system. In the SP-HAL case, if both framework and vendor libraries depend on a library of the same name, both versions will be loaded, but they will be isolated from each other. It's possible to compile differently -- reducing your source files, exporting different include directories, etc. For details see: https://android-review.googlesource.com/368372 None of this is enabled unless the device opts into the system/vendor split with BOARD_VNDK_VERSION := current. Bug: 36426473 Bug: 36079834 Test: m -j libutils Test: attempt to compile with BOARD_VNDK_VERSION := current Merged-In: I6c1279a74ef071851401e38bbdd377f13827694c Change-Id: I6c1279a74ef071851401e38bbdd377f13827694c
2017-04-11 21:43:16 +02:00
vendor_available: true,
product_available: true,
recovery_available: true,
host_supported: true,
cflags: [
"-Wall",
"-Werror",
"-Wno-exit-time-destructors",
"-DANDROID_UTILS_REF_BASE_DISABLE_IMPLICIT_CONSTRUCTION",
],
sanitize: {
misc_undefined: ["integer"],
},
target: {
android: {
cflags: ["-fvisibility=protected"],
shared_libs: [
"libvndksupport",
],
sanitize: {
misc_undefined: ["integer"],
},
},
recovery: {
exclude_shared_libs: ["libvndksupport"],
},
linux_bionic: {
enabled: true,
},
darwin: {
cflags: ["-Wno-unused-parameter"],
},
windows: {
cflags: [
// Under MinGW, ctype.h doesn't need multi-byte support
"-DMB_CUR_MAX=1",
"-Wno-unused-private-field",
],
enabled: true,
},
},
fuzz_config: {
cc: ["smoreland@google.com"],
},
}
cc_defaults {
name: "libutils_defaults",
defaults: [
"libutils_defaults_nodeps",
],
shared_libs: [
"libcutils",
"liblog",
],
}
cc_defaults {
name: "libutils_impl_defaults",
defaults: [
"libutils_defaults",
"apex-lowest-min-sdk-version",
],
native_bridge_supported: true,
whole_static_libs: ["libutils_binder"],
header_libs: [
"libbase_headers",
"libutils_headers",
],
export_header_lib_headers: [
"libutils_headers",
],
srcs: [
"FileMap.cpp",
"JenkinsHash.cpp",
"LightRefBase.cpp",
"NativeHandle.cpp",
"Printer.cpp",
"StopWatch.cpp",
"SystemClock.cpp",
"Threads.cpp",
"Timers.cpp",
"Tokenizer.cpp",
"misc.cpp",
],
target: {
android: {
srcs: [
"Trace.cpp",
],
},
linux: {
header_libs: ["libbase_headers"],
srcs: [
"Looper.cpp",
],
},
},
apex_available: [
"//apex_available:anyapex",
"//apex_available:platform",
],
afdo: true,
}
cc_library {
name: "libutils",
defaults: ["libutils_impl_defaults"],
vndk: {
enabled: true,
support_system_process: true,
},
target: {
product: {
header_abi_checker: {
enabled: true,
// AFDO affects weak symbols.
diff_flags: ["-allow-adding-removing-weak-symbols"],
ref_dump_dirs: ["abi-dumps"],
},
},
vendor: {
header_abi_checker: {
enabled: true,
// AFDO affects weak symbols.
diff_flags: ["-allow-adding-removing-weak-symbols"],
ref_dump_dirs: ["abi-dumps"],
},
},
},
}
cc_library {
name: "libutils_test_compile",
defaults: ["libutils_impl_defaults"],
cflags: [
"-DDEBUG_CALLBACKS=1",
"-DDEBUG_POLL_AND_WAKE=1",
"-DDEBUG_REFS=1",
"-DDEBUG_TOKENIZER=1",
],
visibility: [":__subpackages__"],
}
cc_library {
name: "libutilscallstack",
defaults: ["libutils_defaults"],
// TODO(b/153609531): remove when no longer needed.
native_bridge_supported: true,
min_sdk_version: "29",
vndk: {
enabled: true,
support_system_process: true,
},
header_libs: [
"libbase_headers",
"libutils_headers",
],
export_header_lib_headers: [
"libutils_headers",
],
srcs: [
"CallStack.cpp",
],
shared_libs: [
"libutils",
"libunwindstack",
],
target: {
linux: {
srcs: [
"ProcessCallStack.cpp",
],
},
darwin: {
enabled: false,
},
windows: {
enabled: false,
},
},
}
cc_defaults {
name: "libutils_fuzz_defaults",
host_supported: true,
shared_libs: [
"libutils",
"libbase",
"liblog",
],
}
cc_fuzz {
name: "libutils_fuzz_bitset",
defaults: ["libutils_fuzz_defaults"],
srcs: ["BitSet_fuzz.cpp"],
}
cc_fuzz {
name: "libutils_fuzz_filemap",
defaults: ["libutils_fuzz_defaults"],
srcs: ["FileMap_fuzz.cpp"],
}
cc_fuzz {
name: "libutils_fuzz_printer",
defaults: ["libutils_fuzz_defaults"],
srcs: ["Printer_fuzz.cpp"],
}
cc_fuzz {
name: "libutils_fuzz_callstack",
defaults: ["libutils_fuzz_defaults"],
srcs: ["CallStack_fuzz.cpp"],
shared_libs: [
"libutilscallstack",
],
}
cc_fuzz {
name: "libutils_fuzz_process_callstack",
defaults: ["libutils_fuzz_defaults"],
srcs: ["ProcessCallStack_fuzz.cpp"],
shared_libs: [
"libutilscallstack",
],
}
cc_fuzz {
name: "libutils_fuzz_lrucache",
defaults: ["libutils_fuzz_defaults"],
srcs: ["LruCache_fuzz.cpp"],
}
cc_fuzz {
name: "libutils_fuzz_looper",
defaults: ["libutils_fuzz_defaults"],
srcs: ["Looper_fuzz.cpp"],
}
cc_test {
name: "libutils_test",
host_supported: true,
srcs: [
"BitSet_test.cpp",
"CallStack_test.cpp",
"FileMap_test.cpp",
"LruCache_test.cpp",
"Mutex_test.cpp",
"Singleton_test.cpp",
"Timers_test.cpp",
],
target: {
android: {
srcs: [
"SystemClock_test.cpp",
],
shared_libs: [
"libbase",
"libcutils",
"liblog",
"liblzma",
"libunwindstack",
"libutils",
"libutilscallstack",
"libz",
],
},
linux: {
srcs: [
"Looper_test.cpp",
],
},
host: {
static_libs: [
"libbase",
"liblog",
"liblzma",
"libunwindstack_no_dex",
"libutils",
"libutilscallstack",
],
},
},
data_libs: [
"libutils_test_singleton1",
"libutils_test_singleton2",
],
cflags: [
"-Wall",
"-Wextra",
"-Werror",
"-Wthread-safety",
],
test_suites: ["device-tests"],
}
cc_test_library {
name: "libutils_test_singleton1",
host_supported: true,
installable: false,
srcs: ["Singleton_test1.cpp"],
cflags: [
"-Wall",
"-Werror",
],
header_libs: ["libutils_headers"],
}
cc_test_library {
name: "libutils_test_singleton2",
host_supported: true,
installable: false,
srcs: ["Singleton_test2.cpp"],
cflags: [
"-Wall",
"-Werror",
],
shared_libs: ["libutils_test_singleton1"],
header_libs: ["libutils_headers"],
}