1// Copyright (C) 2023 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
16    default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
19///////////////////////////////////////////// Theme Orange ///////////////////////////////////////
20runtime_resource_overlay {
21    name: "ThemeOrangeBase",
22    manifest: "AndroidManifest.xml",
23    resource_dirs: ["res"],
24    static_libs: [
25        "car-resource-theme-orange-common",
26    ],
27}
28
29override_runtime_resource_overlay {
30    name: "googlecarui.theme.orange-com-android-systemui",
31    base: "ThemeOrangeBase",
32    package_name: "com.android.systemui.googlecarui.theme.orange.rro",
33    target_package_name: "com.android.systemui",
34    category: "theme_orange.systemui",
35}
36
37override_runtime_resource_overlay {
38    name: "googlecarui.theme.orange-com.android.car.notification",
39    base: "ThemeOrangeBase",
40    package_name: "com.android.car.notification.googlecarui.theme.orange.rro",
41    target_package_name: "com.android.car.notification",
42    category: "theme_orange.systemui",
43}
44
45///////////////////////////////////////////// Theme Pink /////////////////////////////////////////
46runtime_resource_overlay {
47    name: "ThemePinkBase",
48    manifest: "AndroidManifest.xml",
49    resource_dirs: ["res"],
50    static_libs: [
51        "car-resource-theme-pink-common",
52    ],
53}
54
55override_runtime_resource_overlay {
56    name: "googlecarui.theme.pink-com-android-systemui",
57    base: "ThemePinkBase",
58    package_name: "com.android.systemui.googlecarui.theme.pink.rro",
59    target_package_name: "com.android.systemui",
60    category: "theme_pink.systemui",
61}
62
63override_runtime_resource_overlay {
64    name: "googlecarui.theme.pink-com.android.car.notification",
65    base: "ThemePinkBase",
66    package_name: "com.android.car.notification.googlecarui.theme.pink.rro",
67    target_package_name: "com.android.car.notification",
68    category: "theme_pink.systemui",
69}
70