forked from grpc/grpc-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vendor-grpc.sh
executable file
·85 lines (75 loc) · 2.55 KB
/
vendor-grpc.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/bin/sh
#
# Copyright 2016, 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 vendors the gRPC Core library into the
# CgRPC module in a form suitable for building with
# the Swift Package Manager.
#
#
# Read the list of files to vendor from the gRPC project.
#
# The file that is included here is a generated file.
# To generate it, copy swift-vendoring.sh.template from
# the grpc-swift directory to grpc/templates and then
# run tools/buildgen/generate_projects.sh in the grpc
# directory.
#
source third_party/grpc/swift-vendoring.sh
#
# Remove previously-vendored code.
#
echo "REMOVING any previously-vendored gRPC code"
rm -rf Sources/CgRPC/src
rm -rf Sources/CgRPC/grpc
rm -rf Sources/CgRPC/third_party
rm -rf Sources/CgRPC/include/grpc
#
# Copy grpc headers and source files
#
echo "COPYING public gRPC headers"
for src in "${public_headers[@]}"
do
dest="Sources/CgRPC/$src"
dest_dir=$(dirname $dest)
mkdir -pv $dest_dir
cp third_party/grpc/$src $dest
done
echo "COPYING private grpc headers"
for src in "${private_headers[@]}"
do
dest="Sources/CgRPC/$src"
dest_dir=$(dirname $dest)
mkdir -pv $dest_dir
cp third_party/grpc/$src $dest
done
echo "COPYING grpc source files"
for src in "${source_files[@]}"
do
dest="Sources/CgRPC/$src"
dest_dir=$(dirname $dest)
mkdir -pv $dest_dir
cp third_party/grpc/$src $dest
done
echo "COPYING additional nanopb headers"
cp third_party/grpc/third_party/nanopb/*.h Sources/CgRPC/third_party/nanopb/
echo "ADDING additional compiler flags to nanopb/pb.h"
perl -pi -e 's/\/\* #define PB_FIELD_16BIT 1 \*\//#define PB_FIELD_16BIT 1/' Sources/CgRPC/third_party/nanopb/pb.h
echo "ADDING additional compiler flags to tsi/ssl_transport_security.cc"
perl -pi -e 's/#define TSI_OPENSSL_ALPN_SUPPORT 1/#define TSI_OPENSSL_ALPN_SUPPORT 0/' Sources/CgRPC/src/core/tsi/ssl_transport_security.cc
echo "DISABLING ARES"
perl -pi -e 's/#define GRPC_ARES 1/#define GRPC_ARES 0/' Sources/CgRPC/include/grpc/impl/codegen/port_platform.h
echo "COPYING roots.pem"
cp third_party/grpc/etc/roots.pem Assets/roots.pem