1package {
2    // See: http://go/android-license-faq
3    default_applicable_licenses: ["Android-Apache-2.0"],
4}
5
6android_test {
7    name: "E2eeContactKeysProviderTests",
8    static_libs: [
9        "ContactsProviderTestUtils",
10        "androidx.test.rules",
11        "mockito-target-minus-junit4",
12        "flag-junit",
13        "android.content.pm.flags-aconfig-java",
14    ],
15    libs: [
16        "android.test.runner.stubs.system",
17        "android.test.base.stubs.system",
18        "android.test.mock.stubs.system",
19    ],
20
21    // Only compile source java files in this apk.
22    srcs: [
23        "src/**/*.java",
24        ":contactkeysprovider-shared-srcs",
25    ],
26    platform_apis: true,
27    test_suites: ["device-tests"],
28    instrumentation_for: "E2eeContactKeysProvider",
29    certificate: "shared",
30    optimize: {
31        enabled: false,
32    },
33}
34