blob: b337b7c2a0432193a6347c947632a0ac9909d508 [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",
39 "FlushCommand.cpp",
40 "LogBuffer.cpp",
41 "LogBufferElement.cpp",
Steven Morelandfca20d82017-06-27 18:20:18 -070042 "LogTimes.cpp",
43 "LogStatistics.cpp",
44 "LogWhiteBlackList.cpp",
45 "libaudit.c",
46 "LogAudit.cpp",
47 "LogKlog.cpp",
48 "LogTags.cpp",
49 ],
50 logtags: ["event.logtags"],
51
52 shared_libs: ["libbase"],
53
54 export_include_dirs: ["."],
55
56 cflags: ["-Werror"] + event_flag,
57}
58
59cc_binary {
60 name: "logd",
61 init_rc: ["logd.rc"],
62
63 srcs: ["main.cpp"],
64
Tom Cherry9e124332019-01-17 11:37:22 -080065 static_libs: [
66 "liblog",
67 "liblogd",
68 ],
Steven Morelandfca20d82017-06-27 18:20:18 -070069
70 shared_libs: [
71 "libsysutils",
Steven Morelandfca20d82017-06-27 18:20:18 -070072 "libcutils",
73 "libbase",
74 "libpackagelistparser",
Suren Baghdasaryan94910782019-01-25 05:32:52 +000075 "libprocessgroup",
Steven Morelandfca20d82017-06-27 18:20:18 -070076 "libcap",
77 ],
78
79 cflags: ["-Werror"],
80}
Sasha Smundak3a62fc42019-01-24 21:16:39 -080081
Nick Kralevichbe5e4462019-04-09 10:59:39 -070082cc_binary {
83 name: "auditctl",
84
85 srcs: ["auditctl.cpp"],
86
87 static_libs: [
88 "liblogd",
89 ],
90
91 shared_libs: ["libbase"],
92
93 cflags: [
94 "-Wall",
95 "-Wextra",
96 "-Werror",
97 "-Wconversion"
98 ],
99}
Sasha Smundak3a62fc42019-01-24 21:16:39 -0800100
101prebuilt_etc {
102 name: "logtagd.rc",
103 src: "logtagd.rc",
104 sub_dir: "init",
105}