aboutsummaryrefslogtreecommitdiff
path: root/tests/instrumentation/Android.bp
blob: a5d5b508a1129ed87d0c22895e3acf1da20e9e9a (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
61
62
63
64
65
66
67
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

android_test {
    name: "ManagedProvisioningTests",

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

    srcs: [
        "src/**/*.java",
        "src/**/*.kt"
    ],

    platform_apis: true,
    certificate: "platform",

    static_libs: [
        "androidx.test.rules",
        "mockito-target-minus-junit4",
        "androidx.test.espresso.core",
        "androidx.test.espresso.contrib",
        "androidx.test.espresso.intents",
        "truth-prebuilt",
        "testng", // used only for assertThrows
        "ub-uiautomator", // used for unlocking the device
        "TestApp",
        "ctstestrunner-axt",
        "Harrier",
    ],

    instrumentation_for: "ManagedProvisioning",
    test_suites: ["device-tests"],

}

android_library {
   name: "ManagedProvisioningTestsLib",
   srcs: [
      "src/**/*.java",
      "src/**/*.kt"
  ],
   manifest: "AndroidManifest.xml",
   libs: [
        "android.test.runner",
        "android.test.base",
        "android.test.mock",
    ],
   static_libs: [
        "androidx.test.rules",
        "mockito-target-minus-junit4",
        "androidx.test.espresso.core",
        "androidx.test.espresso.contrib",
        "androidx.test.espresso.intents",
        "truth-prebuilt",
        "testng",
        "ub-uiautomator",
        "TestApp",
        "ctstestrunner-axt",
        "Harrier",
        "ManagedProvisioningLib",
    ],
}