aboutsummaryrefslogtreecommitdiff
path: root/test/cpp/common/Android.bp
blob: 2f6eb43178921ca4debf05c696d74075cb119de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "external_grpc-grpc_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: ["external_grpc-grpc_license"],
}

cc_test {
    name: "alarm_test",
    defaults: ["grpc_defaults"],
    test_suites: ["device-tests"],
    srcs: [
        "alarm_test.cc",
    ],
    static_libs: [
        "libgpr_test_util",
    ],
    shared_libs: [
        "libgrpc++_unsecure",
    ],
}