blob: f244f9f88684810a08eea46ea604a3168198f5f2 [file] [log] [blame]
Jason Monka2f2d822018-08-13 11:10:48 -04001//
2// Copyright (C) 2018 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16android_app {
17 name: "CarSystemUI",
18
Brad Stenning55832952018-08-27 08:39:30 -070019 overrides: [
20 "SystemUI",
21 ],
22
Jason Monka2f2d822018-08-13 11:10:48 -040023 srcs: [
24 "src/**/*.java",
25 "src/**/I*.aidl",
26 ],
27
28 static_libs: [
29 "SystemUI-core",
30 "SystemUIPluginLib",
31 "SystemUISharedLib",
32 "SettingsLib",
Ying Zheng149f9382018-11-02 15:46:07 -070033 "android.car.userlib",
Jason Monka2f2d822018-08-13 11:10:48 -040034 "androidx.car_car",
35 "androidx.legacy_legacy-support-v4",
36 "androidx.recyclerview_recyclerview",
37 "androidx.preference_preference",
38 "androidx.appcompat_appcompat",
39 "androidx.mediarouter_mediarouter",
40 "androidx.palette_palette",
41 "androidx.legacy_legacy-preference-v14",
42 "androidx.leanback_leanback",
43 "androidx.slice_slice-core",
44 "androidx.slice_slice-view",
45 "androidx.slice_slice-builders",
46 "androidx.arch.core_core-runtime",
47 "androidx.lifecycle_lifecycle-extensions",
Priyanke757aa92018-11-06 14:39:50 -080048 "car-theme-lib-bp",
Jason Monka2f2d822018-08-13 11:10:48 -040049 "SystemUI-tags",
50 "SystemUI-proto",
51 ],
52
53 libs: [
54 "telephony-common",
55 "android.car",
Jason Monka2f2d822018-08-13 11:10:48 -040056 ],
57
58 manifest: "AndroidManifest.xml",
59
60 owner: "google",
61 platform_apis: true,
62 certificate: "platform",
63 privileged: true,
64
65 optimize: {
66 proguard_flags_files: [
67 "proguard.flags",
68 ],
69 },
70 resource_dirs: [
71 "res",
72 ],
73
74
75 dxflags: ["--multi-dex"],
76
77 aaptflags: [
78 "--extra-packages",
79 "com.android.keyguard",
80 ],
81
82}