aboutsummaryrefslogtreecommitdiff
path: root/projects/grpc
diff options
context:
space:
mode:
authorMatt Kwong <matt-kwong@users.noreply.github.com>2017-04-27 15:22:13 -0700
committerOliver Chang <oliverchang@users.noreply.github.com>2017-04-27 15:22:13 -0700
commited5005933c2ccdeb4eaf5c10d93367885c737577 (patch)
treee61f7544184f01747d823291d14f4355b561892f /projects/grpc
parent41a6b8f807a5cd4d3812382db1bd6ee770dc6adb (diff)
downloadoss-fuzz-ed5005933c2ccdeb4eaf5c10d93367885c737577.tar.gz
Fix gRPC build (#556)
Diffstat (limited to 'projects/grpc')
-rwxr-xr-xprojects/grpc/build.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/projects/grpc/build.sh b/projects/grpc/build.sh
index 03942bc12..4464325ad 100755
--- a/projects/grpc/build.sh
+++ b/projects/grpc/build.sh
@@ -40,10 +40,10 @@ FUZZER_LIBRARIES="\
bazel-bin/*.a \
bazel-bin/test/core/util/*.a \
bazel-bin/test/core/end2end/*.a \
-bazel-bin/third_party/boringssl-with-bazel/libssl.a \
-bazel-bin/third_party/boringssl-with-bazel/libcrypto.a \
-bazel-bin/external/submodule_cares/_objs/ares/external/submodule_cares/cares/*.o \
-bazel-bin/external/submodule_zlib/_objs/z/external/submodule_zlib/*.o \
+bazel-bin/external/submodule_boringssl/libssl.a \
+bazel-bin/external/submodule_boringssl/libcrypto.a \
+bazel-bin/external/submodule_cares/*.a \
+bazel-bin/external/submodule_zlib/*.a \
bazel-bin/third_party/nanopb/*.a \
bazel-bin/*.a \
"
@@ -55,7 +55,7 @@ EXTERA_BAZEL_FLAGS="--strip=never $(for f in $CXXFLAGS; do if [ $f != "-stdlib=
bazel build --dynamic_mode=off --spawn_strategy=standalone --genrule_strategy=standalone \
$EXTERA_BAZEL_FLAGS \
$NO_VPTR \
- :all test/core/util/... test/core/end2end/... third_party/boringssl-with-bazel/... third_party/nanopb/...
+ :all test/core/util/... test/core/end2end/... third_party/nanopb/... @submodule_boringssl//:all @submodule_zlib//:all @submodule_cares//:all
CFLAGS="${CFLAGS} -Iinclude -I."
CXXFLAGS="${CXXFLAGS} -Iinclude -I. -stdlib=libc++"