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",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2017-01-05 19:39:38 +01:00
|
|
|
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,
|
2020-11-11 11:17:40 +01:00
|
|
|
product_available: true,
|
2018-04-27 14:48:43 +02:00
|
|
|
recovery_available: true,
|
2020-10-28 00:37:06 +01:00
|
|
|
vendor_ramdisk_available: true,
|
2017-01-05 19:39:38 +01:00
|
|
|
host_supported: true,
|
2019-05-16 13:48:17 +02:00
|
|
|
native_bridge_supported: true,
|
2020-03-07 08:36:09 +01:00
|
|
|
apex_available: [
|
|
|
|
"//apex_available:platform",
|
|
|
|
"//apex_available:anyapex",
|
|
|
|
],
|
2020-04-16 11:48:33 +02:00
|
|
|
min_sdk_version: "apex_inherit",
|
2017-04-14 06:01:40 +02:00
|
|
|
|
2017-04-20 09:56:45 +02:00
|
|
|
header_libs: [
|
2017-07-11 01:40:36 +02:00
|
|
|
"liblog_headers",
|
2017-04-20 09:56:45 +02:00
|
|
|
"libsystem_headers",
|
2018-02-17 02:58:14 +01:00
|
|
|
"libcutils_headers",
|
2019-01-25 06:32:52 +01:00
|
|
|
"libprocessgroup_headers",
|
2017-04-20 09:56:45 +02:00
|
|
|
],
|
|
|
|
export_header_lib_headers: [
|
2017-07-11 01:40:36 +02:00
|
|
|
"liblog_headers",
|
2017-04-20 09:56:45 +02:00
|
|
|
"libsystem_headers",
|
2018-02-17 02:58:14 +01:00
|
|
|
"libcutils_headers",
|
2019-01-25 06:32:52 +01:00
|
|
|
"libprocessgroup_headers",
|
2017-04-20 09:56:45 +02:00
|
|
|
],
|
2017-01-05 19:39:38 +01:00
|
|
|
export_include_dirs: ["include"],
|
2017-04-14 06:01:40 +02:00
|
|
|
|
2017-01-05 19:39:38 +01:00
|
|
|
target: {
|
2017-04-14 06:01:40 +02:00
|
|
|
android: {
|
|
|
|
header_libs: ["libbacktrace_headers"],
|
|
|
|
export_header_lib_headers: ["libbacktrace_headers"],
|
|
|
|
},
|
2020-10-14 23:13:58 +02:00
|
|
|
linux_glibc: {
|
|
|
|
header_libs: ["libbacktrace_headers"],
|
|
|
|
export_header_lib_headers: ["libbacktrace_headers"],
|
|
|
|
},
|
2017-03-15 23:23:36 +01:00
|
|
|
linux_bionic: {
|
2020-10-14 23:13:58 +02:00
|
|
|
header_libs: ["libbacktrace_headers"],
|
|
|
|
export_header_lib_headers: ["libbacktrace_headers"],
|
2017-03-15 23:23:36 +01:00
|
|
|
enabled: true,
|
|
|
|
},
|
2017-01-05 19:39:38 +01:00
|
|
|
windows: {
|
2017-03-15 23:23:36 +01:00
|
|
|
enabled: true,
|
|
|
|
},
|
2017-01-05 19:39:38 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-01-18 02:07:09 +01:00
|
|
|
cc_defaults {
|
|
|
|
name: "libutils_defaults",
|
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,
|
2020-11-11 11:17:40 +01:00
|
|
|
product_available: true,
|
2018-05-29 09:41:30 +02:00
|
|
|
recovery_available: true,
|
2017-07-31 08:41:10 +02:00
|
|
|
vndk: {
|
|
|
|
enabled: true,
|
|
|
|
support_system_process: true,
|
|
|
|
},
|
2016-07-13 02:20:18 +02:00
|
|
|
host_supported: true,
|
|
|
|
|
2018-02-17 02:58:14 +01:00
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
2021-03-04 18:46:23 +01:00
|
|
|
"-Wno-exit-time-destructors",
|
2018-02-17 02:58:14 +01:00
|
|
|
],
|
2017-04-13 03:57:57 +02:00
|
|
|
header_libs: [
|
2018-09-13 20:08:41 +02:00
|
|
|
"libbase_headers",
|
2017-04-13 03:57:57 +02:00
|
|
|
"libutils_headers",
|
|
|
|
],
|
|
|
|
export_header_lib_headers: [
|
|
|
|
"libutils_headers",
|
|
|
|
],
|
2016-07-13 02:20:18 +02:00
|
|
|
|
2017-06-26 22:52:06 +02:00
|
|
|
shared_libs: [
|
2019-03-26 04:38:56 +01:00
|
|
|
"libcutils",
|
2017-06-26 22:52:06 +02:00
|
|
|
"liblog",
|
|
|
|
],
|
2020-07-08 00:37:07 +02:00
|
|
|
sanitize: {
|
|
|
|
misc_undefined: ["integer"],
|
|
|
|
},
|
2017-06-26 22:52:06 +02:00
|
|
|
|
2016-07-13 02:20:18 +02:00
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
cflags: ["-fvisibility=protected"],
|
|
|
|
|
|
|
|
shared_libs: [
|
2019-01-25 06:32:52 +01:00
|
|
|
"libprocessgroup",
|
2016-07-13 02:20:18 +02:00
|
|
|
"libdl",
|
2017-05-26 10:57:18 +02:00
|
|
|
"libvndksupport",
|
2016-07-13 02:20:18 +02:00
|
|
|
],
|
2016-07-13 09:20:20 +02:00
|
|
|
|
|
|
|
sanitize: {
|
|
|
|
misc_undefined: ["integer"],
|
|
|
|
},
|
2016-07-13 02:20:18 +02:00
|
|
|
},
|
|
|
|
|
2018-05-29 09:41:30 +02:00
|
|
|
recovery: {
|
|
|
|
exclude_shared_libs: ["libvndksupport"],
|
|
|
|
},
|
|
|
|
|
2016-11-29 22:32:55 +01:00
|
|
|
linux_bionic: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
2016-07-13 02:20:18 +02:00
|
|
|
|
|
|
|
darwin: {
|
|
|
|
cflags: ["-Wno-unused-parameter"],
|
|
|
|
},
|
|
|
|
|
|
|
|
windows: {
|
2017-11-30 03:06:11 +01:00
|
|
|
cflags: [
|
|
|
|
// Under MinGW, ctype.h doesn't need multi-byte support
|
|
|
|
"-DMB_CUR_MAX=1",
|
|
|
|
"-Wno-unused-private-field",
|
|
|
|
],
|
2016-07-13 02:20:18 +02:00
|
|
|
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-01-18 02:07:09 +01:00
|
|
|
cc_library {
|
|
|
|
name: "libutils",
|
|
|
|
defaults: ["libutils_defaults"],
|
2019-05-16 13:48:17 +02:00
|
|
|
native_bridge_supported: true,
|
2018-01-18 02:07:09 +01:00
|
|
|
|
|
|
|
srcs: [
|
2019-11-15 09:07:32 +01:00
|
|
|
"Errors.cpp",
|
2018-01-18 02:07:09 +01:00
|
|
|
"FileMap.cpp",
|
|
|
|
"JenkinsHash.cpp",
|
|
|
|
"NativeHandle.cpp",
|
|
|
|
"Printer.cpp",
|
|
|
|
"RefBase.cpp",
|
|
|
|
"SharedBuffer.cpp",
|
|
|
|
"StopWatch.cpp",
|
|
|
|
"String8.cpp",
|
|
|
|
"String16.cpp",
|
|
|
|
"StrongPointer.cpp",
|
|
|
|
"SystemClock.cpp",
|
|
|
|
"Threads.cpp",
|
|
|
|
"Timers.cpp",
|
|
|
|
"Tokenizer.cpp",
|
|
|
|
"Unicode.cpp",
|
|
|
|
"VectorImpl.cpp",
|
|
|
|
"misc.cpp",
|
|
|
|
],
|
|
|
|
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
srcs: [
|
|
|
|
"Trace.cpp",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
linux: {
|
2019-01-02 23:31:26 +01:00
|
|
|
header_libs: ["libbase_headers"],
|
2018-01-18 02:07:09 +01:00
|
|
|
srcs: [
|
|
|
|
"Looper.cpp",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2020-02-13 02:06:05 +01:00
|
|
|
|
|
|
|
apex_available: [
|
|
|
|
"//apex_available:anyapex",
|
|
|
|
"//apex_available:platform",
|
|
|
|
],
|
2020-04-16 11:48:33 +02:00
|
|
|
min_sdk_version: "apex_inherit",
|
2018-01-18 02:07:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "libutilscallstack",
|
|
|
|
defaults: ["libutils_defaults"],
|
2020-06-18 22:01:13 +02:00
|
|
|
// TODO(b/153609531): remove when no longer needed.
|
|
|
|
native_bridge_supported: true,
|
2018-01-18 02:07:09 +01:00
|
|
|
|
|
|
|
srcs: [
|
|
|
|
"CallStack.cpp",
|
|
|
|
],
|
|
|
|
|
2019-03-26 04:38:56 +01:00
|
|
|
shared_libs: [
|
2020-05-12 00:44:01 +02:00
|
|
|
"libutils",
|
|
|
|
"libbacktrace",
|
2019-03-26 04:38:56 +01:00
|
|
|
],
|
|
|
|
|
2018-01-18 02:07:09 +01:00
|
|
|
target: {
|
|
|
|
linux: {
|
|
|
|
srcs: [
|
|
|
|
"ProcessCallStack.cpp",
|
|
|
|
],
|
|
|
|
},
|
2019-04-02 00:01:53 +02:00
|
|
|
darwin: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
2019-03-26 04:38:56 +01:00
|
|
|
windows: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
2018-01-18 02:07:09 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-05-12 00:44:01 +02:00
|
|
|
cc_defaults {
|
|
|
|
name: "libutils_fuzz_defaults",
|
|
|
|
host_supported: true,
|
|
|
|
shared_libs: [
|
|
|
|
"libutils",
|
|
|
|
"libbase",
|
2020-07-02 20:51:44 +02:00
|
|
|
"liblog",
|
2020-05-12 00:44:01 +02:00
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
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_string8",
|
|
|
|
defaults: ["libutils_fuzz_defaults"],
|
|
|
|
srcs: ["String8_fuzz.cpp"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_fuzz {
|
|
|
|
name: "libutils_fuzz_string16",
|
|
|
|
defaults: ["libutils_fuzz_defaults"],
|
|
|
|
srcs: ["String16_fuzz.cpp"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_fuzz {
|
|
|
|
name: "libutils_fuzz_vector",
|
|
|
|
defaults: ["libutils_fuzz_defaults"],
|
|
|
|
srcs: ["Vector_fuzz.cpp"],
|
|
|
|
}
|
|
|
|
|
2020-07-02 20:51:44 +02:00
|
|
|
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_stopwatch",
|
|
|
|
defaults: ["libutils_fuzz_defaults"],
|
|
|
|
srcs: ["StopWatch_fuzz.cpp"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_fuzz {
|
|
|
|
name: "libutils_fuzz_refbase",
|
|
|
|
defaults: ["libutils_fuzz_defaults"],
|
|
|
|
srcs: ["RefBase_fuzz.cpp"],
|
|
|
|
}
|
|
|
|
|
|
|
|
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"],
|
|
|
|
}
|
|
|
|
|
2016-07-13 02:20:18 +02:00
|
|
|
cc_test {
|
2019-02-07 21:41:37 +01:00
|
|
|
name: "libutils_test",
|
|
|
|
host_supported: true,
|
|
|
|
|
|
|
|
srcs: [
|
|
|
|
"BitSet_test.cpp",
|
|
|
|
"FileMap_test.cpp",
|
|
|
|
"LruCache_test.cpp",
|
|
|
|
"Mutex_test.cpp",
|
|
|
|
"SharedBuffer_test.cpp",
|
2020-07-10 13:34:53 +02:00
|
|
|
"Singleton_test.cpp",
|
2019-02-07 21:41:37 +01:00
|
|
|
"String8_test.cpp",
|
2019-09-05 22:18:27 +02:00
|
|
|
"String16_test.cpp",
|
2019-02-07 21:41:37 +01:00
|
|
|
"StrongPointer_test.cpp",
|
2020-05-27 21:24:30 +02:00
|
|
|
"Timers_test.cpp",
|
2019-02-07 21:41:37 +01:00
|
|
|
"Unicode_test.cpp",
|
|
|
|
"Vector_test.cpp",
|
|
|
|
],
|
|
|
|
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
srcs: [
|
|
|
|
"SystemClock_test.cpp",
|
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"libz",
|
|
|
|
"liblog",
|
|
|
|
"libcutils",
|
|
|
|
"libutils",
|
|
|
|
"libbase",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
linux: {
|
|
|
|
srcs: [
|
|
|
|
"Looper_test.cpp",
|
|
|
|
"RefBase_test.cpp",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
host: {
|
|
|
|
static_libs: [
|
|
|
|
"libutils",
|
|
|
|
"liblog",
|
|
|
|
"libbase",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2020-07-10 13:34:53 +02:00
|
|
|
data_libs: [
|
|
|
|
"libutils_test_singleton1",
|
|
|
|
"libutils_test_singleton2",
|
|
|
|
],
|
|
|
|
|
2019-02-07 21:41:37 +01:00
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
"-Werror",
|
|
|
|
"-Wthread-safety",
|
|
|
|
],
|
2019-02-21 00:23:34 +01:00
|
|
|
|
|
|
|
test_suites: ["device-tests"],
|
|
|
|
}
|
|
|
|
|
2019-02-07 21:41:37 +01:00
|
|
|
cc_test_library {
|
|
|
|
name: "libutils_test_singleton1",
|
|
|
|
host_supported: true,
|
2020-07-10 13:34:53 +02:00
|
|
|
installable: false,
|
2019-02-07 21:41:37 +01:00
|
|
|
srcs: ["Singleton_test1.cpp"],
|
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_test_library {
|
|
|
|
name: "libutils_test_singleton2",
|
2016-07-13 02:20:18 +02:00
|
|
|
host_supported: true,
|
2020-07-10 13:34:53 +02:00
|
|
|
installable: false,
|
2019-02-07 21:41:37 +01:00
|
|
|
srcs: ["Singleton_test2.cpp"],
|
2018-02-17 02:58:14 +01:00
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
],
|
2019-02-07 21:41:37 +01:00
|
|
|
shared_libs: ["libutils_test_singleton1"],
|
2016-07-13 02:20:18 +02:00
|
|
|
}
|
2019-09-04 03:04:50 +02:00
|
|
|
|
|
|
|
cc_benchmark {
|
|
|
|
name: "libutils_benchmark",
|
|
|
|
srcs: ["Vector_benchmark.cpp"],
|
|
|
|
shared_libs: ["libutils"],
|
|
|
|
}
|