blob: a8670401558cf2ae715f95a4044d8d93b9494575 [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
Tianjie Xu45c40ec2019-07-02 15:09:24 -070053// libapplypatch, libapplypatch_modes
Tao Baoef5e38f2018-07-24 15:34:39 -070054libapplypatch_static_libs = [
55 "libapplypatch_modes",
56 "libapplypatch",
57 "libedify",
Tao Baoef5e38f2018-07-24 15:34:39 -070058 "libotautil",
59 "libbsdiff",
60 "libbspatch",
61 "libdivsufsort",
62 "libdivsufsort64",
63 "libutils",
64 "libbase",
65 "libbrotli",
66 "libbz",
67 "libcrypto",
68 "libz",
69 "libziparchive",
70]
71
72// librecovery_defaults uses many shared libs that we want to avoid using in tests (e.g. we don't
73// have 32-bit android.hardware.health@2.0.so or libbootloader_message.so on marlin).
74librecovery_static_libs = [
75 "librecovery",
76 "librecovery_fastboot",
xunchang24788852019-03-22 16:08:52 -070077 "libinstall",
78 "librecovery_ui",
Tao Baoef5e38f2018-07-24 15:34:39 -070079 "libminui",
Tao Bao4a01f362019-04-26 23:41:49 -070080 "libfusesideload",
81 "libbootloader_message",
Tao Baoef5e38f2018-07-24 15:34:39 -070082 "libotautil",
83
84 "libhealthhalutils",
85 "libvintf_recovery",
86 "libvintf",
87
88 "android.hardware.health@2.0",
89 "android.hardware.health@1.0",
Tao Baoef5e38f2018-07-24 15:34:39 -070090 "libext4_utils",
91 "libfs_mgr",
Tao Baoef5e38f2018-07-24 15:34:39 -070092 "libhidl-gen-utils",
93 "libhidlbase",
94 "libhidltransport",
Pirama Arumuga Nainarb3339dd2018-11-14 11:39:24 -080095 "libhwbinder_noltopgo",
Jayant Chowdharyd24b0542018-10-01 22:55:56 +000096 "libbinderthreadstate",
Yifan Hong0f339e22018-12-03 13:44:01 -080097 "liblp",
Tao Baoef5e38f2018-07-24 15:34:39 -070098 "libvndksupport",
99 "libtinyxml2",
100]
101
102cc_test {
103 name: "recovery_unit_test",
Christopher Ferris272467d2018-08-22 19:38:49 -0700104 isolated: true,
Tao Baoef5e38f2018-07-24 15:34:39 -0700105
106 defaults: [
107 "recovery_test_defaults",
Tao Bao4a01f362019-04-26 23:41:49 -0700108 "libupdater_defaults",
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700109 "libupdater_device_defaults",
Tao Baoef5e38f2018-07-24 15:34:39 -0700110 ],
111
112 test_suites: ["device-tests"],
113
114 srcs: [
Tao Bao26b64542018-08-15 15:18:48 -0700115 "unit/*.cpp",
Tao Baoef5e38f2018-07-24 15:34:39 -0700116 ],
117
Tao Bao4a01f362019-04-26 23:41:49 -0700118 static_libs: libapplypatch_static_libs + librecovery_static_libs + [
Tao Baoef5e38f2018-07-24 15:34:39 -0700119 "librecovery_ui",
xunchang311e6ca2019-03-22 08:54:35 -0700120 "libfusesideload",
Tao Baoef5e38f2018-07-24 15:34:39 -0700121 "libminui",
Tao Baoef5e38f2018-07-24 15:34:39 -0700122 "libotautil",
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700123 "libupdater_device",
124 "libupdater_core",
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",
Tianjie Xuc3a161e2019-06-20 18:16:49 -0700158 "libupdater_defaults",
Tao Baoef5e38f2018-07-24 15:34:39 -0700159 ],
160
161 srcs: [
Tianjie Xuc3a161e2019-06-20 18:16:49 -0700162 "unit/host/*",
Tao Baoef5e38f2018-07-24 15:34:39 -0700163 ],
164
165 static_libs: [
Tianjie Xuc3a161e2019-06-20 18:16:49 -0700166 "libupdater_host",
167 "libupdater_core",
Tao Baoef5e38f2018-07-24 15:34:39 -0700168 "libimgdiff",
Tao Baoef5e38f2018-07-24 15:34:39 -0700169 "libbsdiff",
Tao Baoef5e38f2018-07-24 15:34:39 -0700170 "libdivsufsort64",
171 "libdivsufsort",
Tianjie Xuc3a161e2019-06-20 18:16:49 -0700172 "libfstab",
173 "libc++fs",
Tao Baoef5e38f2018-07-24 15:34:39 -0700174 ],
175
Tao Bao83186dd2019-04-24 21:34:17 -0700176 test_suites: ["general-tests"],
177
Tao Baoef5e38f2018-07-24 15:34:39 -0700178 data: ["testdata/*"],
Andreas Huber435dfac2018-08-15 16:11:25 -0700179
180 target: {
181 darwin: {
Tianjie Xu45c40ec2019-07-02 15:09:24 -0700182 // libapplypatch in "libupdater_defaults" is not available on the Mac.
Andreas Huber435dfac2018-08-15 16:11:25 -0700183 enabled: false,
184 },
185 },
Tao Baoef5e38f2018-07-24 15:34:39 -0700186}