forked from StatiXOS/android_packages_apps_Statix_SystemUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.bp
95 lines (86 loc) · 2.07 KB
/
Android.bp
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
83
84
85
86
87
88
89
90
91
92
93
94
95
//
// Copyright (C) 2022 StatiXOS
// SPDX-License-Identifer: Apache-2.0
//
package {
default_applicable_licenses: ["packages_apps_Statix_SystemUI_license"],
}
// Added automatically by a large-scale-change
// See: http://go/android-license-faq
license {
name: "packages_apps_Statix_SystemUI_license",
visibility: [":__subpackages__"],
license_kinds: [
"SPDX-license-identifier-Apache-2.0",
],
license_text: [
"NOTICE",
],
}
android_library {
name: "StatixSystemUI-core",
srcs: [
"src/**/*.kt",
"src/**/*.java",
"src/**/I*.aidl",
],
resource_dirs: [
"res",
"res-ambientmusic",
"res-assist",
"res-columbus",
"res-elmyra",
"res-keyguard",
],
static_libs: [
"ambientmusic-google",
"assistmanager-google",
"backgesture-google",
"bcsmartspace-res",
"colorkt",
"columbus-sysui-google",
"elmyra-sysui-google",
"monet",
"smartspace-google",
"themelib",
"SystemUI-core",
"tensorflowlite_java",
"vendor.lineage.powershare-V1.0-java",
"//hardware/google/interfaces:com.google.hardware.pixel.display-V3-java",
"vendor-pixelatoms-java",
],
manifest: "AndroidManifest.xml",
kotlincflags: ["-Xjvm-default=enable"],
plugins: ["dagger2-compiler"],
}
android_app {
name: "StatixSystemUI",
defaults: ["platform_app_defaults"],
static_libs: [
"StatixSystemUI-core",
],
jni_libs: [
"libtensorflowlite_jni",
],
aaptflags: [
"-0 .tflite",
"-0 .vocab",
],
asset_dirs: ["assets"],
use_embedded_native_libs: true,
platform_apis: true,
system_ext_specific: true,
certificate: "platform",
privileged: true,
optimize: {
proguard_flags_files: ["proguard.flags"],
},
kotlincflags: ["-Xjvm-default=enable"],
dxflags: ["--multi-dex"],
required: [
"privapp_whitelist_com.android.systemui",
],
overrides: [
"SystemUI",
],
}