blob: 67a65ae9e01be241068916b5304e06fe1f6d8cfc [file] [log] [blame]
Tao Baoef5e38f2018-07-24 15:34:39 -07001// 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: "recovery_test_defaults",
17
18 defaults: [
19 "recovery_defaults",
20 ],
21
22 include_dirs: [
23 "bootable/recovery",
24 ],
25
26 shared_libs: [
27 "libbase",
28 "libcrypto",
29 "libcutils",
30 "liblog",
31 "libpng",
Suren Baghdasaryan0ca607c2019-01-25 05:33:42 +000032 "libprocessgroup",
Tao Baoef5e38f2018-07-24 15:34:39 -070033 "libselinux",
34 "libz",
35 "libziparchive",
36 ],
37
38 target: {
39 android: {
40 shared_libs: [
41 "libutils",
42 ],
43 },
44
45 host: {
46 static_libs: [
47 "libutils",
48 ],
Jayant Chowdharyd24b0542018-10-01 22:55:56 +000049 },
Tao Baoef5e38f2018-07-24 15:34:39 -070050 },
51}
52
53// libapplypatch, libapplypatch_modes, libimgdiff, libimgpatch
54libapplypatch_static_libs = [
55 "libapplypatch_modes",
56 "libapplypatch",
57 "libedify",
58 "libimgdiff",
59 "libimgpatch",
Tao Baoef5e38f2018-07-24 15:34:39 -070060 "libotautil",
61 "libbsdiff",
62 "libbspatch",
63 "libdivsufsort",
64 "libdivsufsort64",
65 "libutils",
66 "libbase",
67 "libbrotli",
68 "libbz",
69 "libcrypto",
70 "libz",
71 "libziparchive",
72]
73
74// librecovery_defaults uses many shared libs that we want to avoid using in tests (e.g. we don't
75// have 32-bit android.hardware.health@2.0.so or libbootloader_message.so on marlin).
76librecovery_static_libs = [
77 "librecovery",
78 "librecovery_fastboot",
xunchang24788852019-03-22 16:08:52 -070079 "libinstall",
80 "librecovery_ui",
Tao Baoef5e38f2018-07-24 15:34:39 -070081 "libminui",
Tao Bao4a01f362019-04-26 23:41:49 -070082 "libfusesideload",
83 "libbootloader_message",
Tao Baoef5e38f2018-07-24 15:34:39 -070084 "libotautil",
85
86 "libhealthhalutils",
87 "libvintf_recovery",
88 "libvintf",
89
90 "android.hardware.health@2.0",
91 "android.hardware.health@1.0",
Tao Baoef5e38f2018-07-24 15:34:39 -070092 "libext4_utils",
93 "libfs_mgr",
Tao Baoef5e38f2018-07-24 15:34:39 -070094 "libhidl-gen-utils",
95 "libhidlbase",
96 "libhidltransport",
Pirama Arumuga Nainarb3339dd2018-11-14 11:39:24 -080097 "libhwbinder_noltopgo",
Jayant Chowdharyd24b0542018-10-01 22:55:56 +000098 "libbinderthreadstate",
Yifan Hong0f339e22018-12-03 13:44:01 -080099 "liblp",
Tao Baoef5e38f2018-07-24 15:34:39 -0700100 "libvndksupport",
101 "libtinyxml2",
102]
103
104cc_test {
105 name: "recovery_unit_test",
Christopher Ferris272467d2018-08-22 19:38:49 -0700106 isolated: true,
Tao Baoef5e38f2018-07-24 15:34:39 -0700107
108 defaults: [
109 "recovery_test_defaults",
Tao Bao4a01f362019-04-26 23:41:49 -0700110 "libupdater_defaults",
Tao Baoef5e38f2018-07-24 15:34:39 -0700111 ],
112
113 test_suites: ["device-tests"],
114
115 srcs: [
Tao Bao26b64542018-08-15 15:18:48 -0700116 "unit/*.cpp",
Tao Baoef5e38f2018-07-24 15:34:39 -0700117 ],
118
Tao Bao4a01f362019-04-26 23:41:49 -0700119 static_libs: libapplypatch_static_libs + librecovery_static_libs + [
Tao Baoef5e38f2018-07-24 15:34:39 -0700120 "librecovery_ui",
xunchang311e6ca2019-03-22 08:54:35 -0700121 "libfusesideload",
Tao Baoef5e38f2018-07-24 15:34:39 -0700122 "libminui",
Tao Baoef5e38f2018-07-24 15:34:39 -0700123 "libotautil",
124 "libupdater",
Tao Bao4a01f362019-04-26 23:41:49 -0700125 "libupdate_verifier",
126
Tao Baoef5e38f2018-07-24 15:34:39 -0700127 "libgtest_prod",
Tao Bao4a01f362019-04-26 23:41:49 -0700128 "libprotobuf-cpp-lite",
Tao Baoef5e38f2018-07-24 15:34:39 -0700129 ],
130
Tao Bao4a01f362019-04-26 23:41:49 -0700131 data: [
132 "testdata/*",
133 ":res-testdata",
134 ],
Tao Baoef5e38f2018-07-24 15:34:39 -0700135}
136
137cc_test {
138 name: "recovery_manual_test",
Christopher Ferris272467d2018-08-22 19:38:49 -0700139 isolated: true,
Tao Baoef5e38f2018-07-24 15:34:39 -0700140
141 defaults: [
142 "recovery_test_defaults",
143 ],
144
145 test_suites: ["device-tests"],
146
147 srcs: [
148 "manual/recovery_test.cpp",
149 ],
Tao Baoef5e38f2018-07-24 15:34:39 -0700150}
151
Tao Baoef5e38f2018-07-24 15:34:39 -0700152cc_test_host {
153 name: "recovery_host_test",
Christopher Ferris272467d2018-08-22 19:38:49 -0700154 isolated: true,
Tao Baoef5e38f2018-07-24 15:34:39 -0700155
156 defaults: [
157 "recovery_test_defaults",
158 ],
159
160 srcs: [
Tao Bao4a01f362019-04-26 23:41:49 -0700161 "unit/imgdiff_test.cpp",
Tao Baoef5e38f2018-07-24 15:34:39 -0700162 ],
163
164 static_libs: [
165 "libimgdiff",
166 "libimgpatch",
167 "libotautil",
168 "libbsdiff",
169 "libbspatch",
170 "libziparchive",
171 "libutils",
172 "libcrypto",
173 "libbrotli",
174 "libbz",
175 "libdivsufsort64",
176 "libdivsufsort",
177 "libz",
Tao Baoef5e38f2018-07-24 15:34:39 -0700178 ],
179
Tao Bao83186dd2019-04-24 21:34:17 -0700180 test_suites: ["general-tests"],
181
Tao Baoef5e38f2018-07-24 15:34:39 -0700182 data: ["testdata/*"],
Andreas Huber435dfac2018-08-15 16:11:25 -0700183
184 target: {
185 darwin: {
186 // libimgdiff is not available on the Mac.
187 enabled: false,
188 },
189 },
Tao Baoef5e38f2018-07-24 15:34:39 -0700190}