2016-06-07 07:31:58 +02:00
|
|
|
//
|
|
|
|
// Copyright (C) 2008 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
|
|
|
// some files must not be compiled when building against Mingw
|
|
|
|
// they correspond to features not used by our host development tools
|
|
|
|
// which are also hard or even impossible to port to native Win32
|
|
|
|
libcutils_nonwindows_sources = [
|
2016-11-07 18:39:30 +01:00
|
|
|
"android_get_control_file.cpp",
|
2017-11-10 19:22:07 +01:00
|
|
|
"fs.cpp",
|
2017-11-10 01:41:09 +01:00
|
|
|
"multiuser.cpp",
|
2017-11-10 19:22:07 +01:00
|
|
|
"socket_inaddr_any_server_unix.cpp",
|
|
|
|
"socket_local_client_unix.cpp",
|
|
|
|
"socket_local_server_unix.cpp",
|
|
|
|
"socket_network_client_unix.cpp",
|
2016-06-07 07:31:58 +02:00
|
|
|
"sockets_unix.cpp",
|
2017-11-10 19:22:07 +01:00
|
|
|
"str_parms.cpp",
|
2016-06-07 07:31:58 +02:00
|
|
|
]
|
|
|
|
|
2017-01-25 19:52:17 +01:00
|
|
|
cc_library_headers {
|
|
|
|
name: "libcutils_headers",
|
libcutils: 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 libcutils
Test: attempt to compile with BOARD_VNDK_VERSION := current
Test: (sanity) boot internal marlin
(cherry picked from commit 9610c548a8e9018ecdfbe3d7204e8fd70d2554fc)
Merged-In: I76f9b28ef08a26d84d1365881e00696cc1dcfe5d
Change-Id: I76f9b28ef08a26d84d1365881e00696cc1dcfe5d
2017-04-13 23:29:58 +02:00
|
|
|
vendor_available: true,
|
2017-01-25 19:52:17 +01:00
|
|
|
host_supported: true,
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
target: {
|
libcutils: 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 libcutils
Test: attempt to compile with BOARD_VNDK_VERSION := current
Test: (sanity) boot internal marlin
(cherry picked from commit 9610c548a8e9018ecdfbe3d7204e8fd70d2554fc)
Merged-In: I76f9b28ef08a26d84d1365881e00696cc1dcfe5d
Change-Id: I76f9b28ef08a26d84d1365881e00696cc1dcfe5d
2017-04-13 23:29:58 +02:00
|
|
|
vendor: {
|
2018-01-05 23:42:12 +01:00
|
|
|
override_export_include_dirs: ["include_vndk"],
|
libcutils: 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 libcutils
Test: attempt to compile with BOARD_VNDK_VERSION := current
Test: (sanity) boot internal marlin
(cherry picked from commit 9610c548a8e9018ecdfbe3d7204e8fd70d2554fc)
Merged-In: I76f9b28ef08a26d84d1365881e00696cc1dcfe5d
Change-Id: I76f9b28ef08a26d84d1365881e00696cc1dcfe5d
2017-04-13 23:29:58 +02:00
|
|
|
},
|
2017-03-15 23:23:36 +01:00
|
|
|
linux_bionic: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
windows: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
2017-01-25 19:52:17 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-06-07 07:31:58 +02:00
|
|
|
cc_library {
|
|
|
|
name: "libcutils",
|
libcutils: 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 libcutils
Test: attempt to compile with BOARD_VNDK_VERSION := current
Test: (sanity) boot internal marlin
(cherry picked from commit 9610c548a8e9018ecdfbe3d7204e8fd70d2554fc)
Merged-In: I76f9b28ef08a26d84d1365881e00696cc1dcfe5d
Change-Id: I76f9b28ef08a26d84d1365881e00696cc1dcfe5d
2017-04-13 23:29:58 +02:00
|
|
|
vendor_available: true,
|
2017-07-31 08:41:10 +02:00
|
|
|
vndk: {
|
|
|
|
enabled: true,
|
|
|
|
support_system_process: true,
|
|
|
|
},
|
2016-06-07 07:31:58 +02:00
|
|
|
host_supported: true,
|
|
|
|
srcs: [
|
2017-11-10 19:22:07 +01:00
|
|
|
"config_utils.cpp",
|
2017-05-02 17:56:15 +02:00
|
|
|
"fs_config.cpp",
|
2017-11-10 19:22:07 +01:00
|
|
|
"canned_fs_config.cpp",
|
|
|
|
"hashmap.cpp",
|
|
|
|
"iosched_policy.cpp",
|
|
|
|
"load_file.cpp",
|
|
|
|
"native_handle.cpp",
|
2016-06-07 07:31:58 +02:00
|
|
|
"open_memstream.c",
|
2017-11-10 19:22:07 +01:00
|
|
|
"record_stream.cpp",
|
2017-02-16 04:47:33 +01:00
|
|
|
"sched_policy.cpp",
|
2016-06-07 07:31:58 +02:00
|
|
|
"sockets.cpp",
|
2017-11-10 19:22:07 +01:00
|
|
|
"strdup16to8.cpp",
|
|
|
|
"strdup8to16.cpp",
|
2016-06-07 07:31:58 +02:00
|
|
|
"strlcpy.c",
|
2017-11-10 19:22:07 +01:00
|
|
|
"threads.cpp",
|
2016-06-07 07:31:58 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
target: {
|
2017-03-15 23:23:36 +01:00
|
|
|
linux_bionic: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
2016-06-07 07:31:58 +02:00
|
|
|
not_windows: {
|
|
|
|
srcs: libcutils_nonwindows_sources + [
|
2017-11-10 19:22:07 +01:00
|
|
|
"ashmem-host.cpp",
|
|
|
|
"trace-host.cpp",
|
2016-06-07 07:31:58 +02:00
|
|
|
],
|
|
|
|
},
|
|
|
|
windows: {
|
|
|
|
srcs: [
|
2017-11-10 19:22:07 +01:00
|
|
|
"socket_inaddr_any_server_windows.cpp",
|
|
|
|
"socket_network_client_windows.cpp",
|
2016-06-07 07:31:58 +02:00
|
|
|
"sockets_windows.cpp",
|
|
|
|
],
|
|
|
|
|
|
|
|
enabled: true,
|
|
|
|
shared: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
2017-05-02 17:56:15 +02:00
|
|
|
cflags: [
|
|
|
|
"-D_GNU_SOURCE",
|
|
|
|
],
|
2016-06-07 07:31:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
android: {
|
|
|
|
srcs: libcutils_nonwindows_sources + [
|
2017-11-10 19:22:07 +01:00
|
|
|
"android_reboot.cpp",
|
|
|
|
"ashmem-dev.cpp",
|
2016-06-07 07:31:58 +02:00
|
|
|
"klog.cpp",
|
2017-11-10 19:22:07 +01:00
|
|
|
"partition_utils.cpp",
|
2017-01-27 02:31:40 +01:00
|
|
|
"properties.cpp",
|
2017-10-25 21:31:43 +02:00
|
|
|
"qtaguid.cpp",
|
2017-11-10 19:22:07 +01:00
|
|
|
"trace-dev.cpp",
|
2017-11-02 22:17:43 +01:00
|
|
|
"uevent.cpp",
|
2016-06-07 07:31:58 +02:00
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
android_arm: {
|
|
|
|
srcs: ["arch-arm/memset32.S"],
|
2017-11-04 00:22:05 +01:00
|
|
|
sanitize: {
|
|
|
|
misc_undefined: ["integer"],
|
|
|
|
},
|
2016-06-07 07:31:58 +02:00
|
|
|
},
|
|
|
|
android_arm64: {
|
|
|
|
srcs: ["arch-arm64/android_memset.S"],
|
2017-11-04 00:22:05 +01:00
|
|
|
sanitize: {
|
|
|
|
misc_undefined: ["integer"],
|
|
|
|
},
|
2016-06-07 07:31:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
android_mips: {
|
|
|
|
srcs: ["arch-mips/android_memset.c"],
|
2017-11-04 00:22:05 +01:00
|
|
|
sanitize: {
|
|
|
|
misc_undefined: ["integer"],
|
|
|
|
},
|
2016-06-07 07:31:58 +02:00
|
|
|
},
|
|
|
|
android_mips64: {
|
|
|
|
srcs: ["arch-mips/android_memset.c"],
|
2017-11-04 00:22:05 +01:00
|
|
|
sanitize: {
|
|
|
|
misc_undefined: ["integer"],
|
|
|
|
},
|
2016-06-07 07:31:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
android_x86: {
|
|
|
|
srcs: [
|
|
|
|
"arch-x86/android_memset16.S",
|
|
|
|
"arch-x86/android_memset32.S",
|
|
|
|
],
|
2017-11-04 00:22:05 +01:00
|
|
|
// TODO: This is to work around b/29412086.
|
|
|
|
// Remove once __mulodi4 is available and move the "sanitize" block
|
|
|
|
// to the android target.
|
|
|
|
sanitize: {
|
|
|
|
misc_undefined: [],
|
|
|
|
},
|
2016-06-07 07:31:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
android_x86_64: {
|
|
|
|
srcs: [
|
|
|
|
"arch-x86_64/android_memset16.S",
|
|
|
|
"arch-x86_64/android_memset32.S",
|
|
|
|
],
|
2017-11-04 00:22:05 +01:00
|
|
|
sanitize: {
|
|
|
|
misc_undefined: ["integer"],
|
|
|
|
},
|
2016-06-07 07:31:58 +02:00
|
|
|
},
|
2018-05-08 11:37:29 +02:00
|
|
|
|
|
|
|
vendor: {
|
|
|
|
exclude_srcs: [
|
|
|
|
// qtaguid.cpp loads libnetd_client.so with dlopen(). Since
|
|
|
|
// the interface of libnetd_client.so may vary between AOSP
|
|
|
|
// releases, exclude qtaguid.cpp from the VNDK-SP variant.
|
|
|
|
"qtaguid.cpp",
|
|
|
|
],
|
|
|
|
}
|
2016-06-07 07:31:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
shared_libs: ["liblog"],
|
2017-04-14 08:48:57 +02:00
|
|
|
header_libs: [
|
2018-04-25 23:52:50 +02:00
|
|
|
"libbase_headers",
|
2017-04-14 08:48:57 +02:00
|
|
|
"libcutils_headers",
|
|
|
|
"libutils_headers",
|
|
|
|
],
|
2017-01-25 19:52:17 +01:00
|
|
|
export_header_lib_headers: ["libcutils_headers"],
|
2017-07-26 00:24:04 +02:00
|
|
|
local_include_dirs: ["include"],
|
2017-01-25 19:52:17 +01:00
|
|
|
|
2016-06-07 07:31:58 +02:00
|
|
|
cflags: [
|
|
|
|
"-Werror",
|
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
subdirs = ["tests"]
|