diff options
Diffstat (limited to 'test/core/support/BUILD')
-rw-r--r-- | test/core/support/BUILD | 78 |
1 files changed, 40 insertions, 38 deletions
diff --git a/test/core/support/BUILD b/test/core/support/BUILD index d0ea15ccb9..db408199fc 100644 --- a/test/core/support/BUILD +++ b/test/core/support/BUILD @@ -27,192 +27,194 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +load("//bazel:grpc_build_system.bzl", "grpc_cc_library", "grpc_cc_test", "grpc_cc_binary") + licenses(["notice"]) # 3-clause BSD -cc_test( +grpc_cc_test( name = "alloc_test", srcs = ["alloc_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "avl_test", srcs = ["avl_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "backoff_test", srcs = ["backoff_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "cmdline_test", srcs = ["cmdline_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "cpu_test", srcs = ["cpu_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "env_test", srcs = ["env_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "histogram_test", srcs = ["histogram_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "host_port_test", srcs = ["host_port_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "log_test", srcs = ["log_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "mpscq_test", srcs = ["mpscq_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "murmur_hash_test", srcs = ["murmur_hash_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "stack_lockfree_test", srcs = ["stack_lockfree_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "string_test", srcs = ["string_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "spinlock_test", srcs = ["spinlock_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "sync_test", srcs = ["sync_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "thd_test", srcs = ["thd_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "time_test", srcs = ["time_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "tls_test", srcs = ["tls_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", ], ) -cc_test( +grpc_cc_test( name = "useful_test", srcs = ["useful_test.c"], - copts = ["-std=c99"], + language = "C", deps = [ "//:gpr", "//test/core/util:gpr_test_util", |