summaryrefslogtreecommitdiff
path: root/services/tests/performancehinttests/Android.bp
blob: c8121fc6930ae5f4c076d154ab8277fa2cfb1f56 (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
package {
    default_team: "trendy_team_games",
    default_applicable_licenses: ["frameworks_base_license"],
}

android_test {
    name: "PerformanceHintTests",
    srcs: [
        "src/**/*.java",
    ],
    static_libs: [
        "androidx.test.runner",
        "androidx.test.rules",
        "flag-junit",
        "junit",
        "mockito-target-minus-junit4",
        "platform-test-annotations",
        "services.core",
        "truth",
    ],
    libs: [
        "android.test.base.stubs.system",
    ],
    test_suites: [
        "automotive-tests",
        "device-tests",
    ],
    platform_apis: true,
    certificate: "platform",
    dxflags: ["--multi-dex"],
    optimize: {
        enabled: false,
    },
}