1// Copyright (C) 2021 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_team: "trendy_team_mainline_modularization", 17 default_applicable_licenses: ["Android-Apache-2.0"], 18} 19 20python_test_host { 21 name: "mainline_modules_sdks_test", 22 main: "mainline_modules_sdks_test.py", 23 srcs: [ 24 "mainline_modules_sdks_test.py", 25 "mainline_modules_sdks.py", 26 ], 27 data: [ 28 "mainline_modules_sdks_test_data/**/*", 29 ], 30 test_suites: ["general-tests"], 31} 32 33phony { 34 name: "aosp_mainline_modules", 35 required: [ 36 "com.android.adbd", 37 "com.android.adservices", 38 "com.android.appsearch", 39 "com.android.bt", 40 "com.android.configinfrastructure", 41 "com.android.conscrypt", 42 "com.android.devicelock", 43 "com.android.extservices", 44 "com.android.healthfitness", 45 "com.android.i18n", 46 "com.android.ipsec", 47 "com.android.media", 48 "com.android.media.swcodec", 49 "com.android.mediaprovider", 50 "com.android.ondevicepersonalization", 51 "com.android.os.statsd", 52 "com.android.permission", 53 "com.android.resolv", 54 "com.android.rkpd", 55 "com.android.neuralnetworks", 56 "com.android.scheduling", 57 "com.android.sdkext", 58 "com.android.tethering", 59 "com.android.tzdata", 60 "com.android.uwb", 61 "com.android.virt", 62 "com.android.wifi", 63 ] + select(product_variable("use_debug_art"), { 64 true: [ 65 "com.android.art.debug", 66 ], 67 default: [ 68 "com.android.art", 69 ], 70 }), 71 visibility: ["//visibility:any_system_partition"], 72} 73