blob: 4346f6778b1dbecdcfb0662068b1889bb74b06af [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,
Josh Gao7da5d8a2020-01-21 13:32:16 -08004
5 binaries: ["adbd"],
Josh Gaobb7fc922020-01-22 17:58:03 -08006 compile_multilib: "both",
7 multilib: {
8 both: {
Joshua Duong16d5bc62020-02-09 22:50:19 -08009 native_shared_libs: [
10 "libadb_pairing_auth",
11 "libadb_pairing_connection",
12 "libadb_pairing_server",
13 "libadbconnection_client",
14 ],
Josh Gaobb7fc922020-01-22 17:58:03 -080015 },
16 },
Kiyoung Kimf611e412020-02-20 15:59:26 +090017 prebuilts: ["com.android.adbd.init.rc"],
Josh Gao7da5d8a2020-01-21 13:32:16 -080018
19 key: "com.android.adbd.key",
20 certificate: ":com.android.adbd.certificate",
21}
22
23apex {
24 name: "com.android.adbd",
25 defaults: ["com.android.adbd-defaults"],
26 manifest: "apex_manifest.json",
27}
28
29// adbd apex with INT_MAX version code, to allow for upgrade/rollback testing.
Jiyong Park17730e72020-02-05 18:44:10 +090030apex_test {
Josh Gao7da5d8a2020-01-21 13:32:16 -080031 name: "test_com.android.adbd",
32 defaults: ["com.android.adbd-defaults"],
33 manifest: "test_apex_manifest.json",
34 file_contexts: ":com.android.adbd-file_contexts",
35 installable: false,
36}
37
38prebuilt_etc {
Josh Gao7da5d8a2020-01-21 13:32:16 -080039 name: "com.android.adbd.init.rc",
40 src: "adbd.rc",
41 filename: "init.rc",
42 installable: false,
43}
44
45apex_key {
46 name: "com.android.adbd.key",
47 public_key: "com.android.adbd.avbpubkey",
48 private_key: "com.android.adbd.pem",
49}
50
51android_app_certificate {
52 name: "com.android.adbd.certificate",
53 certificate: "com.android.adbd",
54}