blob: b62a8ff149f93a7fb443cee18f54b61338dfeefc [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: {
8 native_shared_libs: ["libadbconnection_client"],
9 },
10 },
Kiyoung Kimf611e412020-02-20 15:59:26 +090011 prebuilts: ["com.android.adbd.init.rc"],
Josh Gao7da5d8a2020-01-21 13:32:16 -080012
13 key: "com.android.adbd.key",
14 certificate: ":com.android.adbd.certificate",
15}
16
17apex {
18 name: "com.android.adbd",
19 defaults: ["com.android.adbd-defaults"],
20 manifest: "apex_manifest.json",
21}
22
23// adbd apex with INT_MAX version code, to allow for upgrade/rollback testing.
Jiyong Park17730e72020-02-05 18:44:10 +090024apex_test {
Josh Gao7da5d8a2020-01-21 13:32:16 -080025 name: "test_com.android.adbd",
26 defaults: ["com.android.adbd-defaults"],
27 manifest: "test_apex_manifest.json",
28 file_contexts: ":com.android.adbd-file_contexts",
29 installable: false,
30}
31
32prebuilt_etc {
Josh Gao7da5d8a2020-01-21 13:32:16 -080033 name: "com.android.adbd.init.rc",
34 src: "adbd.rc",
35 filename: "init.rc",
36 installable: false,
37}
38
39apex_key {
40 name: "com.android.adbd.key",
41 public_key: "com.android.adbd.avbpubkey",
42 private_key: "com.android.adbd.pem",
43}
44
45android_app_certificate {
46 name: "com.android.adbd.certificate",
47 certificate: "com.android.adbd",
48}