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 "packages_apps_Settings_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["packages_apps_Settings_license"], 8} 9 10android_test { 11 name: "AnomalyTester", 12 13 certificate: "platform", 14 15 libs: ["android.test.runner"], 16 17 static_libs: [ 18 "androidx.test.rules", 19 "mockito-target", 20 "ub-uiautomator", 21 "truth-prebuilt", 22 ], 23 24 srcs: ["**/*.java"], 25 26 optimize: { 27 enabled: false, 28 }, 29 30 platform_apis: true, 31 32 instrumentation_for: "Settings", 33} 34