| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #!/bin/bash
- # Copyright 2019, gRPC Authors All rights reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # This script creates a vendored copy of BoringSSL that is
- # suitable for building with the Swift Package Manager.
- #
- # For usage, see `vendor-all.sh`.
- set -eu
- SRCROOT=./tmp/grpc/third_party/boringssl
- DSTROOT=../Sources/BoringSSL
- echo "REMOVING any previously-vendored BoringSSL code"
- rm -rf $DSTROOT/include
- rm -rf $DSTROOT/ssl
- rm -rf $DSTROOT/crypto
- rm -rf $DSTROOT/err_data.c
- PATTERNS=(
- 'include/openssl/*.h'
- 'ssl/*.h'
- 'ssl/*.cc'
- 'crypto/*.h'
- 'crypto/*.c'
- 'crypto/*/*.h'
- 'crypto/*/*.c'
- 'crypto/*/*/*.h'
- 'crypto/*/*/*.c'
- 'third_party/fiat/*.h'
- 'third_party/fiat/*.c'
- )
- EXCLUDES=(
- '*_test.*'
- 'test_*.*'
- 'test'
- 'example_*.c'
- )
- for pattern in "${PATTERNS[@]}"
- do
- for i in $SRCROOT/$pattern; do
- path=${i#$SRCROOT}
- dest="$DSTROOT$path"
- dest_dir=$(dirname "$dest")
- mkdir -p "$dest_dir"
- cp "$SRCROOT/$path" "$dest"
- done
- done
- for exclude in "${EXCLUDES[@]}"
- do
- echo "EXCLUDING $exclude"
- find $DSTROOT -d -name "$exclude" -exec rm -rf {} \;
- done
- echo "GENERATING err_data.c"
- go run $SRCROOT/crypto/err/err_data_generate.go > $DSTROOT/crypto/err/err_data.c
- echo "DELETING crypto/fipsmodule/bcm.c"
- rm -f $DSTROOT/crypto/fipsmodule/bcm.c
- #
- # edit the BoringSSL headers to disable dependency on assembly language helpers.
- #
- perl -pi -e '$_ .= qq(\n#define OPENSSL_NO_ASM\n) if /#define OPENSSL_HEADER_BASE_H/' $DSTROOT/include/openssl/base.h
|