commit
bd1a0461ef
29 changed files with 1176 additions and 56 deletions
@ -0,0 +1,54 @@ |
|||||||
|
# Copyright 2017, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
load("//test/core/util:grpc_fuzzer.bzl", "grpc_fuzzer") |
||||||
|
|
||||||
|
grpc_fuzzer( |
||||||
|
name = "uri_fuzzer_test", |
||||||
|
srcs = ["uri_fuzzer_test.c"], |
||||||
|
deps = ["//:gpr", "//:grpc", "//test/core/util:grpc_test_util"], |
||||||
|
corpus = "uri_corpus", |
||||||
|
copts = ["-std=c99"], |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "lb_policies_test", |
||||||
|
srcs = ["lb_policies_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util", "//test/core/end2end:cq_verifier"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "set_initial_connect_string_test", |
||||||
|
srcs = ["set_initial_connect_string_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
@ -0,0 +1,51 @@ |
|||||||
|
# Copyright 2017, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "dns_resolver_connectivity_test", |
||||||
|
srcs = ["dns_resolver_connectivity_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "dns_resolver_test", |
||||||
|
srcs = ["dns_resolver_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "sockaddr_resolver_test", |
||||||
|
srcs = ["sockaddr_resolver_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
@ -0,0 +1,62 @@ |
|||||||
|
# Copyright 2017, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
load("//test/core/util:grpc_fuzzer.bzl", "grpc_fuzzer") |
||||||
|
|
||||||
|
cc_binary( |
||||||
|
name = "client", |
||||||
|
srcs = ["client.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util", "//test/core/end2end:ssl_test_data"], |
||||||
|
testonly = 1, |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_binary( |
||||||
|
name = "server", |
||||||
|
srcs = ["server.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util", "//test/core/end2end:ssl_test_data"], |
||||||
|
testonly = 1, |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "fling", |
||||||
|
srcs = ["fling_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util", "//test/core/end2end:ssl_test_data"], |
||||||
|
data = [":client", ":server"] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "fling_stream", |
||||||
|
srcs = ["fling_stream_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util", "//test/core/end2end:ssl_test_data"], |
||||||
|
data = [":client", ":server"] |
||||||
|
) |
@ -0,0 +1,181 @@ |
|||||||
|
# Copyright 2017, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
load("//test/core/util:grpc_fuzzer.bzl", "grpc_fuzzer") |
||||||
|
|
||||||
|
cc_library( |
||||||
|
name = "endpoint_tests", |
||||||
|
srcs = ["endpoint_tests.c"], |
||||||
|
hdrs = ["endpoint_tests.h"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
visibility = ["//test:__subpackages__"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "combiner_test", |
||||||
|
srcs = ["combiner_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "endpoint_pair_test", |
||||||
|
srcs = ["endpoint_pair_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util", ":endpoint_tests"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "ev_epoll_linux_test", |
||||||
|
srcs = ["ev_epoll_linux_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "fd_conservation_posix_test", |
||||||
|
srcs = ["fd_conservation_posix_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "fd_posix_test", |
||||||
|
srcs = ["fd_posix_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "load_file_test", |
||||||
|
srcs = ["load_file_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "pollset_set_test", |
||||||
|
srcs = ["pollset_set_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "resolve_address_posix_test", |
||||||
|
srcs = ["resolve_address_posix_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "resolve_address_test", |
||||||
|
srcs = ["resolve_address_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "resource_quota_test", |
||||||
|
srcs = ["resource_quota_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "sockaddr_utils_test", |
||||||
|
srcs = ["sockaddr_utils_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "socket_utils_test", |
||||||
|
srcs = ["socket_utils_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "tcp_client_posix_test", |
||||||
|
srcs = ["tcp_client_posix_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "tcp_posix_test", |
||||||
|
srcs = ["tcp_posix_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util", ":endpoint_tests"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "tcp_server_posix_test", |
||||||
|
srcs = ["tcp_server_posix_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "time_averaged_stats_test", |
||||||
|
srcs = ["time_averaged_stats_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "timer_heap_test", |
||||||
|
srcs = ["timer_heap_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "timer_list_test", |
||||||
|
srcs = ["timer_list_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "udp_server_test", |
||||||
|
srcs = ["udp_server_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "wakeup_fd_cv_test", |
||||||
|
srcs = ["wakeup_fd_cv_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
@ -0,0 +1,37 @@ |
|||||||
|
# Copyright 2016, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
cc_binary( |
||||||
|
name = "low_level_ping_pong", |
||||||
|
srcs = ["low_level_ping_pong.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
@ -0,0 +1,104 @@ |
|||||||
|
# Copyright 2017, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
load("//test/core/util:grpc_fuzzer.bzl", "grpc_fuzzer") |
||||||
|
|
||||||
|
grpc_fuzzer( |
||||||
|
name = "ssl_server_fuzzer", |
||||||
|
srcs = ["ssl_server_fuzzer.c"], |
||||||
|
deps = ["//:gpr", "//:grpc", "//test/core/util:grpc_test_util"], |
||||||
|
corpus = "corpus", |
||||||
|
copts = ["-std=c99"], |
||||||
|
) |
||||||
|
|
||||||
|
cc_library( |
||||||
|
name = "oauth2_utils", |
||||||
|
srcs = ["oauth2_utils.c"], |
||||||
|
hdrs = ["oauth2_utils.h"], |
||||||
|
deps = ["//:grpc"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "auth_context_test", |
||||||
|
srcs = ["auth_context_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "b64_test", |
||||||
|
srcs = ["b64_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "credentials_test", |
||||||
|
srcs = ["credentials_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "secure_endpoint_test", |
||||||
|
srcs = ["secure_endpoint_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util", "//test/core/iomgr:endpoint_tests"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "security_connector_test", |
||||||
|
srcs = ["security_connector_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_binary( |
||||||
|
name = "create_jwt", |
||||||
|
srcs = ["create_jwt.c"], |
||||||
|
deps = ["//:grpc", "//:gpr"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_binary( |
||||||
|
name = "fetch_oauth2", |
||||||
|
srcs = ["fetch_oauth2.c"], |
||||||
|
deps = ["//:grpc", "//:gpr", ":oauth2_utils"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_binary( |
||||||
|
name = "verify_jwt", |
||||||
|
srcs = ["verify_jwt.c"], |
||||||
|
deps = ["//:grpc", "//:gpr"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
@ -0,0 +1,54 @@ |
|||||||
|
# Copyright 2017, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
load("//test/core/util:grpc_fuzzer.bzl", "grpc_fuzzer") |
||||||
|
|
||||||
|
grpc_fuzzer( |
||||||
|
name = "percent_decode_fuzzer", |
||||||
|
srcs = ["percent_decode_fuzzer.c"], |
||||||
|
deps = ["//:gpr", "//:grpc", "//test/core/util:grpc_test_util"], |
||||||
|
corpus = "response_corpus", |
||||||
|
copts = ["-std=c99"], |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "percent_encoding_test", |
||||||
|
srcs = ["percent_encoding_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "slice_buffer_test", |
||||||
|
srcs = ["slice_string_helpers_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
@ -0,0 +1,72 @@ |
|||||||
|
# Copyright 2017, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "bdp_estimator_test", |
||||||
|
srcs = ["bdp_estimator_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "connectivity_state_test", |
||||||
|
srcs = ["connectivity_state_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "metadata_test", |
||||||
|
srcs = ["metadata_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "pid_controller_test", |
||||||
|
srcs = ["pid_controller_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "status_conversion_test", |
||||||
|
srcs = ["status_conversion_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "timeout_encoding_test", |
||||||
|
srcs = ["timeout_encoding_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
@ -0,0 +1,37 @@ |
|||||||
|
# Copyright 2017, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "transport_security_test", |
||||||
|
srcs = ["transport_security_test.c"], |
||||||
|
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"], |
||||||
|
copts = ['-std=c99'] |
||||||
|
) |
@ -0,0 +1,36 @@ |
|||||||
|
# Copyright 2017, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
cc_test( |
||||||
|
name = "alarm_cpp_test", |
||||||
|
srcs = ["alarm_cpp_test.cc"], |
||||||
|
deps = ["//:grpc++", "//external:gtest", "//test/core/util:gpr_test_util"], |
||||||
|
) |
@ -0,0 +1,63 @@ |
|||||||
|
# Copyright 2017, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
licenses(["notice"]) # 3-clause BSD |
||||||
|
|
||||||
|
cc_library( |
||||||
|
name = "test_config", |
||||||
|
srcs = [ |
||||||
|
"test_config_cc.cc", |
||||||
|
], |
||||||
|
hdrs = [ |
||||||
|
"test_config.h", |
||||||
|
], |
||||||
|
deps = ["//:gpr"], |
||||||
|
visibility = ["//test:__subpackages__"], |
||||||
|
) |
||||||
|
|
||||||
|
cc_library( |
||||||
|
name = "test_util", |
||||||
|
srcs = [ |
||||||
|
# "test/cpp/end2end/test_service_impl.cc", |
||||||
|
"byte_buffer_proto_helper.cc", |
||||||
|
"create_test_channel.cc", |
||||||
|
"string_ref_helper.cc", |
||||||
|
"subprocess.cc", |
||||||
|
"test_credentials_provider.cc", |
||||||
|
], |
||||||
|
hdrs = [ |
||||||
|
"byte_buffer_proto_helper.h", |
||||||
|
"create_test_channel.h", |
||||||
|
"string_ref_helper.h", |
||||||
|
"subprocess.h", |
||||||
|
"test_credentials_provider.h", |
||||||
|
], |
||||||
|
deps = ["//test/core/util:gpr_test_util", "//:grpc++", "//test/core/end2end:ssl_test_data"], |
||||||
|
visibility = ["//test:__subpackages__"], |
||||||
|
) |
@ -0,0 +1,14 @@ |
|||||||
|
cc_library( |
||||||
|
name = "gtest", |
||||||
|
srcs = [ |
||||||
|
"src/gtest-all.cc", |
||||||
|
], |
||||||
|
hdrs = glob(["include/**/*.h", "src/*.cc", "src/*.h"]), |
||||||
|
includes = [ |
||||||
|
"include", "." |
||||||
|
], |
||||||
|
linkstatic = 1, |
||||||
|
visibility = [ |
||||||
|
"//visibility:public", |
||||||
|
], |
||||||
|
) |
Loading…
Reference in new issue