blob: 3df59f5f401498d6833930abccb95e680dfea87f [file] [log] [blame]
Steven Morelandfca20d82017-06-27 18:20:18 -07001// Copyright (C) 2017 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// This is what we want to do:
16// event_logtags = $(shell
17// sed -n
18// "s/^\([0-9]*\)[ \t]*$1[ \t].*/-D`echo $1 | tr a-z A-Z`_LOG_TAG=\1/p"
19// $(LOCAL_PATH)/$2/event.logtags)
20// event_flag := $(call event_logtags,auditd)
21// event_flag += $(call event_logtags,logd)
22// event_flag += $(call event_logtags,tag_def)
23// so make sure we do not regret hard-coding it as follows:
24event_flag = [
25 "-DAUDITD_LOG_TAG=1003",
26 "-DCHATTY_LOG_TAG=1004",
27 "-DTAG_DEF_LOG_TAG=1005",
Elliott Hughesdc699a22018-02-16 17:58:14 -080028 "-DLIBLOG_LOG_TAG=1006",
Steven Morelandfca20d82017-06-27 18:20:18 -070029]
30
31cc_library_static {
32 name: "liblogd",
33
34 srcs: [
35 "LogCommand.cpp",
36 "CommandListener.cpp",
37 "LogListener.cpp",
38 "LogReader.cpp",
Tom Cherry6ec71e92020-05-04 12:53:36 -070039 "LogReaderThread.cpp",
Steven Morelandfca20d82017-06-27 18:20:18 -070040 "LogBuffer.cpp",
41 "LogBufferElement.cpp",
Steven Morelandfca20d82017-06-27 18:20:18 -070042 "LogStatistics.cpp",
43 "LogWhiteBlackList.cpp",
44 "libaudit.c",
45 "LogAudit.cpp",
46 "LogKlog.cpp",
47 "LogTags.cpp",
48 ],
49 logtags: ["event.logtags"],
50
51 shared_libs: ["libbase"],
52
53 export_include_dirs: ["."],
54
Tom Cherry053daca2020-04-29 15:38:19 -070055 cflags: [
56 "-Wextra",
Tom Cherry64e90162020-05-07 14:44:43 -070057 "-Wthread-safety",
Tom Cherry053daca2020-04-29 15:38:19 -070058 ] + event_flag,
Steven Morelandfca20d82017-06-27 18:20:18 -070059}
60
61cc_binary {
62 name: "logd",
63 init_rc: ["logd.rc"],
64
65 srcs: ["main.cpp"],
66
Tom Cherry9e124332019-01-17 11:37:22 -080067 static_libs: [
68 "liblog",
69 "liblogd",
70 ],
Steven Morelandfca20d82017-06-27 18:20:18 -070071
72 shared_libs: [
73 "libsysutils",
Steven Morelandfca20d82017-06-27 18:20:18 -070074 "libcutils",
75 "libbase",
76 "libpackagelistparser",
Suren Baghdasaryan94910782019-01-25 05:32:52 +000077 "libprocessgroup",
Steven Morelandfca20d82017-06-27 18:20:18 -070078 "libcap",
79 ],
80
Tom Cherry053daca2020-04-29 15:38:19 -070081 cflags: [
82 "-Wextra",
83 ],
Steven Morelandfca20d82017-06-27 18:20:18 -070084}
Sasha Smundak3a62fc42019-01-24 21:16:39 -080085
Nick Kralevichbe5e4462019-04-09 10:59:39 -070086cc_binary {
87 name: "auditctl",
88
89 srcs: ["auditctl.cpp"],
90
91 static_libs: [
92 "liblogd",
93 ],
94
95 shared_libs: ["libbase"],
96
97 cflags: [
Tom Cherry053daca2020-04-29 15:38:19 -070098 "-Wconversion",
Nick Kralevichbe5e4462019-04-09 10:59:39 -070099 "-Wextra",
Nick Kralevichbe5e4462019-04-09 10:59:39 -0700100 ],
101}
Sasha Smundak3a62fc42019-01-24 21:16:39 -0800102
103prebuilt_etc {
104 name: "logtagd.rc",
105 src: "logtagd.rc",
106 sub_dir: "init",
107}