blob: ec36fe7509f45d1e24f3137dfebc3bd3bb459cb3 [file] [log] [blame]
Brett Chabotd2ab4af2019-02-12 12:40:26 -08001// 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
Brett Chabotd2ab4af2019-02-12 12:40:26 -080015java_library_static {
16 name: "compatibility-device-util-axt",
17 sdk_version: "test_current",
18
19 srcs: [
20 "src/**/*.java",
Eugene Suslabbafbd52019-05-23 16:59:41 -070021 "src/**/*.kt",
Brett Chabotd2ab4af2019-02-12 12:40:26 -080022 "src/**/*.aidl",
23 ],
24
25 static_libs: [
26 "compatibility-common-util-devicesidelib",
27 "androidx.test.rules",
28 "ub-uiautomator",
29 "mockito-target-minus-junit4",
30 "androidx.annotation_annotation",
31 "truth-prebuilt",
32 ],
33
34 libs: [
Jiyong Parkcaaed962020-05-19 21:12:39 +090035 "android.test.runner",
36 "android.test.base",
Brett Chabotd2ab4af2019-02-12 12:40:26 -080037 ],
38
39 jarjar_rules: "protobuf-jarjar-rules.txt",
40}