summaryrefslogtreecommitdiff
path: root/tests/unittests/Android.bp
blob: 595b4bee6fa51daf4d0b37374231ba16867087d8 (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
package {
    // See: http://go/android-license-faq
    default_applicable_licenses: ["Android-Apache-2.0"],
}

android_test {
    name: "MmsServiceTests",
    static_libs: [
        "mms-protos-lite",
        "mms-statsd",
        "androidx.annotation_annotation",
        "mockito-target",
        "compatibility-device-util-axt",
        "androidx.test.rules",
        "truth-prebuilt",
    ],
    libs: [
        "android.test.runner",
        "android.test.base",
        "android.test.mock",
    ],
    srcs: ["src/**/*.java", ":mms-service-srcs"],
    platform_apis: true,
    test_suites: ["device-tests"],
    certificate: "platform",
    instrumentation_for: "MmsService",
}