1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
cc_defaults {
name: "installd_defaults",
cflags: [
"-Wall",
"-Werror",
"-Wextra",
],
srcs: [
"CacheItem.cpp",
"CacheTracker.cpp",
"InstalldNativeService.cpp",
"dexopt.cpp",
"globals.cpp",
"utils.cpp",
":installd_aidl",
],
shared_libs: [
"libbase",
"libbinder",
"libcrypto",
"libcutils",
"liblog",
"liblogwrap",
"libselinux",
"libutils",
],
clang: true,
tidy: true,
tidy_checks: [
"-*",
"clang-analyzer-security*",
"cert-*",
"-cert-err58-cpp",
],
tidy_flags: [
"-warnings-as-errors=clang-analyzer-security*,cert-*"
],
}
//
// Static library used in testing and executable
//
cc_library_static {
name: "libinstalld",
defaults: ["installd_defaults"],
export_include_dirs: ["."],
aidl: {
export_aidl_headers: true,
},
}
//
// Executable
//
cc_binary {
name: "installd",
defaults: ["installd_defaults"],
srcs: ["installd.cpp"],
static_libs: ["libdiskusage"],
init_rc: ["installd.rc"],
}
// OTA chroot tool
cc_binary {
name: "otapreopt_chroot",
cflags: [
"-Wall",
"-Werror",
],
clang: true,
srcs: ["otapreopt_chroot.cpp"],
shared_libs: [
"libbase",
"liblog",
],
}
filegroup {
name: "installd_aidl",
srcs: [
"binder/android/os/IInstalld.aidl",
],
}
//
// Static library for otapreopt used in testing
//
cc_library_static {
name: "libotapreoptparameters",
cflags: [
"-Wall",
"-Werror"
],
clang: true,
srcs: [
"otapreopt_parameters.cpp"],
export_include_dirs: ["."],
shared_libs: [
"libbase",
"libcutils",
"liblog",
"libutils",
],
}
subdirs = ["tests"]
|