blob: 09287d86d2a91e1b2b71ed451c989c375a0f9055 [file] [log] [blame]
Jeongik Cha146bd252024-08-13 17:44:00 +09001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5android_app {
6 name: "VmTerminalApp",
Mu-Le Lee0b53a602024-10-10 21:01:03 +08007 srcs: [
8 "java/**/*.java",
9 "java/**/*.kt",
10 ],
Jeongik Cha146bd252024-08-13 17:44:00 +090011 resource_dirs: ["res"],
Jeongik Chaf6a98792024-10-16 23:49:37 +090012 asset_dirs: ["assets"],
Jeongik Cha146bd252024-08-13 17:44:00 +090013 static_libs: [
Jaewan Kimb6bcab82024-10-22 00:59:12 +090014 "VmTerminalApp.aidl-java",
Jeongik Cha146bd252024-08-13 17:44:00 +090015 "vm_launcher_lib",
Mu-Le Lee0b53a602024-10-10 21:01:03 +080016 "androidx-constraintlayout_constraintlayout",
17 "com.google.android.material_material",
18 "androidx.window_window",
Jeongik Cha146bd252024-08-13 17:44:00 +090019 ],
Seungjae Yooe04fac82024-10-31 15:53:46 +090020 jni_libs: [
21 "libforwarder_host_jni",
22 ],
23 use_embedded_native_libs: true,
Jeongik Cha4a8ee3a2024-09-20 18:06:29 +090024 platform_apis: true,
25 privileged: true,
Jeongik Cha146bd252024-08-13 17:44:00 +090026 optimize: {
Mu-Le Lee61593812024-10-29 16:30:26 +080027 optimize: true,
Jeongik Cha4a8ee3a2024-09-20 18:06:29 +090028 proguard_flags_files: ["proguard.flags"],
Jeongik Cha146bd252024-08-13 17:44:00 +090029 shrink_resources: true,
30 },
Jeongik Cha856767c2024-08-26 16:23:51 +090031 apex_available: [
32 "com.android.virt",
33 ],
Jeongik Cha146bd252024-08-13 17:44:00 +090034}
Jaewan Kimb6bcab82024-10-22 00:59:12 +090035
36aidl_interface {
37 name: "VmTerminalApp.aidl",
38 srcs: ["aidl/**/*.aidl"],
39 unstable: true,
40 local_include_dir: "aidl",
41 backend: {
42 java: {
43 enabled: true,
44 apex_available: [
45 "com.android.virt",
46 ],
47 },
48 },
49}