1// Copyright (C) 2020 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 15android_library_import { 16 name: "cts_window-extensions_nodeps", 17 aars: ["window-extensions-release.aar"], 18 sdk_version: "current", 19} 20 21java_library { 22 name: "cts_window-extensions", 23 sdk_version: "current", 24 static_libs: [ 25 "cts_window-extensions_nodeps", 26 ], 27 installable: false, 28} 29 30android_library_import { 31 name: "cts_window-sidecar_nodeps", 32 aars: ["window-sidecar-release.aar"], 33 sdk_version: "current", 34} 35 36java_library { 37 name: "cts_window-sidecar", 38 sdk_version: "current", 39 static_libs: [ 40 "cts_window-sidecar_nodeps", 41 ], 42 installable: false, 43} 44 45android_test { 46 name: "CtsWindowManagerJetpackTestCases", 47 defaults: ["cts_defaults"], 48 srcs: ["src/**/*.java"], 49 static_libs: [ 50 "androidx.test.ext.junit", 51 "androidx.test.rules", 52 "compatibility-device-util-axt", 53 "cts-wm-util", 54 "platform-test-annotations", 55 ], 56 libs: [ 57 "android.test.base.stubs", 58 "cts_window-extensions", 59 "cts_window-sidecar", 60 ], 61 test_suites: [ 62 "cts", 63 "vts", 64 "vts10", 65 "general-tests", 66 ], 67 sdk_version: "test_current", 68} 69