1// 2// Copyright (C) 2017 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 16package { 17 default_applicable_licenses: ["Android-Apache-2.0"], 18} 19 20android_test { 21 name: "CtsSelinuxTargetSdk25TestCases", 22 team: "trendy_team_android_rust", 23 defaults: ["cts_defaults"], 24 compile_multilib: "both", 25 static_libs: [ 26 "ctstestrunner-axt", 27 "compatibility-device-util-axt", 28 ], 29 libs: [ 30 "android.test.base", 31 "android.test.runner", 32 ], 33 jni_libs: [ 34 "libbase", 35 "libc++", 36 "libcrypto", 37 "libcts_jni", 38 "libctsselinux_jni", 39 "libnativehelper", 40 "libnativehelper_compat_libc++", 41 "libpackagelistparser", 42 "libpcre2", 43 "libselinux", 44 ], 45 srcs: [ 46 "src/**/*.java", 47 "common/**/*.java", 48 ], 49 platform_apis: true, 50 test_suites: [ 51 "cts", 52 "general-tests", 53 ], 54 min_sdk_version: "21", 55} 56