blob: 007e5057b1dc204bc1d6428c7eea76eedfef1310 [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 ],
29}
30
Tao Bao7d2a63a2018-08-13 11:15:29 -070031// `libminadbd_services` is analogous to the `libadbd_services` for regular `adbd`, but providing
32// the sideload service only.
33cc_library {
34 name: "libminadbd_services",
Tao Bao5fc72a12018-08-07 14:38:51 -070035 recovery_available: true,
Tao Bao8c7761e2017-11-15 11:45:23 -080036
37 defaults: [
38 "minadbd_defaults",
39 ],
40
41 srcs: [
42 "fuse_adb_provider.cpp",
Tao Bao8c7761e2017-11-15 11:45:23 -080043 "minadbd_services.cpp",
44 ],
45
Tao Bao7d2a63a2018-08-13 11:15:29 -070046 shared_libs: [
47 "libadbd",
Tao Bao8c7761e2017-11-15 11:45:23 -080048 "libbase",
49 "libcrypto",
Tao Bao7d2a63a2018-08-13 11:15:29 -070050 "libfusesideload",
Tao Bao8c7761e2017-11-15 11:45:23 -080051 ],
52}
53
xunchang95d67322019-04-05 16:16:07 -070054cc_library_headers {
55 name: "libminadbd_headers",
56 recovery_available: true,
57 // TODO create a include dir
58 export_include_dirs: [
59 ".",
60 ],
61}
62
63cc_binary {
64 name: "minadbd",
65 recovery: true,
66
67 defaults: [
68 "minadbd_defaults",
69 ],
70
71 srcs: [
72 "minadbd.cpp",
73 ],
74
75 shared_libs: [
76 "libadbd",
77 "libbase",
78 "libcrypto",
xunchang95d67322019-04-05 16:16:07 -070079 "libminadbd_services",
80 ],
81}
82
Tao Bao8c7761e2017-11-15 11:45:23 -080083cc_test {
84 name: "minadbd_test",
Christopher Ferris272467d2018-08-22 19:38:49 -070085 isolated: true,
Tao Bao8c7761e2017-11-15 11:45:23 -080086
87 defaults: [
88 "minadbd_defaults",
89 ],
90
91 srcs: [
92 "fuse_adb_provider_test.cpp",
xunchang23f15fc2019-04-17 14:43:58 -070093 "minadbd_services_test.cpp",
Tao Bao8c7761e2017-11-15 11:45:23 -080094 ],
95
96 static_libs: [
Tao Bao7d2a63a2018-08-13 11:15:29 -070097 "libminadbd_services",
xunchangea2912f2019-03-17 16:45:12 -070098 "libfusesideload",
Tao Bao7d2a63a2018-08-13 11:15:29 -070099 "libadbd",
xunchang23f15fc2019-04-17 14:43:58 -0700100 "libcrypto",
Tao Bao8c7761e2017-11-15 11:45:23 -0800101 ],
102
103 shared_libs: [
104 "libbase",
105 "libcutils",
106 "liblog",
107 ],
108
109 test_suites: [
110 "device-tests",
111 ],
112}