blob: 17102c92c6efaf1980d5c3589420529858ba1dd5 [file] [log] [blame]
//
// 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.
//
commonSources = [
"hashmap.c",
"atomic.c",
// TODO: "atomic.c.arm",
"native_handle.c",
"config_utils.c",
"load_file.c",
"strlcpy.c",
"open_memstream.c",
"strdup16to8.c",
"strdup8to16.c",
"record_stream.c",
"process_name.c",
"threads.c",
"sched_policy.c",
"iosched_policy.c",
"str_parms.c",
"fs_config.c",
]
// 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
commonNonWindowsSources = [
"fs.c",
"multiuser.c",
"socket_inaddr_any_server.c",
"socket_local_client.c",
"socket_local_server.c",
"socket_loopback_client.c",
"socket_loopback_server.c",
"socket_network_client.c",
"sockets.c",
]
commonNonWindowsHostSources = [
"ashmem-host.c",
"trace-host.c",
]
// Shared and static library for host and device
// ========================================================
cc_library {
name: "libcutils",
host_supported: true,
srcs: commonSources,
target: {
android: {
srcs: commonNonWindowsSources + [
"android_reboot.c",
"ashmem-dev.c",
"debugger.c",
"klog.c",
"partition_utils.c",
"properties.c",
"qtaguid.c",
"trace-dev.c",
"uevent.c",
],
},
host: {
srcs: ["dlmalloc_stubs.c"],
},
not_windows: {
srcs: commonNonWindowsSources + commonNonWindowsHostSources,
cflags: ["-Werror"],
},
android_arm: {
srcs: ["arch-arm/memset32.S"],
// arch-arm/memset32.S does not compile with Clang.
clang_cflags: ["-no-integrated-as"],
},
android_arm64: {
srcs: ["arch-arm64/android_memset.S"],
},
android_mips: {
srcs: ["arch-mips/android_memset.c"],
},
android_mips64: {
srcs: ["arch-mips/android_memset.c"],
},
android_x86: {
srcs: [
"arch-x86/android_memset16.S",
"arch-x86/android_memset32.S",
],
},
android_x86_64: {
srcs: [
"arch-x86_64/android_memset16.S",
"arch-x86_64/android_memset32.S",
],
},
},
cflags: [
"-Werror",
"-std=gnu90",
],
shared: {
// TODO: remove liblog as whole static library, once we don't have prebuilt that requires
// liblog symbols present in libcutils.
whole_static_libs: ["liblog"],
//shared_libs: ["liblog"],
},
static: {
static_libs: ["liblog"],
},
stl: "libc++_static",
}
subdirs = ["tests"]