1// Copyright (C) 2018 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//
15
16android_app {
17    name: "CarLauncher",
18
19    srcs: ["src/**/*.java"],
20
21    resource_dirs: ["res"],
22
23    platform_apis: true,
24
25    required: ["privapp_whitelist_com.android.car.carlauncher"],
26
27    certificate: "platform",
28
29    privileged: true,
30
31    overrides: [
32        "Launcher2",
33        "Launcher3",
34        "Launcher3QuickStep",
35    ],
36
37    optimize: {
38        enabled: false,
39    },
40
41    dex_preopt: {
42        enabled: false,
43    },
44
45    static_libs: [
46        "androidx-constraintlayout_constraintlayout-solver",
47        "androidx-constraintlayout_constraintlayout",
48        "androidx.lifecycle_lifecycle-extensions",
49        "car-media-common",
50        "car-ui-lib",
51    ],
52
53    libs: ["android.car"],
54
55    product_variables: {
56        pdk: {
57            enabled: false,
58        },
59    },
60}
61