2015-09-16 22:54:14 +00: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 21:45:42 +00:00
|
|
|
liblog_sources = [
|
2016-03-09 00:18:26 +00:00
|
|
|
"config_read.c",
|
2016-03-09 00:18:26 +00:00
|
|
|
"config_write.c",
|
2016-03-09 00:18:26 +00:00
|
|
|
"local_logger.c",
|
2016-03-01 21:45:42 +00:00
|
|
|
"log_event_list.c",
|
2015-09-16 22:54:14 +00:00
|
|
|
"log_event_write.c",
|
2016-12-14 20:52:50 +00:00
|
|
|
"log_ratelimit.cpp",
|
2016-03-09 00:18:26 +00:00
|
|
|
"logger_lock.c",
|
|
|
|
"logger_name.c",
|
2016-03-09 00:18:26 +00:00
|
|
|
"logger_read.c",
|
2016-03-09 00:18:26 +00:00
|
|
|
"logger_write.c",
|
|
|
|
"logprint.c",
|
2017-02-28 20:59:01 +00:00
|
|
|
"stderr_write.c",
|
2016-03-01 21:45:42 +00:00
|
|
|
]
|
|
|
|
liblog_host_sources = [
|
2015-09-16 22:54:14 +00:00
|
|
|
"fake_log_device.c",
|
2016-03-01 21:45:42 +00:00
|
|
|
"fake_writer.c",
|
2015-09-16 22:54:14 +00:00
|
|
|
]
|
|
|
|
liblog_target_sources = [
|
2016-11-21 20:00:03 +00:00
|
|
|
"event_tag_map.cpp",
|
2015-09-16 22:54:14 +00:00
|
|
|
"log_time.cpp",
|
2016-12-14 20:52:50 +00:00
|
|
|
"properties.c",
|
2016-03-01 21:45:42 +00:00
|
|
|
"pmsg_reader.c",
|
|
|
|
"pmsg_writer.c",
|
|
|
|
"logd_reader.c",
|
|
|
|
"logd_writer.c",
|
2015-09-16 22:54:14 +00:00
|
|
|
]
|
|
|
|
|
2017-07-10 23:40:36 +00:00
|
|
|
cc_library_headers {
|
|
|
|
name: "liblog_headers",
|
|
|
|
host_supported: true,
|
|
|
|
vendor_available: true,
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
target: {
|
|
|
|
windows: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
linux_bionic: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
vendor: {
|
2018-01-05 22:42:12 +00:00
|
|
|
override_export_include_dirs: ["include_vndk"],
|
2017-07-10 23:40:36 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-09-16 22:54:14 +00:00
|
|
|
// Shared and static library for host and device
|
|
|
|
// ========================================================
|
|
|
|
cc_library {
|
|
|
|
name: "liblog",
|
|
|
|
host_supported: true,
|
|
|
|
|
2016-03-01 21:45:42 +00:00
|
|
|
srcs: liblog_sources,
|
|
|
|
|
2015-09-16 22:54:14 +00:00
|
|
|
target: {
|
|
|
|
host: {
|
|
|
|
srcs: liblog_host_sources,
|
|
|
|
cflags: ["-DFAKE_LOG_DEVICE=1"],
|
|
|
|
},
|
|
|
|
android: {
|
|
|
|
srcs: liblog_target_sources,
|
|
|
|
// AddressSanitizer runtime library depends on liblog.
|
2016-04-07 20:30:22 +00:00
|
|
|
sanitize: {
|
2016-11-29 23:02:30 +00:00
|
|
|
address: false,
|
2016-04-07 20:30:22 +00:00
|
|
|
},
|
2015-09-16 22:54:14 +00:00
|
|
|
},
|
|
|
|
windows: {
|
|
|
|
srcs: ["uio.c"],
|
2015-11-30 23:35:09 +00:00
|
|
|
enabled: true,
|
2015-09-16 22:54:14 +00:00
|
|
|
},
|
|
|
|
not_windows: {
|
2016-11-21 20:00:03 +00:00
|
|
|
srcs: ["event_tag_map.cpp"],
|
2015-09-16 22:54:14 +00:00
|
|
|
},
|
2016-11-29 21:39:55 +00:00
|
|
|
linux_bionic: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
2015-09-16 22:54:14 +00:00
|
|
|
},
|
|
|
|
|
2017-07-10 23:40:36 +00:00
|
|
|
header_libs: ["liblog_headers"],
|
|
|
|
export_header_lib_headers: ["liblog_headers"],
|
2017-01-25 18:52:17 +00:00
|
|
|
|
2015-09-16 22:54:14 +00:00
|
|
|
cflags: [
|
|
|
|
"-Werror",
|
2016-03-01 21:45:42 +00:00
|
|
|
"-fvisibility=hidden",
|
2015-09-16 22:54:14 +00:00
|
|
|
// 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 21:51:48 +00:00
|
|
|
"-DLIBLOG_LOG_TAG=1006",
|
2016-03-25 22:50:46 +00:00
|
|
|
"-DSNET_EVENT_LOG_TAG=1397638484",
|
2015-09-16 22:54:14 +00:00
|
|
|
],
|
2016-06-01 22:32:35 +00:00
|
|
|
logtags: ["event.logtags"],
|
2015-09-16 22:54:14 +00:00
|
|
|
compile_multilib: "both",
|
|
|
|
}
|
2016-09-23 22:43:23 +00:00
|
|
|
|
2016-10-05 20:47:31 +00:00
|
|
|
ndk_headers {
|
2017-07-10 23:40:36 +00:00
|
|
|
name: "liblog_ndk_headers",
|
2016-12-21 23:15:24 +00:00
|
|
|
from: "include/android",
|
2016-10-05 20:47:31 +00:00
|
|
|
to: "android",
|
2016-12-21 23:15:24 +00:00
|
|
|
srcs: ["include/android/log.h"],
|
2016-10-20 17:18:27 +00:00
|
|
|
license: "NOTICE",
|
2016-10-05 20:47:31 +00:00
|
|
|
}
|
|
|
|
|
2016-09-23 22:43:23 +00:00
|
|
|
ndk_library {
|
2017-04-07 22:26:08 +00:00
|
|
|
name: "liblog",
|
2016-09-23 22:43:23 +00:00
|
|
|
symbol_file: "liblog.map.txt",
|
|
|
|
first_version: "9",
|
2017-01-05 23:55:49 +00:00
|
|
|
unversioned_until: "current",
|
2016-09-23 22:43:23 +00:00
|
|
|
}
|
2017-03-20 21:08:59 +00:00
|
|
|
|
|
|
|
llndk_library {
|
2017-04-07 22:26:08 +00:00
|
|
|
name: "liblog",
|
2017-03-20 21:08:59 +00:00
|
|
|
symbol_file: "liblog.map.txt",
|
|
|
|
unversioned: true,
|
|
|
|
export_include_dirs: ["include_vndk"],
|
|
|
|
}
|