blob: f5eb2da9efcbcd3193e4131ca3fd93785159ad4c [file] [log] [blame]
Cole Faustbdbee872019-12-06 12:47:08 -08001//
2// Copyright (C) 2019 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//
16
17android_app {
Colin Cross3084c712020-01-08 09:23:11 -080018 name: "PaintBooth",
Cole Faustbdbee872019-12-06 12:47:08 -080019
20 srcs: ["src/**/*.java"],
21
Saeid Farivar Asanjan5845ae82020-01-14 16:28:33 -080022 required: ["privapp_whitelist_com.android.car.ui.paintbooth"],
23
Cole Faustbdbee872019-12-06 12:47:08 -080024 resource_dirs: ["res"],
25
26 platform_apis: true,
27
28 certificate: "platform",
29
30 privileged: true,
31
32 static_libs: [
Colin Cross3084c712020-01-08 09:23:11 -080033 "car-ui-lib",
Cole Faustbdbee872019-12-06 12:47:08 -080034 "android.car.userlib",
35 ],
36
37 optimize: {
38 enabled: false,
39 },
40
41 dex_preopt: {
42 enabled: false,
43 },
44
45 product_variables: {
46 pdk: {
47 enabled: false,
48 },
49 },
Saeid Farivar Asanjanfe997c62020-01-17 16:18:38 -080050 export_package_resources: true,
Cole Faustbdbee872019-12-06 12:47:08 -080051}