blob: 7d9e306026d95e34959f2661315fbf522434e02a [file] [log] [blame]
Dan Willemsen63aa47a2015-09-16 15:54:14 -07001//
2// Copyright (C) 2008-2014 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
Mark Salyzyn93101be2016-03-01 13:45:42 -080017liblog_sources = [
Mark Salyzyn71002882016-03-08 16:18:26 -080018 "config_read.c",
Mark Salyzyn62d0d2d2016-03-08 16:18:26 -080019 "config_write.c",
Mark Salyzyn71002882016-03-08 16:18:26 -080020 "local_logger.c",
Mark Salyzyn93101be2016-03-01 13:45:42 -080021 "log_event_list.c",
Dan Willemsen63aa47a2015-09-16 15:54:14 -070022 "log_event_write.c",
Mark Salyzynfc148f72016-12-14 12:52:50 -080023 "log_ratelimit.cpp",
Mark Salyzyn62d0d2d2016-03-08 16:18:26 -080024 "logger_lock.c",
25 "logger_name.c",
Mark Salyzyn71002882016-03-08 16:18:26 -080026 "logger_read.c",
Mark Salyzyn62d0d2d2016-03-08 16:18:26 -080027 "logger_write.c",
28 "logprint.c",
Mark Salyzyn4d99c982017-02-28 12:59:01 -080029 "stderr_write.c",
Mark Salyzyn93101be2016-03-01 13:45:42 -080030]
31liblog_host_sources = [
Dan Willemsen63aa47a2015-09-16 15:54:14 -070032 "fake_log_device.c",
Mark Salyzyn93101be2016-03-01 13:45:42 -080033 "fake_writer.c",
Dan Willemsen63aa47a2015-09-16 15:54:14 -070034]
35liblog_target_sources = [
Mark Salyzyned9dc8a2016-11-21 12:00:03 -080036 "event_tag_map.cpp",
Dan Willemsen63aa47a2015-09-16 15:54:14 -070037 "log_time.cpp",
Mark Salyzyn774e04f2016-12-14 12:52:50 -080038 "properties.c",
Mark Salyzyn93101be2016-03-01 13:45:42 -080039 "pmsg_reader.c",
40 "pmsg_writer.c",
41 "logd_reader.c",
42 "logd_writer.c",
Dan Willemsen63aa47a2015-09-16 15:54:14 -070043]
44
Steven Moreland95d7cbb2017-07-10 16:40:36 -070045cc_library_headers {
46 name: "liblog_headers",
47 host_supported: true,
48 vendor_available: true,
49 export_include_dirs: ["include"],
50 target: {
51 windows: {
52 enabled: true,
53 },
54 linux_bionic: {
55 enabled: true,
56 },
57 vendor: {
Steven Morelande1c834d2018-01-05 14:42:12 -080058 override_export_include_dirs: ["include_vndk"],
Steven Moreland95d7cbb2017-07-10 16:40:36 -070059 },
60 },
61}
62
Dan Willemsen63aa47a2015-09-16 15:54:14 -070063// Shared and static library for host and device
64// ========================================================
65cc_library {
66 name: "liblog",
67 host_supported: true,
68
Mark Salyzyn93101be2016-03-01 13:45:42 -080069 srcs: liblog_sources,
70
Dan Willemsen63aa47a2015-09-16 15:54:14 -070071 target: {
72 host: {
73 srcs: liblog_host_sources,
74 cflags: ["-DFAKE_LOG_DEVICE=1"],
75 },
76 android: {
77 srcs: liblog_target_sources,
78 // AddressSanitizer runtime library depends on liblog.
Colin Cross5d35ce62016-04-07 13:30:22 -070079 sanitize: {
Evgenii Stepanovffdabdc2016-11-29 15:02:30 -080080 address: false,
Colin Cross5d35ce62016-04-07 13:30:22 -070081 },
Dan Willemsen63aa47a2015-09-16 15:54:14 -070082 },
Ian Pedowitzdc9ae902018-01-18 16:25:24 -080083 android_arm: {
84 // TODO: This is to work around b/24465209. Remove after root cause is fixed
85 ldflags: ["-Wl,--hash-style=both"],
86 },
Dan Willemsen63aa47a2015-09-16 15:54:14 -070087 windows: {
88 srcs: ["uio.c"],
Dan Willemsena3f41bf2015-11-30 15:35:09 -080089 enabled: true,
Dan Willemsen63aa47a2015-09-16 15:54:14 -070090 },
91 not_windows: {
Mark Salyzyned9dc8a2016-11-21 12:00:03 -080092 srcs: ["event_tag_map.cpp"],
Dan Willemsen63aa47a2015-09-16 15:54:14 -070093 },
Dan Willemsen0910d2d2016-11-29 13:39:55 -080094 linux_bionic: {
95 enabled: true,
96 },
Dan Willemsen63aa47a2015-09-16 15:54:14 -070097 },
98
Steven Moreland95d7cbb2017-07-10 16:40:36 -070099 header_libs: ["liblog_headers"],
100 export_header_lib_headers: ["liblog_headers"],
Vijay Venkatraman651f8382017-01-25 18:52:17 +0000101
Dan Willemsen63aa47a2015-09-16 15:54:14 -0700102 cflags: [
103 "-Werror",
Mark Salyzyn93101be2016-03-01 13:45:42 -0800104 "-fvisibility=hidden",
Dan Willemsen63aa47a2015-09-16 15:54:14 -0700105 // This is what we want to do:
106 // liblog_cflags := $(shell \
107 // sed -n \
108 // 's/^\([0-9]*\)[ \t]*liblog[ \t].*/-DLIBLOG_LOG_TAG=\1/p' \
109 // $(LOCAL_PATH)/event.logtags)
110 // so make sure we do not regret hard-coding it as follows:
Mark Salyzyn9633b912016-09-12 14:51:48 -0700111 "-DLIBLOG_LOG_TAG=1006",
Mark Salyzyn7ef52492016-03-25 15:50:46 -0700112 "-DSNET_EVENT_LOG_TAG=1397638484",
Dan Willemsen63aa47a2015-09-16 15:54:14 -0700113 ],
Dan Willemsend1191012016-06-01 15:32:35 -0700114 logtags: ["event.logtags"],
Dan Willemsen63aa47a2015-09-16 15:54:14 -0700115 compile_multilib: "both",
Dan Willemsen63aa47a2015-09-16 15:54:14 -0700116}
Dan Albertddce8c72016-09-23 15:43:23 -0700117
Dan Albertb7c39962016-10-05 13:47:31 -0700118ndk_headers {
Steven Moreland95d7cbb2017-07-10 16:40:36 -0700119 name: "liblog_ndk_headers",
Mark Salyzynbdac2212016-12-21 23:15:24 +0000120 from: "include/android",
Dan Albertb7c39962016-10-05 13:47:31 -0700121 to: "android",
Mark Salyzynbdac2212016-12-21 23:15:24 +0000122 srcs: ["include/android/log.h"],
Dan Albert286b2ea2016-10-20 10:18:27 -0700123 license: "NOTICE",
Dan Albertb7c39962016-10-05 13:47:31 -0700124}
125
Dan Albertddce8c72016-09-23 15:43:23 -0700126ndk_library {
Dan Willemsenc8202dc2017-04-07 15:26:08 -0700127 name: "liblog",
Dan Albertddce8c72016-09-23 15:43:23 -0700128 symbol_file: "liblog.map.txt",
129 first_version: "9",
Dan Albert9a41bce2017-01-05 15:55:49 -0800130 unversioned_until: "current",
Dan Albertddce8c72016-09-23 15:43:23 -0700131}
Dan Willemsen38b4a922017-03-20 14:08:59 -0700132
133llndk_library {
Dan Willemsenc8202dc2017-04-07 15:26:08 -0700134 name: "liblog",
Dan Willemsen38b4a922017-03-20 14:08:59 -0700135 symbol_file: "liblog.map.txt",
136 unversioned: true,
137 export_include_dirs: ["include_vndk"],
138}