blob: a6b1e7861c9d39a44779f06aa01376b0e8bd9957 [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 },
Josh Gao7da5d8a2020-01-21 13:32:16 -080011 prebuilts: ["com.android.adbd.init.rc", "com.android.adbd.ld.config.txt"],
12
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 {
33 name: "com.android.adbd.ld.config.txt",
34 src: "ld.config.txt",
35 filename: "ld.config.txt",
36 installable: false,
37}
38
39prebuilt_etc {
40 name: "com.android.adbd.init.rc",
41 src: "adbd.rc",
42 filename: "init.rc",
43 installable: false,
44}
45
46apex_key {
47 name: "com.android.adbd.key",
48 public_key: "com.android.adbd.avbpubkey",
49 private_key: "com.android.adbd.pem",
50}
51
52android_app_certificate {
53 name: "com.android.adbd.certificate",
54 certificate: "com.android.adbd",
55}