aboutsummaryrefslogtreecommitdiff
path: root/framework/tests/stress/Android.bp
blob: dea516e641a19bfc85b4c2c263c2abad5a830ebb (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
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

android_test {
    name: "BluetoothTests",

    defaults: ["framework-bluetooth-tests-defaults"],

    min_sdk_version: "current",
    target_sdk_version: "current",

    // Include all test java files.
    srcs: ["src/**/*.java"],
    jacoco: {
        include_filter: ["android.bluetooth.*"],
        exclude_filter: [],
    },
    libs: [
        "android.test.runner",
        "android.test.base",
    ],
    static_libs: [
        "androidx.test.rules",
        "junit",
        "modules-utils-bytesmatcher",
    ],
    test_suites: [
        "general-tests",
    ],
    certificate: "bluetooth",
}