2015-09-17 00:54:14 +02:00
|
|
|
//
|
|
|
|
// Copyright (C) 2008-2014 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.
|
|
|
|
//
|
|
|
|
|
2016-03-01 22:45:42 +01:00
|
|
|
liblog_sources = [
|
2019-01-10 19:37:36 +01:00
|
|
|
"config_read.cpp",
|
|
|
|
"config_write.cpp",
|
|
|
|
"log_event_list.cpp",
|
|
|
|
"log_event_write.cpp",
|
|
|
|
"logger_lock.cpp",
|
|
|
|
"logger_name.cpp",
|
|
|
|
"logger_read.cpp",
|
|
|
|
"logger_write.cpp",
|
|
|
|
"logprint.cpp",
|
|
|
|
"stderr_write.cpp",
|
2016-03-01 22:45:42 +01:00
|
|
|
]
|
|
|
|
liblog_host_sources = [
|
2019-01-10 19:37:36 +01:00
|
|
|
"fake_log_device.cpp",
|
|
|
|
"fake_writer.cpp",
|
2015-09-17 00:54:14 +02:00
|
|
|
]
|
|
|
|
liblog_target_sources = [
|
2016-11-21 21:00:03 +01:00
|
|
|
"event_tag_map.cpp",
|
2015-09-17 00:54:14 +02:00
|
|
|
"log_time.cpp",
|
2019-01-10 19:37:36 +01:00
|
|
|
"properties.cpp",
|
|
|
|
"pmsg_reader.cpp",
|
|
|
|
"pmsg_writer.cpp",
|
|
|
|
"logd_reader.cpp",
|
|
|
|
"logd_writer.cpp",
|
2015-09-17 00:54:14 +02:00
|
|
|
]
|
|
|
|
|
2017-07-11 01:40:36 +02:00
|
|
|
cc_library_headers {
|
|
|
|
name: "liblog_headers",
|
|
|
|
host_supported: true,
|
|
|
|
vendor_available: true,
|
2018-04-27 14:48:43 +02:00
|
|
|
recovery_available: true,
|
2019-05-06 14:01:58 +02:00
|
|
|
native_bridge_supported: true,
|
2017-07-11 01:40:36 +02:00
|
|
|
export_include_dirs: ["include"],
|
2019-02-13 21:42:06 +01:00
|
|
|
system_shared_libs: [],
|
|
|
|
stl: "none",
|
2017-07-11 01:40:36 +02:00
|
|
|
target: {
|
|
|
|
windows: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
linux_bionic: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
vendor: {
|
2018-01-05 23:42:12 +01:00
|
|
|
override_export_include_dirs: ["include_vndk"],
|
2017-07-11 01:40:36 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-09-17 00:54:14 +02:00
|
|
|
// Shared and static library for host and device
|
|
|
|
// ========================================================
|
|
|
|
cc_library {
|
|
|
|
name: "liblog",
|
|
|
|
host_supported: true,
|
2018-04-27 14:48:43 +02:00
|
|
|
recovery_available: true,
|
2019-05-06 14:01:58 +02:00
|
|
|
native_bridge_supported: true,
|
2016-03-01 22:45:42 +01:00
|
|
|
srcs: liblog_sources,
|
|
|
|
|
2015-09-17 00:54:14 +02:00
|
|
|
target: {
|
|
|
|
host: {
|
|
|
|
srcs: liblog_host_sources,
|
|
|
|
cflags: ["-DFAKE_LOG_DEVICE=1"],
|
|
|
|
},
|
|
|
|
android: {
|
2019-01-17 20:38:31 +01:00
|
|
|
version_script: "liblog.map.txt",
|
2015-09-17 00:54:14 +02:00
|
|
|
srcs: liblog_target_sources,
|
|
|
|
// AddressSanitizer runtime library depends on liblog.
|
2016-04-07 22:30:22 +02:00
|
|
|
sanitize: {
|
2016-11-30 00:02:30 +01:00
|
|
|
address: false,
|
2016-04-07 22:30:22 +02:00
|
|
|
},
|
2015-09-17 00:54:14 +02:00
|
|
|
},
|
2018-01-19 01:25:24 +01:00
|
|
|
android_arm: {
|
|
|
|
// TODO: This is to work around b/24465209. Remove after root cause is fixed
|
2018-05-24 03:55:10 +02:00
|
|
|
pack_relocations: false,
|
2018-01-19 01:25:24 +01:00
|
|
|
ldflags: ["-Wl,--hash-style=both"],
|
|
|
|
},
|
2015-09-17 00:54:14 +02:00
|
|
|
windows: {
|
2015-12-01 00:35:09 +01:00
|
|
|
enabled: true,
|
2015-09-17 00:54:14 +02:00
|
|
|
},
|
|
|
|
not_windows: {
|
2016-11-21 21:00:03 +01:00
|
|
|
srcs: ["event_tag_map.cpp"],
|
2015-09-17 00:54:14 +02:00
|
|
|
},
|
2016-11-29 22:39:55 +01:00
|
|
|
linux_bionic: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
2015-09-17 00:54:14 +02:00
|
|
|
},
|
|
|
|
|
2017-07-11 01:40:36 +02:00
|
|
|
header_libs: ["liblog_headers"],
|
|
|
|
export_header_lib_headers: ["liblog_headers"],
|
2017-01-25 19:52:17 +01:00
|
|
|
|
2019-02-08 20:55:36 +01:00
|
|
|
stubs: {
|
|
|
|
symbol_file: "liblog.map.txt",
|
|
|
|
versions: ["10000"],
|
|
|
|
},
|
|
|
|
|
2015-09-17 00:54:14 +02:00
|
|
|
cflags: [
|
|
|
|
"-Werror",
|
|
|
|
// This is what we want to do:
|
|
|
|
// liblog_cflags := $(shell \
|
|
|
|
// sed -n \
|
|
|
|
// 's/^\([0-9]*\)[ \t]*liblog[ \t].*/-DLIBLOG_LOG_TAG=\1/p' \
|
|
|
|
// $(LOCAL_PATH)/event.logtags)
|
|
|
|
// so make sure we do not regret hard-coding it as follows:
|
2016-09-12 23:51:48 +02:00
|
|
|
"-DLIBLOG_LOG_TAG=1006",
|
2016-03-25 23:50:46 +01:00
|
|
|
"-DSNET_EVENT_LOG_TAG=1397638484",
|
2015-09-17 00:54:14 +02:00
|
|
|
],
|
2016-06-02 00:32:35 +02:00
|
|
|
logtags: ["event.logtags"],
|
2015-09-17 00:54:14 +02:00
|
|
|
compile_multilib: "both",
|
|
|
|
}
|
2016-09-24 00:43:23 +02:00
|
|
|
|
2016-10-05 22:47:31 +02:00
|
|
|
ndk_headers {
|
2017-07-11 01:40:36 +02:00
|
|
|
name: "liblog_ndk_headers",
|
2016-12-22 00:15:24 +01:00
|
|
|
from: "include/android",
|
2016-10-05 22:47:31 +02:00
|
|
|
to: "android",
|
2016-12-22 00:15:24 +01:00
|
|
|
srcs: ["include/android/log.h"],
|
2016-10-20 19:18:27 +02:00
|
|
|
license: "NOTICE",
|
2016-10-05 22:47:31 +02:00
|
|
|
}
|
|
|
|
|
2016-09-24 00:43:23 +02:00
|
|
|
ndk_library {
|
2017-04-08 00:26:08 +02:00
|
|
|
name: "liblog",
|
2016-09-24 00:43:23 +02:00
|
|
|
symbol_file: "liblog.map.txt",
|
|
|
|
first_version: "9",
|
2017-01-06 00:55:49 +01:00
|
|
|
unversioned_until: "current",
|
2016-09-24 00:43:23 +02:00
|
|
|
}
|
2017-03-20 22:08:59 +01:00
|
|
|
|
|
|
|
llndk_library {
|
2017-04-08 00:26:08 +02:00
|
|
|
name: "liblog",
|
2019-05-06 14:01:58 +02:00
|
|
|
native_bridge_supported: true,
|
2017-03-20 22:08:59 +01:00
|
|
|
symbol_file: "liblog.map.txt",
|
|
|
|
export_include_dirs: ["include_vndk"],
|
|
|
|
}
|