summaryrefslogtreecommitdiff
path: root/java/tests/Android.bp
blob: 2913d128680fb93cb7adaa2eb3fa71696f2acdcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package {
    // See: http://go/android-license-faq
    default_applicable_licenses: ["packages_modules_IntentResolver_license"],
}

android_test {
    name: "IntentResolverUnitTests",

    // Include all test java files.
    srcs: ["src/**/*.java", "src/**/*.kt"],

    libs: [
        "android.test.runner",
        "android.test.base",
        "android.test.mock",
        "framework",
        "framework-res",
    ],

    static_libs: [
        "IntentResolver-core",
        "androidx.test.rules",
        "androidx.test.ext.junit",
        "mockito-target-minus-junit4",
        "androidx.test.espresso.core",
        "truth-prebuilt",
        "testables",
        "testng",
    ],
    test_suites: ["general-tests"],
    sdk_version: "core_platform",
    platform_apis: true,
    compile_multilib: "both",

    dont_merge_manifests: true,
}