1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "frameworks_base_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["frameworks_base_license"], 8} 9 10android_test { 11 name: "SettingsProviderPerfTests", 12 13 srcs: [ 14 "src/**/*.java", 15 "src/**/*.kt", 16 ], 17 18 static_libs: [ 19 "platform-compat-test-rules", 20 "androidx.appcompat_appcompat", 21 "androidx.test.rules", 22 "androidx.test.ext.junit", 23 "androidx.annotation_annotation", 24 "apct-perftests-utils", 25 "collector-device-lib-platform", 26 "cts-install-lib-java", 27 "services.core", 28 ], 29 30 libs: ["android.test.base"], 31 32 platform_apis: true, 33 34 test_suites: ["device-tests"], 35 36 data: [":perfetto_artifacts"], 37 38 certificate: "platform", 39} 40