From c3a1df54865c4227db3e54a2f62b7ff93c9d734d Mon Sep 17 00:00:00 2001 From: Matt Kwong Date: Thu, 25 May 2017 08:10:40 -0700 Subject: [PATCH] Update boringssl (#625) --- projects/grpc/build.sh | 6 +++--- 1 file 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++"