blob: 06dcf7a1c9dd195e9289fb23b401387fc71c7cb4 [file] [log] [blame]
Jeongik Cha259dc4c2024-03-22 14:34:49 +09001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5android_app {
6 name: "VmLauncherApp",
7 srcs: ["java/**/*.java"],
8 resource_dirs: ["res"],
9 static_libs: [
10 "androidx-constraintlayout_constraintlayout",
11 "androidx.appcompat_appcompat",
12 "com.google.android.material_material",
Jeongik Cha39605c32024-04-02 14:54:57 +090013 // TODO(b/330257000): will be removed when binder RPC is used
14 "android.system.virtualizationservice_internal-java",
15 // TODO(b/331708504): will be removed when AVF framework handles surface
16 "libcrosvm_android_display_service-java",
Jeongik Cha259dc4c2024-03-22 14:34:49 +090017 ],
18 libs: [
19 "framework-virtualization.impl",
20 "framework-annotations-lib",
21 ],
22 platform_apis: true,
23 privileged: true,
24}