summaryrefslogtreecommitdiff
path: root/tests/InputScreenshotTest/Android.bp
blob: 15aaa463cce7294e42e5af927a8b257a4d5dc4ab (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "frameworks_base_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: ["frameworks_base_license"],
}

android_test {
    name: "InputScreenshotTests",
    srcs: [
        "src/**/*.java",
        "src/**/*.kt",
    ],
    platform_apis: true,
    certificate: "platform",
    static_libs: [
        "androidx.arch.core_core-testing",
        "androidx.compose.ui_ui-test-junit4",
        "androidx.compose.ui_ui-test-manifest",
        "androidx.lifecycle_lifecycle-runtime-testing",
        "androidx.compose.animation_animation",
        "androidx.compose.material3_material3",
        "androidx.compose.material_material-icons-extended",
        "androidx.compose.runtime_runtime",
        "androidx.compose.runtime_runtime-livedata",
        "androidx.compose.ui_ui-tooling-preview",
        "androidx.lifecycle_lifecycle-livedata-ktx",
        "androidx.lifecycle_lifecycle-runtime-compose",
        "androidx.navigation_navigation-compose",
        "truth",
        "androidx.compose.runtime_runtime",
        "androidx.test.core",
        "androidx.test.ext.junit",
        "androidx.test.ext.truth",
        "androidx.test.rules",
        "androidx.test.runner",
        "androidx.test.uiautomator_uiautomator",
        "servicestests-utils",
        "frameworks-base-testutils",
        "platform-screenshot-diff-core",
        "hamcrest-library",
        "kotlin-test",
        "flag-junit",
        "platform-test-annotations",
        "services.core.unboosted",
        "testables",
        "testng",
        "truth",
    ],
    libs: [
        "android.test.mock",
        "android.test.base",
    ],
    test_suites: ["device-tests"],
    compile_multilib: "both",
    use_embedded_native_libs: false,
    asset_dirs: ["assets"],
}