blob: a6ce55e0a9d4708b585f1e440d7f2fc8bbe1d527 [file] [log] [blame]
Stanley Cheung5adb71f2016-02-13 00:03:02 -08001PHP_ARG_ENABLE(grpc, whether to enable grpc support,
2[ --enable-grpc Enable grpc support])
3
4if test "$PHP_GRPC" != "no"; then
5 dnl Write more examples of tests here...
6
7 dnl # --with-grpc -> add include path
Stanley Cheung90cd2782017-01-11 21:38:33 -08008 PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/include)
9 PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/src/php/ext/grpc)
10 PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/third_party/boringssl/include)
ZhouyihaiDing5ad50ec2018-03-27 09:37:09 -070011 PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/third_party/address_sorting/include)
ZhouyihaiDing8771dab2018-06-19 14:15:08 -070012 PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/third_party/nanopb)
Stanley Cheung5adb71f2016-02-13 00:03:02 -080013
Stanley Cheungbf74d692016-02-23 22:39:25 -080014 LIBS="-lpthread $LIBS"
15
ZhouyihaiDing8771dab2018-06-19 14:15:08 -070016 CFLAGS="-Wall -Werror -Wno-parentheses-equality -Wno-unused-value -std=c11 -g -O2 -D PB_FIELD_32BIT=1"
17 CXXFLAGS="-std=c++11 -fno-exceptions -fno-rtti -g -O2 -D PB_FIELD_32BIT=1"
Stanley Cheungbf74d692016-02-23 22:39:25 -080018 GRPC_SHARED_LIBADD="-lpthread $GRPC_SHARED_LIBADD"
Stanley Cheung94d75882017-05-17 14:58:02 -070019 PHP_REQUIRE_CXX()
Stanley Cheung5adb71f2016-02-13 00:03:02 -080020 PHP_ADD_LIBRARY(pthread)
Stanley Cheungbf74d692016-02-23 22:39:25 -080021 PHP_ADD_LIBRARY(dl,,GRPC_SHARED_LIBADD)
22 PHP_ADD_LIBRARY(dl)
23
24 case $host in
Stanley Cheung5ec52ae2017-04-14 15:07:28 -070025 *darwin*)
Stanley Cheung5ec52ae2017-04-14 15:07:28 -070026 ;;
Stanley Cheungbf74d692016-02-23 22:39:25 -080027 *)
28 PHP_ADD_LIBRARY(rt,,GRPC_SHARED_LIBADD)
29 PHP_ADD_LIBRARY(rt)
30 ;;
31 esac
32
Stanley Cheung5adb71f2016-02-13 00:03:02 -080033 PHP_NEW_EXTENSION(grpc,
34 src/php/ext/grpc/byte_buffer.c \
35 src/php/ext/grpc/call.c \
36 src/php/ext/grpc/call_credentials.c \
37 src/php/ext/grpc/channel.c \
38 src/php/ext/grpc/channel_credentials.c \
39 src/php/ext/grpc/completion_queue.c \
40 src/php/ext/grpc/php_grpc.c \
41 src/php/ext/grpc/server.c \
42 src/php/ext/grpc/server_credentials.c \
43 src/php/ext/grpc/timeval.c \
Alexander Polcyn690dde62017-10-18 00:20:33 -070044 third_party/address_sorting/address_sorting.c \
45 third_party/address_sorting/address_sorting_posix.c \
46 third_party/address_sorting/address_sorting_windows.c \
Mark D. Rothdbdf4952018-01-18 11:21:12 -080047 src/core/lib/gpr/alloc.cc \
48 src/core/lib/gpr/arena.cc \
49 src/core/lib/gpr/atm.cc \
Mark D. Rothdbdf4952018-01-18 11:21:12 -080050 src/core/lib/gpr/cpu_iphone.cc \
51 src/core/lib/gpr/cpu_linux.cc \
52 src/core/lib/gpr/cpu_posix.cc \
53 src/core/lib/gpr/cpu_windows.cc \
54 src/core/lib/gpr/env_linux.cc \
55 src/core/lib/gpr/env_posix.cc \
56 src/core/lib/gpr/env_windows.cc \
Mark D. Rothdbdf4952018-01-18 11:21:12 -080057 src/core/lib/gpr/host_port.cc \
58 src/core/lib/gpr/log.cc \
59 src/core/lib/gpr/log_android.cc \
60 src/core/lib/gpr/log_linux.cc \
61 src/core/lib/gpr/log_posix.cc \
62 src/core/lib/gpr/log_windows.cc \
63 src/core/lib/gpr/mpscq.cc \
64 src/core/lib/gpr/murmur_hash.cc \
65 src/core/lib/gpr/string.cc \
66 src/core/lib/gpr/string_posix.cc \
67 src/core/lib/gpr/string_util_windows.cc \
68 src/core/lib/gpr/string_windows.cc \
Mark D. Rothdbdf4952018-01-18 11:21:12 -080069 src/core/lib/gpr/sync.cc \
70 src/core/lib/gpr/sync_posix.cc \
71 src/core/lib/gpr/sync_windows.cc \
Mark D. Rothdbdf4952018-01-18 11:21:12 -080072 src/core/lib/gpr/time.cc \
73 src/core/lib/gpr/time_posix.cc \
74 src/core/lib/gpr/time_precise.cc \
75 src/core/lib/gpr/time_windows.cc \
76 src/core/lib/gpr/tls_pthread.cc \
77 src/core/lib/gpr/tmpfile_msys.cc \
78 src/core/lib/gpr/tmpfile_posix.cc \
79 src/core/lib/gpr/tmpfile_windows.cc \
80 src/core/lib/gpr/wrap_memcpy.cc \
kpayson64701e70d2018-04-30 17:40:00 -070081 src/core/lib/gprpp/fork.cc \
Vijay Paida693552018-02-16 22:59:03 -080082 src/core/lib/gprpp/thd_posix.cc \
83 src/core/lib/gprpp/thd_windows.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -070084 src/core/lib/profiling/basic_timers.cc \
85 src/core/lib/profiling/stap_timers.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -070086 src/core/lib/surface/init.cc \
Vijay Pai8f4fbb12018-02-08 10:04:08 -080087 src/core/lib/avl/avl.cc \
Craig Tillerd48bd072017-10-06 11:25:14 -070088 src/core/lib/backoff/backoff.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -070089 src/core/lib/channel/channel_args.cc \
90 src/core/lib/channel/channel_stack.cc \
91 src/core/lib/channel/channel_stack_builder.cc \
ncteisen3b42f832018-03-19 13:22:35 -070092 src/core/lib/channel/channel_trace.cc \
ncteisenc3c6e062018-05-09 11:10:21 -070093 src/core/lib/channel/channelz.cc \
ncteisenbba88402018-05-11 11:54:41 -040094 src/core/lib/channel/channelz_registry.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -070095 src/core/lib/channel/connected_channel.cc \
96 src/core/lib/channel/handshaker.cc \
97 src/core/lib/channel/handshaker_factory.cc \
98 src/core/lib/channel/handshaker_registry.cc \
ncteisen3b42f832018-03-19 13:22:35 -070099 src/core/lib/channel/status_util.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700100 src/core/lib/compression/compression.cc \
Muxi Yan03fc8572017-10-06 18:47:09 -0700101 src/core/lib/compression/compression_internal.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700102 src/core/lib/compression/message_compress.cc \
103 src/core/lib/compression/stream_compression.cc \
Yash Tibrewalbc460fa2017-10-02 17:42:41 -0700104 src/core/lib/compression/stream_compression_gzip.cc \
105 src/core/lib/compression/stream_compression_identity.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700106 src/core/lib/debug/stats.cc \
107 src/core/lib/debug/stats_data.cc \
108 src/core/lib/http/format_request.cc \
109 src/core/lib/http/httpcli.cc \
110 src/core/lib/http/parser.cc \
Yash Tibrewal8d47cd42018-08-27 14:56:01 -0700111 src/core/lib/iomgr/buffer_list.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700112 src/core/lib/iomgr/call_combiner.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700113 src/core/lib/iomgr/combiner.cc \
114 src/core/lib/iomgr/endpoint.cc \
115 src/core/lib/iomgr/endpoint_pair_posix.cc \
116 src/core/lib/iomgr/endpoint_pair_uv.cc \
117 src/core/lib/iomgr/endpoint_pair_windows.cc \
118 src/core/lib/iomgr/error.cc \
119 src/core/lib/iomgr/ev_epoll1_linux.cc \
120 src/core/lib/iomgr/ev_epollex_linux.cc \
121 src/core/lib/iomgr/ev_epollsig_linux.cc \
122 src/core/lib/iomgr/ev_poll_posix.cc \
123 src/core/lib/iomgr/ev_posix.cc \
124 src/core/lib/iomgr/ev_windows.cc \
125 src/core/lib/iomgr/exec_ctx.cc \
126 src/core/lib/iomgr/executor.cc \
Nicolas "Pixel" Noble18a68372017-11-20 23:33:22 +0100127 src/core/lib/iomgr/fork_posix.cc \
128 src/core/lib/iomgr/fork_windows.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700129 src/core/lib/iomgr/gethostname_fallback.cc \
130 src/core/lib/iomgr/gethostname_host_name_max.cc \
131 src/core/lib/iomgr/gethostname_sysconf.cc \
Yash Tibrewal8d47cd42018-08-27 14:56:01 -0700132 src/core/lib/iomgr/internal_errqueue.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700133 src/core/lib/iomgr/iocp_windows.cc \
134 src/core/lib/iomgr/iomgr.cc \
kpayson64539f5062018-03-12 19:16:30 -0700135 src/core/lib/iomgr/iomgr_custom.cc \
136 src/core/lib/iomgr/iomgr_internal.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700137 src/core/lib/iomgr/iomgr_posix.cc \
138 src/core/lib/iomgr/iomgr_uv.cc \
139 src/core/lib/iomgr/iomgr_windows.cc \
140 src/core/lib/iomgr/is_epollexclusive_available.cc \
141 src/core/lib/iomgr/load_file.cc \
142 src/core/lib/iomgr/lockfree_event.cc \
143 src/core/lib/iomgr/network_status_tracker.cc \
144 src/core/lib/iomgr/polling_entity.cc \
kpayson64539f5062018-03-12 19:16:30 -0700145 src/core/lib/iomgr/pollset.cc \
146 src/core/lib/iomgr/pollset_custom.cc \
147 src/core/lib/iomgr/pollset_set.cc \
148 src/core/lib/iomgr/pollset_set_custom.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700149 src/core/lib/iomgr/pollset_set_windows.cc \
150 src/core/lib/iomgr/pollset_uv.cc \
151 src/core/lib/iomgr/pollset_windows.cc \
kpayson64539f5062018-03-12 19:16:30 -0700152 src/core/lib/iomgr/resolve_address.cc \
153 src/core/lib/iomgr/resolve_address_custom.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700154 src/core/lib/iomgr/resolve_address_posix.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700155 src/core/lib/iomgr/resolve_address_windows.cc \
156 src/core/lib/iomgr/resource_quota.cc \
157 src/core/lib/iomgr/sockaddr_utils.cc \
158 src/core/lib/iomgr/socket_factory_posix.cc \
159 src/core/lib/iomgr/socket_mutator.cc \
160 src/core/lib/iomgr/socket_utils_common_posix.cc \
161 src/core/lib/iomgr/socket_utils_linux.cc \
162 src/core/lib/iomgr/socket_utils_posix.cc \
163 src/core/lib/iomgr/socket_utils_uv.cc \
Yash Tibrewal26c78032017-09-28 14:34:43 -0700164 src/core/lib/iomgr/socket_utils_windows.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700165 src/core/lib/iomgr/socket_windows.cc \
kpayson64539f5062018-03-12 19:16:30 -0700166 src/core/lib/iomgr/tcp_client.cc \
167 src/core/lib/iomgr/tcp_client_custom.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700168 src/core/lib/iomgr/tcp_client_posix.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700169 src/core/lib/iomgr/tcp_client_windows.cc \
kpayson64539f5062018-03-12 19:16:30 -0700170 src/core/lib/iomgr/tcp_custom.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700171 src/core/lib/iomgr/tcp_posix.cc \
kpayson64539f5062018-03-12 19:16:30 -0700172 src/core/lib/iomgr/tcp_server.cc \
173 src/core/lib/iomgr/tcp_server_custom.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700174 src/core/lib/iomgr/tcp_server_posix.cc \
175 src/core/lib/iomgr/tcp_server_utils_posix_common.cc \
176 src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc \
177 src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700178 src/core/lib/iomgr/tcp_server_windows.cc \
179 src/core/lib/iomgr/tcp_uv.cc \
180 src/core/lib/iomgr/tcp_windows.cc \
181 src/core/lib/iomgr/time_averaged_stats.cc \
kpayson64539f5062018-03-12 19:16:30 -0700182 src/core/lib/iomgr/timer.cc \
183 src/core/lib/iomgr/timer_custom.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700184 src/core/lib/iomgr/timer_generic.cc \
185 src/core/lib/iomgr/timer_heap.cc \
186 src/core/lib/iomgr/timer_manager.cc \
187 src/core/lib/iomgr/timer_uv.cc \
188 src/core/lib/iomgr/udp_server.cc \
189 src/core/lib/iomgr/unix_sockets_posix.cc \
190 src/core/lib/iomgr/unix_sockets_posix_noop.cc \
191 src/core/lib/iomgr/wakeup_fd_cv.cc \
192 src/core/lib/iomgr/wakeup_fd_eventfd.cc \
193 src/core/lib/iomgr/wakeup_fd_nospecial.cc \
194 src/core/lib/iomgr/wakeup_fd_pipe.cc \
195 src/core/lib/iomgr/wakeup_fd_posix.cc \
196 src/core/lib/json/json.cc \
197 src/core/lib/json/json_reader.cc \
198 src/core/lib/json/json_string.cc \
199 src/core/lib/json/json_writer.cc \
200 src/core/lib/slice/b64.cc \
201 src/core/lib/slice/percent_encoding.cc \
202 src/core/lib/slice/slice.cc \
203 src/core/lib/slice/slice_buffer.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700204 src/core/lib/slice/slice_intern.cc \
205 src/core/lib/slice/slice_string_helpers.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700206 src/core/lib/surface/api_trace.cc \
207 src/core/lib/surface/byte_buffer.cc \
208 src/core/lib/surface/byte_buffer_reader.cc \
209 src/core/lib/surface/call.cc \
210 src/core/lib/surface/call_details.cc \
211 src/core/lib/surface/call_log_batch.cc \
212 src/core/lib/surface/channel.cc \
213 src/core/lib/surface/channel_init.cc \
214 src/core/lib/surface/channel_ping.cc \
215 src/core/lib/surface/channel_stack_type.cc \
216 src/core/lib/surface/completion_queue.cc \
217 src/core/lib/surface/completion_queue_factory.cc \
218 src/core/lib/surface/event_string.cc \
Craig Tiller8ebb5442017-04-07 16:01:55 -0700219 src/core/lib/surface/lame_client.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700220 src/core/lib/surface/metadata_array.cc \
221 src/core/lib/surface/server.cc \
222 src/core/lib/surface/validate_metadata.cc \
223 src/core/lib/surface/version.cc \
224 src/core/lib/transport/bdp_estimator.cc \
225 src/core/lib/transport/byte_stream.cc \
226 src/core/lib/transport/connectivity_state.cc \
227 src/core/lib/transport/error_utils.cc \
228 src/core/lib/transport/metadata.cc \
229 src/core/lib/transport/metadata_batch.cc \
230 src/core/lib/transport/pid_controller.cc \
231 src/core/lib/transport/service_config.cc \
232 src/core/lib/transport/static_metadata.cc \
233 src/core/lib/transport/status_conversion.cc \
Mark D. Roth718c8342018-02-28 13:00:04 -0800234 src/core/lib/transport/status_metadata.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700235 src/core/lib/transport/timeout_encoding.cc \
236 src/core/lib/transport/transport.cc \
237 src/core/lib/transport/transport_op_string.cc \
238 src/core/lib/debug/trace.cc \
239 src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc \
240 src/core/ext/transport/chttp2/transport/bin_decoder.cc \
241 src/core/ext/transport/chttp2/transport/bin_encoder.cc \
242 src/core/ext/transport/chttp2/transport/chttp2_plugin.cc \
243 src/core/ext/transport/chttp2/transport/chttp2_transport.cc \
244 src/core/ext/transport/chttp2/transport/flow_control.cc \
245 src/core/ext/transport/chttp2/transport/frame_data.cc \
246 src/core/ext/transport/chttp2/transport/frame_goaway.cc \
247 src/core/ext/transport/chttp2/transport/frame_ping.cc \
248 src/core/ext/transport/chttp2/transport/frame_rst_stream.cc \
249 src/core/ext/transport/chttp2/transport/frame_settings.cc \
250 src/core/ext/transport/chttp2/transport/frame_window_update.cc \
251 src/core/ext/transport/chttp2/transport/hpack_encoder.cc \
Hope Casey-Allen327c5142018-09-19 13:47:29 -0700252 src/core/ext/transport/chttp2/transport/hpack_mapping.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700253 src/core/ext/transport/chttp2/transport/hpack_parser.cc \
254 src/core/ext/transport/chttp2/transport/hpack_table.cc \
255 src/core/ext/transport/chttp2/transport/http2_settings.cc \
256 src/core/ext/transport/chttp2/transport/huffsyms.cc \
257 src/core/ext/transport/chttp2/transport/incoming_metadata.cc \
258 src/core/ext/transport/chttp2/transport/parsing.cc \
259 src/core/ext/transport/chttp2/transport/stream_lists.cc \
260 src/core/ext/transport/chttp2/transport/stream_map.cc \
261 src/core/ext/transport/chttp2/transport/varint.cc \
262 src/core/ext/transport/chttp2/transport/writing.cc \
263 src/core/ext/transport/chttp2/alpn/alpn.cc \
264 src/core/ext/filters/http/client/http_client_filter.cc \
265 src/core/ext/filters/http/http_filters_plugin.cc \
266 src/core/ext/filters/http/message_compress/message_compress_filter.cc \
267 src/core/ext/filters/http/server/http_server_filter.cc \
268 src/core/lib/http/httpcli_security_connector.cc \
269 src/core/lib/security/context/security_context.cc \
Yihua Zhangeaf64862018-03-06 21:40:45 -0800270 src/core/lib/security/credentials/alts/alts_credentials.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700271 src/core/lib/security/credentials/composite/composite_credentials.cc \
272 src/core/lib/security/credentials/credentials.cc \
273 src/core/lib/security/credentials/credentials_metadata.cc \
274 src/core/lib/security/credentials/fake/fake_credentials.cc \
275 src/core/lib/security/credentials/google_default/credentials_generic.cc \
276 src/core/lib/security/credentials/google_default/google_default_credentials.cc \
277 src/core/lib/security/credentials/iam/iam_credentials.cc \
278 src/core/lib/security/credentials/jwt/json_token.cc \
279 src/core/lib/security/credentials/jwt/jwt_credentials.cc \
280 src/core/lib/security/credentials/jwt/jwt_verifier.cc \
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700281 src/core/lib/security/credentials/local/local_credentials.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700282 src/core/lib/security/credentials/oauth2/oauth2_credentials.cc \
283 src/core/lib/security/credentials/plugin/plugin_credentials.cc \
284 src/core/lib/security/credentials/ssl/ssl_credentials.cc \
Yihua Zhangeaf64862018-03-06 21:40:45 -0800285 src/core/lib/security/security_connector/alts_security_connector.cc \
tdbhacksbcd747d2018-07-20 16:41:44 -0700286 src/core/lib/security/security_connector/load_system_roots_fallback.cc \
287 src/core/lib/security/security_connector/load_system_roots_linux.cc \
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700288 src/core/lib/security/security_connector/local_security_connector.cc \
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800289 src/core/lib/security/security_connector/security_connector.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700290 src/core/lib/security/transport/client_auth_filter.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700291 src/core/lib/security/transport/secure_endpoint.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700292 src/core/lib/security/transport/security_handshaker.cc \
293 src/core/lib/security/transport/server_auth_filter.cc \
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800294 src/core/lib/security/transport/target_authority_table.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700295 src/core/lib/security/transport/tsi_error.cc \
296 src/core/lib/security/util/json_util.cc \
297 src/core/lib/surface/init_secure.cc \
Yihua Zhangeaf64862018-03-06 21:40:45 -0800298 src/core/tsi/alts/crypt/aes_gcm.cc \
299 src/core/tsi/alts/crypt/gsec.cc \
300 src/core/tsi/alts/frame_protector/alts_counter.cc \
301 src/core/tsi/alts/frame_protector/alts_crypter.cc \
302 src/core/tsi/alts/frame_protector/alts_frame_protector.cc \
303 src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc \
304 src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc \
305 src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc \
306 src/core/tsi/alts/frame_protector/frame_handler.cc \
307 src/core/tsi/alts/handshaker/alts_handshaker_client.cc \
308 src/core/tsi/alts/handshaker/alts_tsi_event.cc \
309 src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc \
310 src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc \
311 src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc \
312 src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc \
313 src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc \
314 src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc \
315 src/core/lib/security/credentials/alts/check_gcp_environment.cc \
316 src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc \
317 src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc \
318 src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc \
319 src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc \
320 src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc \
321 src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc \
322 src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc \
323 src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc \
324 src/core/tsi/alts/handshaker/alts_tsi_utils.cc \
325 src/core/tsi/alts/handshaker/transport_security_common_api.cc \
326 src/core/tsi/alts/handshaker/altscontext.pb.c \
327 src/core/tsi/alts/handshaker/handshaker.pb.c \
328 src/core/tsi/alts/handshaker/transport_security_common.pb.c \
329 third_party/nanopb/pb_common.c \
330 third_party/nanopb/pb_decode.c \
331 third_party/nanopb/pb_encode.c \
Yash Tibrewal83062842017-09-21 18:56:08 -0700332 src/core/tsi/transport_security.cc \
Yihua Zhangeaf64862018-03-06 21:40:45 -0800333 src/core/ext/transport/chttp2/client/insecure/channel_create.cc \
334 src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc \
David Garcia Quintas49f625f2018-03-27 11:23:49 -0700335 src/core/ext/transport/chttp2/client/authority.cc \
Yihua Zhangeaf64862018-03-06 21:40:45 -0800336 src/core/ext/transport/chttp2/client/chttp2_connector.cc \
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700337 src/core/ext/filters/client_channel/backup_poller.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700338 src/core/ext/filters/client_channel/channel_connectivity.cc \
339 src/core/ext/filters/client_channel/client_channel.cc \
ncteisenafb98292018-06-28 18:04:24 -0700340 src/core/ext/filters/client_channel/client_channel_channelz.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700341 src/core/ext/filters/client_channel/client_channel_factory.cc \
342 src/core/ext/filters/client_channel/client_channel_plugin.cc \
343 src/core/ext/filters/client_channel/connector.cc \
344 src/core/ext/filters/client_channel/http_connect_handshaker.cc \
345 src/core/ext/filters/client_channel/http_proxy.cc \
346 src/core/ext/filters/client_channel/lb_policy.cc \
347 src/core/ext/filters/client_channel/lb_policy_factory.cc \
348 src/core/ext/filters/client_channel/lb_policy_registry.cc \
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800349 src/core/ext/filters/client_channel/method_params.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700350 src/core/ext/filters/client_channel/parse_address.cc \
351 src/core/ext/filters/client_channel/proxy_mapper.cc \
352 src/core/ext/filters/client_channel/proxy_mapper_registry.cc \
353 src/core/ext/filters/client_channel/resolver.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700354 src/core/ext/filters/client_channel/resolver_registry.cc \
355 src/core/ext/filters/client_channel/retry_throttle.cc \
356 src/core/ext/filters/client_channel/subchannel.cc \
357 src/core/ext/filters/client_channel/subchannel_index.cc \
358 src/core/ext/filters/client_channel/uri_parser.cc \
359 src/core/ext/filters/deadline/deadline_filter.cc \
Yihua Zhangeaf64862018-03-06 21:40:45 -0800360 src/core/tsi/alts_transport_security.cc \
361 src/core/tsi/fake_transport_security.cc \
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700362 src/core/tsi/local_transport_security.cc \
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700363 src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc \
364 src/core/tsi/ssl/session_cache/ssl_session_cache.cc \
365 src/core/tsi/ssl/session_cache/ssl_session_openssl.cc \
Yihua Zhangeaf64862018-03-06 21:40:45 -0800366 src/core/tsi/ssl_transport_security.cc \
367 src/core/tsi/transport_security_grpc.cc \
368 src/core/ext/transport/chttp2/server/chttp2_server.cc \
369 src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700370 src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc \
371 src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700372 src/core/ext/transport/inproc/inproc_plugin.cc \
373 src/core/ext/transport/inproc/inproc_transport.cc \
374 src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc \
375 src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc \
376 src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc \
377 src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc \
378 src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc \
David Garcia Quintasf3955ba2018-06-21 15:15:10 -0700379 src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c \
380 src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c \
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700381 src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c \
Yash Tibrewal83062842017-09-21 18:56:08 -0700382 src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc \
383 src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc \
384 src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc \
385 src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc \
Alexander Polcyn7eda6192018-06-14 23:07:33 -0700386 src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700387 src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc \
Alexander Polcyn9896c642018-07-27 01:38:26 -0700388 src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700389 src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc \
390 src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc \
Alexander Polcyn9896c642018-07-27 01:38:26 -0700391 src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc \
392 src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700393 src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc \
394 src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc \
Vijay Pai381bcab2018-08-16 15:44:19 -0700395 src/core/ext/filters/census/grpc_context.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700396 src/core/ext/filters/max_age/max_age_filter.cc \
397 src/core/ext/filters/message_size/message_size_filter.cc \
David Garcia Quintas961353a2018-03-15 16:11:05 -0700398 src/core/ext/filters/http/client_authority_filter.cc \
Yash Tibrewal83062842017-09-21 18:56:08 -0700399 src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc \
400 src/core/ext/filters/workarounds/workaround_utils.cc \
Yash Tibrewal1c9b5842017-09-21 15:49:55 -0700401 src/core/plugin_registry/grpc_plugin_registry.cc \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800402 src/boringssl/err_data.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800403 third_party/boringssl/crypto/asn1/a_bitstr.c \
404 third_party/boringssl/crypto/asn1/a_bool.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800405 third_party/boringssl/crypto/asn1/a_d2i_fp.c \
406 third_party/boringssl/crypto/asn1/a_dup.c \
407 third_party/boringssl/crypto/asn1/a_enum.c \
408 third_party/boringssl/crypto/asn1/a_gentm.c \
409 third_party/boringssl/crypto/asn1/a_i2d_fp.c \
410 third_party/boringssl/crypto/asn1/a_int.c \
411 third_party/boringssl/crypto/asn1/a_mbstr.c \
412 third_party/boringssl/crypto/asn1/a_object.c \
413 third_party/boringssl/crypto/asn1/a_octet.c \
414 third_party/boringssl/crypto/asn1/a_print.c \
415 third_party/boringssl/crypto/asn1/a_strnid.c \
416 third_party/boringssl/crypto/asn1/a_time.c \
417 third_party/boringssl/crypto/asn1/a_type.c \
418 third_party/boringssl/crypto/asn1/a_utctm.c \
419 third_party/boringssl/crypto/asn1/a_utf8.c \
420 third_party/boringssl/crypto/asn1/asn1_lib.c \
421 third_party/boringssl/crypto/asn1/asn1_par.c \
422 third_party/boringssl/crypto/asn1/asn_pack.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800423 third_party/boringssl/crypto/asn1/f_enum.c \
424 third_party/boringssl/crypto/asn1/f_int.c \
425 third_party/boringssl/crypto/asn1/f_string.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800426 third_party/boringssl/crypto/asn1/tasn_dec.c \
427 third_party/boringssl/crypto/asn1/tasn_enc.c \
428 third_party/boringssl/crypto/asn1/tasn_fre.c \
429 third_party/boringssl/crypto/asn1/tasn_new.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800430 third_party/boringssl/crypto/asn1/tasn_typ.c \
431 third_party/boringssl/crypto/asn1/tasn_utl.c \
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700432 third_party/boringssl/crypto/asn1/time_support.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800433 third_party/boringssl/crypto/base64/base64.c \
434 third_party/boringssl/crypto/bio/bio.c \
435 third_party/boringssl/crypto/bio/bio_mem.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800436 third_party/boringssl/crypto/bio/connect.c \
437 third_party/boringssl/crypto/bio/fd.c \
438 third_party/boringssl/crypto/bio/file.c \
439 third_party/boringssl/crypto/bio/hexdump.c \
440 third_party/boringssl/crypto/bio/pair.c \
441 third_party/boringssl/crypto/bio/printf.c \
442 third_party/boringssl/crypto/bio/socket.c \
443 third_party/boringssl/crypto/bio/socket_helper.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700444 third_party/boringssl/crypto/bn_extra/bn_asn1.c \
445 third_party/boringssl/crypto/bn_extra/convert.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800446 third_party/boringssl/crypto/buf/buf.c \
itessier2a522032016-04-19 17:38:51 -0700447 third_party/boringssl/crypto/bytestring/asn1_compat.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800448 third_party/boringssl/crypto/bytestring/ber.c \
449 third_party/boringssl/crypto/bytestring/cbb.c \
450 third_party/boringssl/crypto/bytestring/cbs.c \
Stanley Cheungb39942f2017-01-12 21:31:07 -0800451 third_party/boringssl/crypto/chacha/chacha.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700452 third_party/boringssl/crypto/cipher_extra/cipher_extra.c \
453 third_party/boringssl/crypto/cipher_extra/derive_key.c \
Jan Tattermusch272cdca2018-05-21 20:01:20 +0200454 third_party/boringssl/crypto/cipher_extra/e_aesccm.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700455 third_party/boringssl/crypto/cipher_extra/e_aesctrhmac.c \
456 third_party/boringssl/crypto/cipher_extra/e_aesgcmsiv.c \
457 third_party/boringssl/crypto/cipher_extra/e_chacha20poly1305.c \
458 third_party/boringssl/crypto/cipher_extra/e_null.c \
459 third_party/boringssl/crypto/cipher_extra/e_rc2.c \
460 third_party/boringssl/crypto/cipher_extra/e_rc4.c \
461 third_party/boringssl/crypto/cipher_extra/e_ssl3.c \
462 third_party/boringssl/crypto/cipher_extra/e_tls.c \
463 third_party/boringssl/crypto/cipher_extra/tls_cbc.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800464 third_party/boringssl/crypto/cmac/cmac.c \
465 third_party/boringssl/crypto/conf/conf.c \
Jan Tattermusch272cdca2018-05-21 20:01:20 +0200466 third_party/boringssl/crypto/cpu-aarch64-fuchsia.c \
Stanley Cheungb39942f2017-01-12 21:31:07 -0800467 third_party/boringssl/crypto/cpu-aarch64-linux.c \
468 third_party/boringssl/crypto/cpu-arm-linux.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800469 third_party/boringssl/crypto/cpu-arm.c \
470 third_party/boringssl/crypto/cpu-intel.c \
Stanley Cheungb39942f2017-01-12 21:31:07 -0800471 third_party/boringssl/crypto/cpu-ppc64le.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800472 third_party/boringssl/crypto/crypto.c \
Stanley Cheungb39942f2017-01-12 21:31:07 -0800473 third_party/boringssl/crypto/curve25519/spake25519.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800474 third_party/boringssl/crypto/dh/check.c \
475 third_party/boringssl/crypto/dh/dh.c \
476 third_party/boringssl/crypto/dh/dh_asn1.c \
477 third_party/boringssl/crypto/dh/params.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700478 third_party/boringssl/crypto/digest_extra/digest_extra.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800479 third_party/boringssl/crypto/dsa/dsa.c \
480 third_party/boringssl/crypto/dsa/dsa_asn1.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700481 third_party/boringssl/crypto/ec_extra/ec_asn1.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800482 third_party/boringssl/crypto/ecdh/ecdh.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700483 third_party/boringssl/crypto/ecdsa_extra/ecdsa_asn1.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800484 third_party/boringssl/crypto/engine/engine.c \
485 third_party/boringssl/crypto/err/err.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800486 third_party/boringssl/crypto/evp/digestsign.c \
487 third_party/boringssl/crypto/evp/evp.c \
488 third_party/boringssl/crypto/evp/evp_asn1.c \
489 third_party/boringssl/crypto/evp/evp_ctx.c \
490 third_party/boringssl/crypto/evp/p_dsa_asn1.c \
491 third_party/boringssl/crypto/evp/p_ec.c \
492 third_party/boringssl/crypto/evp/p_ec_asn1.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700493 third_party/boringssl/crypto/evp/p_ed25519.c \
494 third_party/boringssl/crypto/evp/p_ed25519_asn1.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800495 third_party/boringssl/crypto/evp/p_rsa.c \
496 third_party/boringssl/crypto/evp/p_rsa_asn1.c \
497 third_party/boringssl/crypto/evp/pbkdf.c \
Stanley Cheungb39942f2017-01-12 21:31:07 -0800498 third_party/boringssl/crypto/evp/print.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700499 third_party/boringssl/crypto/evp/scrypt.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800500 third_party/boringssl/crypto/evp/sign.c \
501 third_party/boringssl/crypto/ex_data.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700502 third_party/boringssl/crypto/fipsmodule/bcm.c \
503 third_party/boringssl/crypto/fipsmodule/is_fips.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800504 third_party/boringssl/crypto/hkdf/hkdf.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800505 third_party/boringssl/crypto/lhash/lhash.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800506 third_party/boringssl/crypto/mem.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800507 third_party/boringssl/crypto/obj/obj.c \
508 third_party/boringssl/crypto/obj/obj_xref.c \
509 third_party/boringssl/crypto/pem/pem_all.c \
510 third_party/boringssl/crypto/pem/pem_info.c \
511 third_party/boringssl/crypto/pem/pem_lib.c \
512 third_party/boringssl/crypto/pem/pem_oth.c \
513 third_party/boringssl/crypto/pem/pem_pk8.c \
514 third_party/boringssl/crypto/pem/pem_pkey.c \
515 third_party/boringssl/crypto/pem/pem_x509.c \
516 third_party/boringssl/crypto/pem/pem_xaux.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700517 third_party/boringssl/crypto/pkcs7/pkcs7.c \
518 third_party/boringssl/crypto/pkcs7/pkcs7_x509.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800519 third_party/boringssl/crypto/pkcs8/p5_pbev2.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800520 third_party/boringssl/crypto/pkcs8/pkcs8.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700521 third_party/boringssl/crypto/pkcs8/pkcs8_x509.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800522 third_party/boringssl/crypto/poly1305/poly1305.c \
523 third_party/boringssl/crypto/poly1305/poly1305_arm.c \
524 third_party/boringssl/crypto/poly1305/poly1305_vec.c \
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700525 third_party/boringssl/crypto/pool/pool.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700526 third_party/boringssl/crypto/rand_extra/deterministic.c \
527 third_party/boringssl/crypto/rand_extra/forkunsafe.c \
528 third_party/boringssl/crypto/rand_extra/fuchsia.c \
529 third_party/boringssl/crypto/rand_extra/rand_extra.c \
530 third_party/boringssl/crypto/rand_extra/windows.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800531 third_party/boringssl/crypto/rc4/rc4.c \
532 third_party/boringssl/crypto/refcount_c11.c \
533 third_party/boringssl/crypto/refcount_lock.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700534 third_party/boringssl/crypto/rsa_extra/rsa_asn1.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800535 third_party/boringssl/crypto/stack/stack.c \
536 third_party/boringssl/crypto/thread.c \
537 third_party/boringssl/crypto/thread_none.c \
538 third_party/boringssl/crypto/thread_pthread.c \
539 third_party/boringssl/crypto/thread_win.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800540 third_party/boringssl/crypto/x509/a_digest.c \
541 third_party/boringssl/crypto/x509/a_sign.c \
542 third_party/boringssl/crypto/x509/a_strex.c \
543 third_party/boringssl/crypto/x509/a_verify.c \
Stanley Cheungb39942f2017-01-12 21:31:07 -0800544 third_party/boringssl/crypto/x509/algorithm.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800545 third_party/boringssl/crypto/x509/asn1_gen.c \
546 third_party/boringssl/crypto/x509/by_dir.c \
547 third_party/boringssl/crypto/x509/by_file.c \
548 third_party/boringssl/crypto/x509/i2d_pr.c \
Stanley Cheungb39942f2017-01-12 21:31:07 -0800549 third_party/boringssl/crypto/x509/rsa_pss.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800550 third_party/boringssl/crypto/x509/t_crl.c \
551 third_party/boringssl/crypto/x509/t_req.c \
552 third_party/boringssl/crypto/x509/t_x509.c \
553 third_party/boringssl/crypto/x509/t_x509a.c \
554 third_party/boringssl/crypto/x509/x509.c \
555 third_party/boringssl/crypto/x509/x509_att.c \
556 third_party/boringssl/crypto/x509/x509_cmp.c \
557 third_party/boringssl/crypto/x509/x509_d2.c \
558 third_party/boringssl/crypto/x509/x509_def.c \
559 third_party/boringssl/crypto/x509/x509_ext.c \
560 third_party/boringssl/crypto/x509/x509_lu.c \
561 third_party/boringssl/crypto/x509/x509_obj.c \
562 third_party/boringssl/crypto/x509/x509_r2x.c \
563 third_party/boringssl/crypto/x509/x509_req.c \
564 third_party/boringssl/crypto/x509/x509_set.c \
565 third_party/boringssl/crypto/x509/x509_trs.c \
566 third_party/boringssl/crypto/x509/x509_txt.c \
567 third_party/boringssl/crypto/x509/x509_v3.c \
568 third_party/boringssl/crypto/x509/x509_vfy.c \
569 third_party/boringssl/crypto/x509/x509_vpm.c \
570 third_party/boringssl/crypto/x509/x509cset.c \
571 third_party/boringssl/crypto/x509/x509name.c \
572 third_party/boringssl/crypto/x509/x509rset.c \
573 third_party/boringssl/crypto/x509/x509spki.c \
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800574 third_party/boringssl/crypto/x509/x_algor.c \
575 third_party/boringssl/crypto/x509/x_all.c \
576 third_party/boringssl/crypto/x509/x_attrib.c \
577 third_party/boringssl/crypto/x509/x_crl.c \
578 third_party/boringssl/crypto/x509/x_exten.c \
579 third_party/boringssl/crypto/x509/x_info.c \
580 third_party/boringssl/crypto/x509/x_name.c \
581 third_party/boringssl/crypto/x509/x_pkey.c \
582 third_party/boringssl/crypto/x509/x_pubkey.c \
583 third_party/boringssl/crypto/x509/x_req.c \
584 third_party/boringssl/crypto/x509/x_sig.c \
585 third_party/boringssl/crypto/x509/x_spki.c \
586 third_party/boringssl/crypto/x509/x_val.c \
587 third_party/boringssl/crypto/x509/x_x509.c \
588 third_party/boringssl/crypto/x509/x_x509a.c \
589 third_party/boringssl/crypto/x509v3/pcy_cache.c \
590 third_party/boringssl/crypto/x509v3/pcy_data.c \
591 third_party/boringssl/crypto/x509v3/pcy_lib.c \
592 third_party/boringssl/crypto/x509v3/pcy_map.c \
593 third_party/boringssl/crypto/x509v3/pcy_node.c \
594 third_party/boringssl/crypto/x509v3/pcy_tree.c \
595 third_party/boringssl/crypto/x509v3/v3_akey.c \
596 third_party/boringssl/crypto/x509v3/v3_akeya.c \
597 third_party/boringssl/crypto/x509v3/v3_alt.c \
598 third_party/boringssl/crypto/x509v3/v3_bcons.c \
599 third_party/boringssl/crypto/x509v3/v3_bitst.c \
600 third_party/boringssl/crypto/x509v3/v3_conf.c \
601 third_party/boringssl/crypto/x509v3/v3_cpols.c \
602 third_party/boringssl/crypto/x509v3/v3_crld.c \
603 third_party/boringssl/crypto/x509v3/v3_enum.c \
604 third_party/boringssl/crypto/x509v3/v3_extku.c \
605 third_party/boringssl/crypto/x509v3/v3_genn.c \
606 third_party/boringssl/crypto/x509v3/v3_ia5.c \
607 third_party/boringssl/crypto/x509v3/v3_info.c \
608 third_party/boringssl/crypto/x509v3/v3_int.c \
609 third_party/boringssl/crypto/x509v3/v3_lib.c \
610 third_party/boringssl/crypto/x509v3/v3_ncons.c \
611 third_party/boringssl/crypto/x509v3/v3_pci.c \
612 third_party/boringssl/crypto/x509v3/v3_pcia.c \
613 third_party/boringssl/crypto/x509v3/v3_pcons.c \
614 third_party/boringssl/crypto/x509v3/v3_pku.c \
615 third_party/boringssl/crypto/x509v3/v3_pmaps.c \
616 third_party/boringssl/crypto/x509v3/v3_prn.c \
617 third_party/boringssl/crypto/x509v3/v3_purp.c \
618 third_party/boringssl/crypto/x509v3/v3_skey.c \
619 third_party/boringssl/crypto/x509v3/v3_sxnet.c \
620 third_party/boringssl/crypto/x509v3/v3_utl.c \
Matt Kwonga110c742017-09-22 14:31:22 -0700621 third_party/boringssl/ssl/bio_ssl.cc \
622 third_party/boringssl/ssl/custom_extensions.cc \
623 third_party/boringssl/ssl/d1_both.cc \
624 third_party/boringssl/ssl/d1_lib.cc \
625 third_party/boringssl/ssl/d1_pkt.cc \
626 third_party/boringssl/ssl/d1_srtp.cc \
627 third_party/boringssl/ssl/dtls_method.cc \
628 third_party/boringssl/ssl/dtls_record.cc \
Jan Tattermusch272cdca2018-05-21 20:01:20 +0200629 third_party/boringssl/ssl/handoff.cc \
Matt Kwonga110c742017-09-22 14:31:22 -0700630 third_party/boringssl/ssl/handshake.cc \
631 third_party/boringssl/ssl/handshake_client.cc \
632 third_party/boringssl/ssl/handshake_server.cc \
633 third_party/boringssl/ssl/s3_both.cc \
634 third_party/boringssl/ssl/s3_lib.cc \
635 third_party/boringssl/ssl/s3_pkt.cc \
636 third_party/boringssl/ssl/ssl_aead_ctx.cc \
637 third_party/boringssl/ssl/ssl_asn1.cc \
638 third_party/boringssl/ssl/ssl_buffer.cc \
639 third_party/boringssl/ssl/ssl_cert.cc \
640 third_party/boringssl/ssl/ssl_cipher.cc \
641 third_party/boringssl/ssl/ssl_file.cc \
642 third_party/boringssl/ssl/ssl_key_share.cc \
643 third_party/boringssl/ssl/ssl_lib.cc \
644 third_party/boringssl/ssl/ssl_privkey.cc \
645 third_party/boringssl/ssl/ssl_session.cc \
646 third_party/boringssl/ssl/ssl_stat.cc \
647 third_party/boringssl/ssl/ssl_transcript.cc \
648 third_party/boringssl/ssl/ssl_versions.cc \
649 third_party/boringssl/ssl/ssl_x509.cc \
650 third_party/boringssl/ssl/t1_enc.cc \
651 third_party/boringssl/ssl/t1_lib.cc \
652 third_party/boringssl/ssl/tls13_both.cc \
653 third_party/boringssl/ssl/tls13_client.cc \
654 third_party/boringssl/ssl/tls13_enc.cc \
655 third_party/boringssl/ssl/tls13_server.cc \
656 third_party/boringssl/ssl/tls_method.cc \
657 third_party/boringssl/ssl/tls_record.cc \
Jan Tattermuschd606e362018-03-07 21:21:38 +0100658 third_party/boringssl/third_party/fiat/curve25519.c \
Stanley Cheung94d75882017-05-17 14:58:02 -0700659 , $ext_shared, , -fvisibility=hidden \
660 -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN \
Stanley Cheung19792102017-05-02 11:24:03 -0700661 -D_HAS_EXCEPTIONS=0 -DNOMINMAX -DGRPC_ARES=0)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800662
663 PHP_ADD_BUILD_DIR($ext_builddir/src/php/ext/grpc)
664
665 PHP_ADD_BUILD_DIR($ext_builddir/src/boringssl)
Vijay Pai381bcab2018-08-16 15:44:19 -0700666 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/census)
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700667 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel)
668 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/lb_policy/grpclb)
669 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1)
David Garcia Quintasf3955ba2018-06-21 15:15:10 -0700670 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf)
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700671 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/lb_policy/pick_first)
672 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/lb_policy/round_robin)
673 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/resolver/dns/c_ares)
674 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/resolver/dns/native)
David Garcia Quintas87d5a312017-06-06 19:45:58 -0700675 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/resolver/fake)
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700676 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/resolver/sockaddr)
Craig Tiller3be7dd02017-04-03 14:30:03 -0700677 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/deadline)
Craig Tilleraf767432017-04-03 13:54:31 -0700678 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/http)
679 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/http/client)
Craig Tiller71d6ce62017-04-06 09:10:09 -0700680 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/http/message_compress)
Craig Tilleraf767432017-04-03 13:54:31 -0700681 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/http/server)
Craig Tiller6d4894e2017-03-31 17:22:06 -0700682 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/max_age)
Craig Tiller9b3648a2017-04-03 12:25:19 -0700683 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/message_size)
Muxi Yan29ff4662017-05-15 10:27:55 -0700684 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/workarounds)
Craig Tillerf82ddc42016-04-05 17:15:07 -0700685 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/alpn)
Mark D. Roth8686cab2016-11-17 13:12:17 -0800686 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/client)
Craig Tillerc7762a82016-03-28 10:13:08 -0700687 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/client/insecure)
688 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/client/secure)
Mark D. Roth71403822016-12-02 10:51:39 -0800689 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/server)
Craig Tillerc7762a82016-03-28 10:13:08 -0700690 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/server/insecure)
691 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/server/secure)
692 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/transport)
Vijay Pai3d7d5f42017-05-04 10:02:24 -0700693 PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/inproc)
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800694 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/avl)
Craig Tillerc0df1c02017-07-17 16:12:33 -0700695 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/backoff)
Craig Tillerf23078c2016-03-25 17:07:29 -0700696 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/channel)
Craig Tillerf23078c2016-03-25 17:07:29 -0700697 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/compression)
698 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/debug)
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800699 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/gpr)
Vijay Paida693552018-02-16 22:59:03 -0800700 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/gprpp)
Craig Tillerf23078c2016-03-25 17:07:29 -0700701 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/http)
702 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/iomgr)
703 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/json)
704 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/profiling)
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700705 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/context)
706 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials)
Yihua Zhangeaf64862018-03-06 21:40:45 -0800707 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/alts)
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700708 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/composite)
709 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/fake)
710 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/google_default)
711 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/iam)
712 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/jwt)
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700713 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/local)
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700714 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/oauth2)
715 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/plugin)
716 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/ssl)
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800717 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/security_connector)
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700718 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/transport)
719 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/util)
Craig Tillerc3350542016-10-26 16:19:01 -0700720 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/slice)
Craig Tillerf23078c2016-03-25 17:07:29 -0700721 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/surface)
722 PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/transport)
Craig Tillerfb433852016-03-29 08:51:07 -0700723 PHP_ADD_BUILD_DIR($ext_builddir/src/core/plugin_registry)
Craig Tiller134fed32017-03-28 14:27:18 -0700724 PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi)
Yihua Zhangeaf64862018-03-06 21:40:45 -0800725 PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi/alts/crypt)
726 PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi/alts/frame_protector)
727 PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi/alts/handshaker)
728 PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi/alts/zero_copy_frame_protector)
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700729 PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi/ssl/session_cache)
Alexander Polcyn690dde62017-10-18 00:20:33 -0700730 PHP_ADD_BUILD_DIR($ext_builddir/third_party/address_sorting)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800731 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800732 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/asn1)
733 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/base64)
734 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/bio)
Matt Kwonga110c742017-09-22 14:31:22 -0700735 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/bn_extra)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800736 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/buf)
737 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/bytestring)
738 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/chacha)
Matt Kwonga110c742017-09-22 14:31:22 -0700739 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/cipher_extra)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800740 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/cmac)
741 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/conf)
742 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/curve25519)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800743 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/dh)
Matt Kwonga110c742017-09-22 14:31:22 -0700744 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/digest_extra)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800745 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/dsa)
Matt Kwonga110c742017-09-22 14:31:22 -0700746 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/ec_extra)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800747 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/ecdh)
Matt Kwonga110c742017-09-22 14:31:22 -0700748 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/ecdsa_extra)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800749 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/engine)
750 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/err)
751 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/evp)
Matt Kwonga110c742017-09-22 14:31:22 -0700752 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/fipsmodule)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800753 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/hkdf)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800754 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/lhash)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800755 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/obj)
756 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/pem)
Matt Kwonga110c742017-09-22 14:31:22 -0700757 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/pkcs7)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800758 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/pkcs8)
759 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/poly1305)
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700760 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/pool)
Matt Kwonga110c742017-09-22 14:31:22 -0700761 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rand_extra)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800762 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rc4)
Matt Kwonga110c742017-09-22 14:31:22 -0700763 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rsa_extra)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800764 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/stack)
765 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/x509)
766 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/x509v3)
767 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/ssl)
Jan Tattermuschd606e362018-03-07 21:21:38 +0100768 PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/third_party/fiat)
Stanley Cheung80db5be2016-02-24 21:35:56 -0800769 PHP_ADD_BUILD_DIR($ext_builddir/third_party/nanopb)
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800770fi