From 26d7835192626e76f5db323f2794723bca16cef1 Mon Sep 17 00:00:00 2001 From: "David G. Quintas" Date: Mon, 18 Jun 2018 16:43:13 -0700 Subject: [PATCH] Add nanopb includes after grpc/grpc#15595 (#1536) --- projects/grpc/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/grpc/build.sh b/projects/grpc/build.sh index 87f2d88dd..7b181569c 100755 --- a/projects/grpc/build.sh +++ b/projects/grpc/build.sh @@ -59,8 +59,8 @@ bazel build --dynamic_mode=off --spawn_strategy=standalone --genrule_strategy=st :all test/core/util/... test/core/end2end/... third_party/address_sorting/... \ third_party/nanopb/... @boringssl//:all @com_github_madler_zlib//:all @com_github_cares_cares//:all -CFLAGS="${CFLAGS} -Iinclude -I." -CXXFLAGS="${CXXFLAGS} -Iinclude -I. -stdlib=libc++" +CFLAGS="${CFLAGS} -Iinclude -Ithird_party/nanopb -I." +CXXFLAGS="${CXXFLAGS} -Iinclude -Ithird_party/nanopb -I. -stdlib=libc++" for file in $FUZZER_FILES; do fuzzer_name=$(basename $file .cc)