blob: 5b881e367d08c55ff9d6ba316c056c4a31dac5cf [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",
Tao Baoef5e38f2018-07-24 15:34:39 -070067 "libz",
68 "libziparchive",
69]
70
71// librecovery_defaults uses many shared libs that we want to avoid using in tests (e.g. we don't
72// have 32-bit android.hardware.health@2.0.so or libbootloader_message.so on marlin).
73librecovery_static_libs = [
74 "librecovery",
75 "librecovery_fastboot",
xunchang24788852019-03-22 16:08:52 -070076 "libinstall",
77 "librecovery_ui",
Tao Baoef5e38f2018-07-24 15:34:39 -070078 "libminui",
Tao Bao4a01f362019-04-26 23:41:49 -070079 "libfusesideload",
80 "libbootloader_message",
Tao Baoef5e38f2018-07-24 15:34:39 -070081 "libotautil",
82
83 "libhealthhalutils",
84 "libvintf_recovery",
85 "libvintf",
86
87 "android.hardware.health@2.0",
88 "android.hardware.health@1.0",
Tao Baoef5e38f2018-07-24 15:34:39 -070089 "libext4_utils",
90 "libfs_mgr",
Tao Baoef5e38f2018-07-24 15:34:39 -070091 "libhidl-gen-utils",
92 "libhidlbase",
Jayant Chowdharyd24b0542018-10-01 22:55:56 +000093 "libbinderthreadstate",
Yifan Hong0f339e22018-12-03 13:44:01 -080094 "liblp",
Tao Baoef5e38f2018-07-24 15:34:39 -070095 "libvndksupport",
96 "libtinyxml2",
97]
98
99cc_test {
100 name: "recovery_unit_test",
Christopher Ferris272467d2018-08-22 19:38:49 -0700101 isolated: true,
Tao Baodfb053e2019-09-19 08:08:54 -0700102 require_root: true,
Tao Baoef5e38f2018-07-24 15:34:39 -0700103
104 defaults: [
105 "recovery_test_defaults",
Tao Bao4a01f362019-04-26 23:41:49 -0700106 "libupdater_defaults",
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700107 "libupdater_device_defaults",
Tao Baoef5e38f2018-07-24 15:34:39 -0700108 ],
109
110 test_suites: ["device-tests"],
111
112 srcs: [
Tao Bao26b64542018-08-15 15:18:48 -0700113 "unit/*.cpp",
Tao Baoef5e38f2018-07-24 15:34:39 -0700114 ],
115
Tao Bao4a01f362019-04-26 23:41:49 -0700116 static_libs: libapplypatch_static_libs + librecovery_static_libs + [
Tao Baoef5e38f2018-07-24 15:34:39 -0700117 "librecovery_ui",
xunchang311e6ca2019-03-22 08:54:35 -0700118 "libfusesideload",
Tao Baoef5e38f2018-07-24 15:34:39 -0700119 "libminui",
Tao Baoe3f09a72019-10-01 11:55:36 -0700120 "librecovery_utils",
Tao Baoef5e38f2018-07-24 15:34:39 -0700121 "libotautil",
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700122 "libupdater_device",
123 "libupdater_core",
Tao Bao4a01f362019-04-26 23:41:49 -0700124 "libupdate_verifier",
125
Tao Baoef5e38f2018-07-24 15:34:39 -0700126 "libgtest_prod",
Tao Bao4a01f362019-04-26 23:41:49 -0700127 "libprotobuf-cpp-lite",
Tao Baoef5e38f2018-07-24 15:34:39 -0700128 ],
129
Tao Bao4a01f362019-04-26 23:41:49 -0700130 data: [
131 "testdata/*",
132 ":res-testdata",
133 ],
Tao Baoef5e38f2018-07-24 15:34:39 -0700134}
135
136cc_test {
137 name: "recovery_manual_test",
Christopher Ferris272467d2018-08-22 19:38:49 -0700138 isolated: true,
Tao Baoef5e38f2018-07-24 15:34:39 -0700139
140 defaults: [
141 "recovery_test_defaults",
142 ],
143
144 test_suites: ["device-tests"],
145
146 srcs: [
147 "manual/recovery_test.cpp",
148 ],
Tao Baoef5e38f2018-07-24 15:34:39 -0700149}
150
Tao Baoef5e38f2018-07-24 15:34:39 -0700151cc_test_host {
152 name: "recovery_host_test",
Christopher Ferris272467d2018-08-22 19:38:49 -0700153 isolated: true,
Tao Baoef5e38f2018-07-24 15:34:39 -0700154
155 defaults: [
156 "recovery_test_defaults",
Tianjie Xuc3a161e2019-06-20 18:16:49 -0700157 "libupdater_defaults",
Tao Baoef5e38f2018-07-24 15:34:39 -0700158 ],
159
160 srcs: [
Tianjie Xuc3a161e2019-06-20 18:16:49 -0700161 "unit/host/*",
Tao Baoef5e38f2018-07-24 15:34:39 -0700162 ],
163
164 static_libs: [
Tianjie Xuc3a161e2019-06-20 18:16:49 -0700165 "libupdater_host",
166 "libupdater_core",
Tao Baoef5e38f2018-07-24 15:34:39 -0700167 "libimgdiff",
Tao Baoef5e38f2018-07-24 15:34:39 -0700168 "libbsdiff",
Tao Baoef5e38f2018-07-24 15:34:39 -0700169 "libdivsufsort64",
170 "libdivsufsort",
Tianjie Xuc3a161e2019-06-20 18:16:49 -0700171 "libfstab",
172 "libc++fs",
Tao Baoef5e38f2018-07-24 15:34:39 -0700173 ],
174
Tao Bao83186dd2019-04-24 21:34:17 -0700175 test_suites: ["general-tests"],
176
Tao Baoef5e38f2018-07-24 15:34:39 -0700177 data: ["testdata/*"],
Andreas Huber435dfac2018-08-15 16:11:25 -0700178
179 target: {
180 darwin: {
Tianjie Xu45c40ec2019-07-02 15:09:24 -0700181 // libapplypatch in "libupdater_defaults" is not available on the Mac.
Andreas Huber435dfac2018-08-15 16:11:25 -0700182 enabled: false,
183 },
184 },
Tao Baoef5e38f2018-07-24 15:34:39 -0700185}