1*c2e18aaaSAndroid Build Coastguard Worker// Copyright 2024 The Android Open Source Project 2*c2e18aaaSAndroid Build Coastguard Worker// 3*c2e18aaaSAndroid Build Coastguard Worker// Licensed under the Apache License, Version 2.0 (the "License"); 4*c2e18aaaSAndroid Build Coastguard Worker// you may not use this file except in compliance with the License. 5*c2e18aaaSAndroid Build Coastguard Worker// You may obtain a copy of the License at 6*c2e18aaaSAndroid Build Coastguard Worker// 7*c2e18aaaSAndroid Build Coastguard Worker// http://www.apache.org/licenses/LICENSE-2.0 8*c2e18aaaSAndroid Build Coastguard Worker// 9*c2e18aaaSAndroid Build Coastguard Worker// Unless required by applicable law or agreed to in writing, software 10*c2e18aaaSAndroid Build Coastguard Worker// distributed under the License is distributed on an "AS IS" BASIS, 11*c2e18aaaSAndroid Build Coastguard Worker// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*c2e18aaaSAndroid Build Coastguard Worker// See the License for the specific language governing permissions and 13*c2e18aaaSAndroid Build Coastguard Worker// limitations under the License. 14*c2e18aaaSAndroid Build Coastguard Worker 15*c2e18aaaSAndroid Build Coastguard Worker// Set of error prone rules to ensure code quality 16*c2e18aaaSAndroid Build Coastguard Worker// PackageLocation check requires the androidCompatible=false otherwise it does not do anything. 17*c2e18aaaSAndroid Build Coastguard Workerpackage { 18*c2e18aaaSAndroid Build Coastguard Worker default_applicable_licenses: ["Android-Apache-2.0"], 19*c2e18aaaSAndroid Build Coastguard Worker} 20*c2e18aaaSAndroid Build Coastguard Worker 21*c2e18aaaSAndroid Build Coastguard Workertradefed_binary_host { 22*c2e18aaaSAndroid Build Coastguard Worker name: "atest-tradefed", 23*c2e18aaaSAndroid Build Coastguard Worker short_name: "ATEST", 24*c2e18aaaSAndroid Build Coastguard Worker full_name: "ATest Test Suite", 25*c2e18aaaSAndroid Build Coastguard Worker srcs: [ 26*c2e18aaaSAndroid Build Coastguard Worker "src/**/*.java", 27*c2e18aaaSAndroid Build Coastguard Worker ], 28*c2e18aaaSAndroid Build Coastguard Worker java_resource_dirs: ["res"], 29*c2e18aaaSAndroid Build Coastguard Worker required: [ 30*c2e18aaaSAndroid Build Coastguard Worker "atest_tradefed.sh", 31*c2e18aaaSAndroid Build Coastguard Worker "atest_script_help.sh", 32*c2e18aaaSAndroid Build Coastguard Worker ], 33*c2e18aaaSAndroid Build Coastguard Worker} 34*c2e18aaaSAndroid Build Coastguard Worker 35*c2e18aaaSAndroid Build Coastguard Workersh_binary_host { 36*c2e18aaaSAndroid Build Coastguard Worker name: "atest_tradefed.sh", 37*c2e18aaaSAndroid Build Coastguard Worker src: "atest_tradefed.sh", 38*c2e18aaaSAndroid Build Coastguard Worker} 39*c2e18aaaSAndroid Build Coastguard Worker 40*c2e18aaaSAndroid Build Coastguard Workersh_binary_host { 41*c2e18aaaSAndroid Build Coastguard Worker name: "atest_script_help.sh", 42*c2e18aaaSAndroid Build Coastguard Worker src: "atest_script_help.sh", 43*c2e18aaaSAndroid Build Coastguard Worker} 44