aboutsummaryrefslogtreecommitdiff
path: root/test/Android.bp
blob: ba0642f11e9608a22701c6bcb48e8c18f868be8e (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 {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "external_chromium-libpac_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-BSD
    default_applicable_licenses: ["external_chromium-libpac_license"],
}

cc_test {
    name: "proxy_resolver_v8_unittest",

    srcs: ["proxy_resolver_v8_unittest.cc"],

    include_dirs: ["external/chromium-libpac/src"],

    cflags: [
        "-Wno-endif-labels",
        "-Wno-import",
        "-Wno-format",
    ],

    // Use the non-APEX version for C++ API.
    bootstrap: true,

    shared_libs: [
        "libpac",
        "libutils",
        "liblog",
        "libandroid_runtime",
    ],

    test_suites: ["device-tests"],
}