blob: 01894552a0f790120905f9453140b88a5ae089c6 [file] [log] [blame]
Josh Gao7da5d8a2020-01-21 13:32:16 -08001apex_defaults {
2 name: "com.android.adbd-defaults",
3
4 binaries: ["adbd"],
Josh Gaobb7fc922020-01-22 17:58:03 -08005 compile_multilib: "both",
6 multilib: {
7 both: {
Joshua Duong16d5bc62020-02-09 22:50:19 -08008 native_shared_libs: [
9 "libadb_pairing_auth",
10 "libadb_pairing_connection",
11 "libadb_pairing_server",
12 "libadbconnection_client",
13 ],
Josh Gaobb7fc922020-01-22 17:58:03 -080014 },
15 },
Kiyoung Kimf611e412020-02-20 15:59:26 +090016 prebuilts: ["com.android.adbd.init.rc"],
Josh Gao7da5d8a2020-01-21 13:32:16 -080017
18 key: "com.android.adbd.key",
19 certificate: ":com.android.adbd.certificate",
20}
21
22apex {
23 name: "com.android.adbd",
24 defaults: ["com.android.adbd-defaults"],
25 manifest: "apex_manifest.json",
26}
27
28// adbd apex with INT_MAX version code, to allow for upgrade/rollback testing.
Jiyong Park17730e72020-02-05 18:44:10 +090029apex_test {
Josh Gao7da5d8a2020-01-21 13:32:16 -080030 name: "test_com.android.adbd",
31 defaults: ["com.android.adbd-defaults"],
32 manifest: "test_apex_manifest.json",
33 file_contexts: ":com.android.adbd-file_contexts",
34 installable: false,
35}
36
37prebuilt_etc {
Josh Gao7da5d8a2020-01-21 13:32:16 -080038 name: "com.android.adbd.init.rc",
39 src: "adbd.rc",
40 filename: "init.rc",
41 installable: false,
42}
43
44apex_key {
45 name: "com.android.adbd.key",
46 public_key: "com.android.adbd.avbpubkey",
47 private_key: "com.android.adbd.pem",
48}
49
50android_app_certificate {
51 name: "com.android.adbd.certificate",
52 certificate: "com.android.adbd",
53}