2021-02-04 02:36:27 +00:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
|
|
}
|
|
|
|
|
2020-12-07 06:58:23 +00:00
|
|
|
apex {
|
|
|
|
name: "com.android.virt",
|
|
|
|
|
|
|
|
// TODO(jiyong): make it updatable
|
2021-02-16 14:43:40 +00:00
|
|
|
updatable: false,
|
2020-12-07 06:58:23 +00:00
|
|
|
|
|
|
|
manifest: "manifest.json",
|
|
|
|
|
|
|
|
key: "com.android.virt.key",
|
|
|
|
certificate: ":com.android.virt.certificate",
|
|
|
|
|
2021-01-05 14:14:46 +00:00
|
|
|
// crosvm is enabled for only 64-bit targets on device
|
2020-12-07 06:58:47 +00:00
|
|
|
arch: {
|
|
|
|
arm64: {
|
|
|
|
binaries: [
|
2021-01-05 14:14:46 +00:00
|
|
|
"crosvm",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
x86_64: {
|
|
|
|
binaries: [
|
2020-12-07 06:58:47 +00:00
|
|
|
"crosvm",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2021-02-16 04:23:00 +00:00
|
|
|
binaries: [
|
|
|
|
"assemble_cvd",
|
|
|
|
"virtmanager",
|
|
|
|
],
|
2021-01-25 11:18:17 +00:00
|
|
|
filesystems: ["microdroid"],
|
2020-12-07 06:58:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
apex_key {
|
|
|
|
name: "com.android.virt.key",
|
|
|
|
public_key: "com.android.virt.avbpubkey",
|
|
|
|
private_key: "com.android.virt.pem",
|
|
|
|
}
|
|
|
|
|
|
|
|
android_app_certificate {
|
|
|
|
name: "com.android.virt.certificate",
|
|
|
|
certificate: "com.android.virt",
|
|
|
|
}
|