aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/util/grpc_fuzzer.bzl
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2017-04-18 06:32:11 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2017-04-18 19:53:10 +0200
commit15cd5ce2ed155646ced3e5eb248a84d122570bde (patch)
tree13e56efb73a0c00e5311de0e3f8687b62d7ad5ab /test/core/util/grpc_fuzzer.bzl
parent7c26eed8388c131dc5833f554414eebb6107b0cd (diff)
Rewriting core tests BUILD files to use the build system.
Diffstat (limited to 'test/core/util/grpc_fuzzer.bzl')
-rw-r--r--test/core/util/grpc_fuzzer.bzl4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/core/util/grpc_fuzzer.bzl b/test/core/util/grpc_fuzzer.bzl
index 2f552a9fdb..2fcb58b5a9 100644
--- a/test/core/util/grpc_fuzzer.bzl
+++ b/test/core/util/grpc_fuzzer.bzl
@@ -27,8 +27,10 @@
# (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_binary")
+
def grpc_fuzzer(name, corpus, srcs = [], deps = [], **kwargs):
- native.cc_binary(
+ grpc_cc_binary(
name = '%s/one_entry.bin' % name,
srcs = srcs,
deps = deps + ["//test/core/util:one_corpus_entry_fuzzer"],