• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2017 gRPC authors.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15licenses(["notice"])  # Apache v2
16
17load("//bazel:grpc_build_system.bzl", "grpc_cc_test", "grpc_package")
18
19grpc_package(name = "test/cpp/common")
20
21grpc_cc_test(
22    name = "alarm_test",
23    srcs = ["alarm_test.cc"],
24    deps = [
25        "//:grpc++_unsecure",
26        "//test/core/util:gpr_test_util",
27    ],
28    external_deps = [
29        "gtest",
30    ],
31)
32
33grpc_cc_test(
34    name = "auth_property_iterator_test",
35    srcs = ["auth_property_iterator_test.cc"],
36    deps = [
37        "//:grpc++",
38        "//test/core/util:gpr_test_util",
39        "//test/cpp/util:test_util",
40    ],
41    external_deps = [
42        "gtest",
43    ],
44)
45
46grpc_cc_test(
47    name = "channel_arguments_test",
48    srcs = ["channel_arguments_test.cc"],
49    deps = [
50        "//:grpc++",
51        "//test/core/util:gpr_test_util",
52    ],
53    external_deps = [
54        "gtest",
55    ],
56)
57
58grpc_cc_test(
59    name = "channel_filter_test",
60    srcs = ["channel_filter_test.cc"],
61    deps = [
62        "//:grpc++",
63        "//test/core/util:gpr_test_util",
64    ],
65    external_deps = [
66        "gtest",
67    ],
68)
69
70grpc_cc_test(
71    name = "secure_auth_context_test",
72    srcs = ["secure_auth_context_test.cc"],
73    deps = [
74        "//:grpc++",
75        "//test/core/util:gpr_test_util",
76        "//test/cpp/util:test_util",
77    ],
78    external_deps = [
79        "gtest",
80    ],
81)
82