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 15package { 16 default_applicable_licenses: ["Android-Apache-2.0"], 17} 18 19java_library_static { 20 name: "compatibility-device-util-axt", 21 sdk_version: "test_current", 22 23 srcs: [ 24 "src/**/*.java", 25 "src/**/*.kt", 26 "src/**/*.aidl", 27 ], 28 29 static_libs: [ 30 "compatibility-common-util-devicesidelib", 31 "androidx.test.rules", 32 "androidx.test.ext.junit", 33 "ub-uiautomator", 34 "mockito-target-minus-junit4", 35 "androidx.annotation_annotation", 36 "truth-prebuilt", 37 "modules-utils-build_system", 38 ], 39 40 libs: [ 41 "android.test.runner", 42 "android.test.base", 43 ], 44 45 jarjar_rules: "protobuf-jarjar-rules.txt", 46} 47 48filegroup { 49 name: "compatibility-device-util-nodeps", 50 srcs: [ 51 "src/com/android/compatibility/common/util/IBinderParcelable.java", 52 "src/com/android/compatibility/common/util/ImeAwareEditText.java", 53 ], 54} 55