blob: ddb17dac1d96073ba436d9b53dbc843d65061e10 [file] [log] [blame]
Josh Gao7da5d8a2020-01-21 13:32:16 -08001apex_defaults {
2 name: "com.android.adbd-defaults",
Jiyong Park49c3dc52020-02-24 18:39:23 +09003 updatable: true,
Jooyung Han31242c02020-03-30 13:27:50 +09004 min_sdk_version: "R",
Josh Gao7da5d8a2020-01-21 13:32:16 -08005
6 binaries: ["adbd"],
Josh Gaobb7fc922020-01-22 17:58:03 -08007 compile_multilib: "both",
8 multilib: {
9 both: {
Joshua Duong16d5bc62020-02-09 22:50:19 -080010 native_shared_libs: [
11 "libadb_pairing_auth",
12 "libadb_pairing_connection",
13 "libadb_pairing_server",
14 "libadbconnection_client",
15 ],
Josh Gaobb7fc922020-01-22 17:58:03 -080016 },
17 },
Kiyoung Kimf611e412020-02-20 15:59:26 +090018 prebuilts: ["com.android.adbd.init.rc"],
Josh Gao7da5d8a2020-01-21 13:32:16 -080019
20 key: "com.android.adbd.key",
21 certificate: ":com.android.adbd.certificate",
22}
23
24apex {
25 name: "com.android.adbd",
26 defaults: ["com.android.adbd-defaults"],
27 manifest: "apex_manifest.json",
28}
29
30// adbd apex with INT_MAX version code, to allow for upgrade/rollback testing.
Jiyong Park17730e72020-02-05 18:44:10 +090031apex_test {
Josh Gao7da5d8a2020-01-21 13:32:16 -080032 name: "test_com.android.adbd",
33 defaults: ["com.android.adbd-defaults"],
34 manifest: "test_apex_manifest.json",
35 file_contexts: ":com.android.adbd-file_contexts",
36 installable: false,
37}
38
39prebuilt_etc {
Josh Gao7da5d8a2020-01-21 13:32:16 -080040 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}