blob: b6ca59efae67f6568bf359a7b07877fbbc43d242 [file] [log] [blame]
Tao Bao8c7761e2017-11-15 11:45:23 -08001// Copyright (C) 2018 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
15cc_defaults {
16 name: "minadbd_defaults",
17
18 cflags: [
19 "-DADB_HOST=0",
20 "-Wall",
21 "-Werror",
22 ],
23
Tao Bao5de19e22019-01-02 09:35:59 -080024 cpp_std: "experimental",
25
Tao Bao8c7761e2017-11-15 11:45:23 -080026 include_dirs: [
Tao Bao8c7761e2017-11-15 11:45:23 -080027 "system/core/adb",
28 ],
Tao Bao3305d482019-09-26 00:02:29 -070029
30 header_libs: [
31 "libminadbd_headers",
32 ],
Tao Bao8c7761e2017-11-15 11:45:23 -080033}
34
Tao Bao7d2a63a2018-08-13 11:15:29 -070035// `libminadbd_services` is analogous to the `libadbd_services` for regular `adbd`, but providing
36// the sideload service only.
Josh Gao5ee3eba2020-03-27 20:37:07 -070037cc_library_static {
Tao Bao7d2a63a2018-08-13 11:15:29 -070038 name: "libminadbd_services",
Tao Bao5fc72a12018-08-07 14:38:51 -070039 recovery_available: true,
Tao Bao8c7761e2017-11-15 11:45:23 -080040
41 defaults: [
42 "minadbd_defaults",
Tao Baob548bea2019-09-30 16:16:07 -070043 "librecovery_utils_defaults",
Tao Bao8c7761e2017-11-15 11:45:23 -080044 ],
45
46 srcs: [
47 "fuse_adb_provider.cpp",
Tao Bao8c7761e2017-11-15 11:45:23 -080048 "minadbd_services.cpp",
49 ],
50
xunchang311e6ca2019-03-22 08:54:35 -070051 static_libs: [
Tao Baob548bea2019-09-30 16:16:07 -070052 "librecovery_utils",
xunchang311e6ca2019-03-22 08:54:35 -070053 "libotautil",
54 ],
55
Tao Bao7d2a63a2018-08-13 11:15:29 -070056 shared_libs: [
57 "libadbd",
Tao Bao8c7761e2017-11-15 11:45:23 -080058 "libbase",
59 "libcrypto",
Tao Bao7d2a63a2018-08-13 11:15:29 -070060 "libfusesideload",
Tao Bao8c7761e2017-11-15 11:45:23 -080061 ],
62}
63
xunchang34690ce2019-04-05 16:16:07 -070064cc_library_headers {
65 name: "libminadbd_headers",
66 recovery_available: true,
xunchang34690ce2019-04-05 16:16:07 -070067 export_include_dirs: [
Tao Bao3305d482019-09-26 00:02:29 -070068 "include",
69 ],
70 // adb_install.cpp
71 visibility: [
72 "//bootable/recovery/install",
xunchang34690ce2019-04-05 16:16:07 -070073 ],
74}
75
76cc_binary {
77 name: "minadbd",
78 recovery: true,
79
80 defaults: [
81 "minadbd_defaults",
Josh Gao5ee3eba2020-03-27 20:37:07 -070082 "libadbd_binary_dependencies",
83 "librecovery_utils_defaults",
xunchang34690ce2019-04-05 16:16:07 -070084 ],
85
86 srcs: [
87 "minadbd.cpp",
88 ],
89
90 shared_libs: [
xunchang34690ce2019-04-05 16:16:07 -070091 "libbase",
92 "libcrypto",
Josh Gao5ee3eba2020-03-27 20:37:07 -070093 ],
94
95 static_libs: [
xunchang34690ce2019-04-05 16:16:07 -070096 "libminadbd_services",
Josh Gao5ee3eba2020-03-27 20:37:07 -070097 "libfusesideload",
98 "librecovery_utils",
xunchang34690ce2019-04-05 16:16:07 -070099 ],
Josh Gaoa91e4562019-10-22 16:10:48 -0700100
101 required: [
Josh Gaod4a964f2020-06-01 18:58:57 -0700102 "adbd_system_api_recovery",
Josh Gaoa91e4562019-10-22 16:10:48 -0700103 ]
xunchang34690ce2019-04-05 16:16:07 -0700104}
105
Tao Bao8c7761e2017-11-15 11:45:23 -0800106cc_test {
107 name: "minadbd_test",
Christopher Ferris272467d2018-08-22 19:38:49 -0700108 isolated: true,
Tao Bao8c7761e2017-11-15 11:45:23 -0800109
110 defaults: [
111 "minadbd_defaults",
Tao Baob548bea2019-09-30 16:16:07 -0700112 "librecovery_utils_defaults",
Josh Gao5ee3eba2020-03-27 20:37:07 -0700113 "libadbd_binary_dependencies",
Tao Bao8c7761e2017-11-15 11:45:23 -0800114 ],
115
116 srcs: [
117 "fuse_adb_provider_test.cpp",
xunchang9c04eb42019-04-17 14:43:58 -0700118 "minadbd_services_test.cpp",
Tao Bao8c7761e2017-11-15 11:45:23 -0800119 ],
120
121 static_libs: [
Tao Bao7d2a63a2018-08-13 11:15:29 -0700122 "libminadbd_services",
xunchangea2912f2019-03-17 16:45:12 -0700123 "libfusesideload",
Tao Baob548bea2019-09-30 16:16:07 -0700124 "librecovery_utils",
xunchang311e6ca2019-03-22 08:54:35 -0700125 "libotautil",
Tao Bao8c7761e2017-11-15 11:45:23 -0800126 ],
127
128 shared_libs: [
129 "libbase",
Pete Bentley189d4242019-09-12 19:53:46 +0100130 "libcrypto",
Tao Bao8c7761e2017-11-15 11:45:23 -0800131 "libcutils",
132 "liblog",
133 ],
134
135 test_suites: [
136 "device-tests",
137 ],
Kelvin Zhangd7ae5a02020-08-24 14:33:03 -0400138 require_root: true,
Tao Bao8c7761e2017-11-15 11:45:23 -0800139}