aboutsummaryrefslogtreecommitdiff
path: root/projects/grpc
diff options
context:
space:
mode:
authorDavid G. Quintas <dgq@google.com>2018-06-18 16:43:13 -0700
committerAbhishek Arya <inferno@chromium.org>2018-06-18 16:43:13 -0700
commit26d7835192626e76f5db323f2794723bca16cef1 (patch)
tree44be89725145186120459ae02ce2386e96307c0c /projects/grpc
parent9874e09f53596e2f5279bb0292b713882cfe8f1b (diff)
downloadoss-fuzz-26d7835192626e76f5db323f2794723bca16cef1.tar.gz
Add nanopb includes after grpc/grpc#15595 (#1536)
Diffstat (limited to 'projects/grpc')
-rwxr-xr-xprojects/grpc/build.sh4
1 files 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)