-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
82 lines (72 loc) · 1.87 KB
/
Android.bp
File metadata and controls
82 lines (72 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
android_library {
name: "axquicklook-client",
manifest: "client/AndroidManifest.xml",
srcs: [
"aidl/**/*.aidl",
"client/**/*.kt",
],
resource_dirs: ["client/res"],
aidl: {
local_include_dirs: ["aidl"],
},
static_libs: [
"kotlin-stdlib",
],
sdk_version: "system_current",
visibility: ["//visibility:public"],
}
java_library {
name: "axquicklook-smartspace-proto",
srcs: ["proto/**/*.proto"],
proto: {
type: "lite",
},
static_libs: ["libprotobuf-java-lite"],
sdk_version: "current",
}
android_app {
name: "AxQuickLook",
manifest: "AndroidManifest.xml",
platform_apis: true,
privileged: true,
system_ext_specific: true,
certificate: "platform",
srcs: [
"src/**/*.kt",
],
resource_dirs: ["res"],
static_libs: [
"ax_compose",
"ax_platform_hooks",
"axquicklook-client",
"axquicklook-smartspace-proto",
"androidx.activity_activity-compose",
"androidx.annotation_annotation",
"androidx.compose.foundation_foundation",
"androidx.compose.foundation_foundation-layout",
"androidx.compose.material3_material3",
"androidx.compose.runtime_runtime",
"androidx.compose.ui_ui",
"androidx.core_core-ktx",
"com.google.android.material_material",
"kotlin-stdlib",
],
kotlincflags: [
"-Xjvm-default=all",
"-P plugin:androidx.compose.compiler.plugins.kotlin:sourceInformation=true",
],
use_resource_processor: true,
required: [
"privapp-permissions-axquicklook",
],
optimize: {
enabled: false,
},
}
prebuilt_etc {
name: "privapp-permissions-axquicklook",
system_ext_specific: true,
sub_dir: "permissions",
src: "privapp-permissions-axquicklook.xml",
filename_from_src: true,
}