blob: c1127341b85ba0792333a19947c8de7375b3fa3a [file] [log] [blame]
Pardis Beikzadeh97a0d652020-07-21 11:02:29 -07001//
2// Copyright (C) 2020 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_library {
17
18 name: "car-uxr-client-lib",
19
20 srcs: ["src/**/*.java"],
21
22 optimize: {
23 enabled: false,
24 },
25
26 libs: [
Pardis Beikzadehba7ba102020-07-27 16:21:15 -070027 "android.car-system-stubs",
Pardis Beikzadeh97a0d652020-07-21 11:02:29 -070028 ],
Pardis Beikzadehba7ba102020-07-27 16:21:15 -070029 sdk_version: "system_current",
Pardis Beikzadeh97a0d652020-07-21 11:02:29 -070030
31 static_libs: [
32 "androidx.recyclerview_recyclerview",
33 "androidx.lifecycle_lifecycle-common-java8",
34 "car-ui-lib",
35 ],
36}