blob: 432c29870e10ea4468be049f8d5dc754e0b47ca9 [file] [log] [blame]
Tom Cherry14fc0132017-05-09 17:11:57 -07001//
2// Copyright (C) 2017 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
17cc_defaults {
18 name: "init_defaults",
19 cpp_std: "experimental",
20 sanitize: {
Tom Cherry2ffd65e2017-07-26 14:17:09 -070021 misc_undefined: ["signed-integer-overflow"],
Tom Cherry14fc0132017-05-09 17:11:57 -070022 },
Tom Cherry14fc0132017-05-09 17:11:57 -070023 cppflags: [
24 "-DLOG_UEVENTS=0",
25 "-Wall",
26 "-Wextra",
27 "-Wno-unused-parameter",
28 "-Werror",
29 "-DALLOW_LOCAL_PROP_OVERRIDE=0",
30 "-DALLOW_PERMISSIVE_SELINUX=0",
31 "-DREBOOT_BOOTLOADER_ON_PANIC=0",
32 "-DWORLD_WRITABLE_KMSG=0",
33 "-DDUMP_ON_UMOUNT_FAILURE=0",
34 "-DSHUTDOWN_ZERO_TIMEOUT=0",
35 ],
36 product_variables: {
37 debuggable: {
38 cppflags: [
39 "-UALLOW_LOCAL_PROP_OVERRIDE",
40 "-DALLOW_LOCAL_PROP_OVERRIDE=1",
41 "-UALLOW_PERMISSIVE_SELINUX",
42 "-DALLOW_PERMISSIVE_SELINUX=1",
43 "-UREBOOT_BOOTLOADER_ON_PANIC",
44 "-DREBOOT_BOOTLOADER_ON_PANIC=1",
45 "-UWORLD_WRITABLE_KMSG",
46 "-DWORLD_WRITABLE_KMSG=1",
47 "-UDUMP_ON_UMOUNT_FAILURE",
48 "-DDUMP_ON_UMOUNT_FAILURE=1",
49 ],
50 },
51 eng: {
52 cppflags: [
53 "-USHUTDOWN_ZERO_TIMEOUT",
54 "-DSHUTDOWN_ZERO_TIMEOUT=1",
55 ],
56 },
57 },
58}
59
60cc_library_static {
61 name: "libinit",
62 defaults: ["init_defaults"],
63 srcs: [
64 "action.cpp",
65 "capabilities.cpp",
66 "descriptors.cpp",
67 "devices.cpp",
Tom Cherryed506f72017-05-25 15:58:59 -070068 "firmware_handler.cpp",
Tom Cherry14fc0132017-05-09 17:11:57 -070069 "import_parser.cpp",
Tom Cherry14fc0132017-05-09 17:11:57 -070070 "log.cpp",
71 "parser.cpp",
Tom Cherry2a978d32017-08-09 17:13:21 -070072 "property_service.cpp",
Tom Cherry14fc0132017-05-09 17:11:57 -070073 "service.cpp",
Tom Cherry67dee622017-07-27 12:54:48 -070074 "tokenizer.cpp",
Tom Cherryed506f72017-05-25 15:58:59 -070075 "uevent_listener.cpp",
76 "ueventd_parser.cpp",
Tom Cherry14fc0132017-05-09 17:11:57 -070077 "util.cpp",
78 ],
79 whole_static_libs: ["libcap"],
80 static_libs: [
81 "libbase",
82 "libselinux",
83 "liblog",
84 "libprocessgroup",
Tom Cherry2a978d32017-08-09 17:13:21 -070085 "libfs_mgr",
Tom Cherry14fc0132017-05-09 17:11:57 -070086 ],
Tom Cherry2a978d32017-08-09 17:13:21 -070087 include_dirs: [
88 "system/core/mkbootimg",
89 ],
90
Tom Cherry14fc0132017-05-09 17:11:57 -070091}
92
93/*
94This is not yet ready, see the below TODOs for what is missing
95
96cc_binary {
97 // TODO: Missing,
98 //LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
99 //LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_UNSTRIPPED)
100
101 name: "init",
102 defaults: ["init_defaults"],
Jin Qian00456972017-07-06 11:43:45 -0700103 required: [
104 "e2fsdroid",
105 "mke2fs",
106 ],
Tom Cherry14fc0132017-05-09 17:11:57 -0700107 static_executable: true,
108 srcs: [
109 "bootchart.cpp",
110 "builtins.cpp",
111 "init.cpp",
112 "init_first_stage.cpp",
113 "keychords.cpp",
Tom Cherry14fc0132017-05-09 17:11:57 -0700114 "reboot.cpp",
115 "signal_handler.cpp",
116 "ueventd.cpp",
117 "watchdogd.cpp",
118 ],
Tom Cherry14fc0132017-05-09 17:11:57 -0700119 static_libs: [
120 "libinit",
121 "libbootloader_message",
122 "libfs_mgr",
123 "libfec",
124 "libfec_rs",
125 "libsquashfs_utils",
126 "liblogwrap",
127 "libext4_utils",
128 "libcutils",
129 "libbase",
130 "libc",
131 "libselinux",
132 "liblog",
133 "libcrypto_utils",
134 "libcrypto",
135 "libc++_static",
136 "libdl",
137 "libsparse",
138 "libz",
139 "libprocessgroup",
140 "libavb",
141 "libkeyutils",
142 ],
143 symlinks: [
144 "sbin/ueventd",
145 "sbin/watchdogd",
146 ],
147}
148*/
149
150// Tests
151// ------------------------------------------------------------------------------
152
153cc_test {
154 name: "init_tests",
155 defaults: ["init_defaults"],
156 srcs: [
157 "devices_test.cpp",
Tom Cherry14fc0132017-05-09 17:11:57 -0700158 "init_test.cpp",
159 "property_service_test.cpp",
160 "service_test.cpp",
Tom Cherryc2e181c2017-07-14 16:29:23 -0700161 "ueventd_test.cpp",
Tom Cherry14fc0132017-05-09 17:11:57 -0700162 "util_test.cpp",
163 ],
164 shared_libs: [
165 "libbase",
166 "libcutils",
Tom Cherry14fc0132017-05-09 17:11:57 -0700167 ],
Tom Cherry45a9d672017-08-09 17:09:04 -0700168 static_libs: [
169 "libinit",
170 "libselinux",
171 "libcrypto",
172 ],
Tom Cherry14fc0132017-05-09 17:11:57 -0700173}
174
175subdirs = ["*"]