aboutsummaryrefslogtreecommitdiff
path: root/projects/grpc
diff options
context:
space:
mode:
authorMatt Kwong <matt-kwong@users.noreply.github.com>2017-05-25 08:10:40 -0700
committerOliver Chang <oliverchang@users.noreply.github.com>2017-05-25 08:10:40 -0700
commitc3a1df54865c4227db3e54a2f62b7ff93c9d734d (patch)
tree1336c0234e990f5f85d05943d4b5d75ed5a40216 /projects/grpc
parente0e2d14e31f554dd9dbe388defe0d78bd34ada96 (diff)
downloadoss-fuzz-c3a1df54865c4227db3e54a2f62b7ff93c9d734d.tar.gz
Update boringssl (#625)
Diffstat (limited to 'projects/grpc')
-rwxr-xr-xprojects/grpc/build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/projects/grpc/build.sh b/projects/grpc/build.sh
index 4464325ad..182482bf9 100755
--- a/projects/grpc/build.sh
+++ b/projects/grpc/build.sh
@@ -40,8 +40,8 @@ FUZZER_LIBRARIES="\
bazel-bin/*.a \
bazel-bin/test/core/util/*.a \
bazel-bin/test/core/end2end/*.a \
-bazel-bin/external/submodule_boringssl/libssl.a \
-bazel-bin/external/submodule_boringssl/libcrypto.a \
+bazel-bin/external/boringssl/libssl.a \
+bazel-bin/external/boringssl/libcrypto.a \
bazel-bin/external/submodule_cares/*.a \
bazel-bin/external/submodule_zlib/*.a \
bazel-bin/third_party/nanopb/*.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/nanopb/... @submodule_boringssl//:all @submodule_zlib//:all @submodule_cares//:all
+ :all test/core/util/... test/core/end2end/... third_party/nanopb/... @boringssl//:all @submodule_zlib//:all @submodule_cares//:all
CFLAGS="${CFLAGS} -Iinclude -I."
CXXFLAGS="${CXXFLAGS} -Iinclude -I. -stdlib=libc++"