Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 1 | PHP_ARG_ENABLE(grpc, whether to enable grpc support, |
| 2 | [ --enable-grpc Enable grpc support]) |
| 3 | |
| 4 | if test "$PHP_GRPC" != "no"; then |
| 5 | dnl Write more examples of tests here... |
| 6 | |
| 7 | dnl # --with-grpc -> add include path |
Stanley Cheung | 90cd278 | 2017-01-11 21:38:33 -0800 | [diff] [blame] | 8 | 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) |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 11 | |
Stanley Cheung | bf74d69 | 2016-02-23 22:39:25 -0800 | [diff] [blame] | 12 | LIBS="-lpthread $LIBS" |
| 13 | |
Stanley Cheung | 94d7588 | 2017-05-17 14:58:02 -0700 | [diff] [blame] | 14 | CFLAGS="-Wall -Werror -Wno-parentheses-equality -Wno-unused-value -std=c11" |
Stanley Cheung | 1ebe1e8 | 2017-08-30 14:52:57 -0700 | [diff] [blame] | 15 | CXXFLAGS="-std=c++11 -fno-exceptions -fno-rtti" |
Stanley Cheung | bf74d69 | 2016-02-23 22:39:25 -0800 | [diff] [blame] | 16 | GRPC_SHARED_LIBADD="-lpthread $GRPC_SHARED_LIBADD" |
Stanley Cheung | 94d7588 | 2017-05-17 14:58:02 -0700 | [diff] [blame] | 17 | PHP_REQUIRE_CXX() |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 18 | PHP_ADD_LIBRARY(pthread) |
Stanley Cheung | bf74d69 | 2016-02-23 22:39:25 -0800 | [diff] [blame] | 19 | PHP_ADD_LIBRARY(dl,,GRPC_SHARED_LIBADD) |
| 20 | PHP_ADD_LIBRARY(dl) |
| 21 | |
| 22 | case $host in |
Stanley Cheung | 5ec52ae | 2017-04-14 15:07:28 -0700 | [diff] [blame] | 23 | *darwin*) |
Stanley Cheung | 5ec52ae | 2017-04-14 15:07:28 -0700 | [diff] [blame] | 24 | ;; |
Stanley Cheung | bf74d69 | 2016-02-23 22:39:25 -0800 | [diff] [blame] | 25 | *) |
| 26 | PHP_ADD_LIBRARY(rt,,GRPC_SHARED_LIBADD) |
| 27 | PHP_ADD_LIBRARY(rt) |
| 28 | ;; |
| 29 | esac |
| 30 | |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 31 | PHP_NEW_EXTENSION(grpc, |
| 32 | src/php/ext/grpc/byte_buffer.c \ |
| 33 | src/php/ext/grpc/call.c \ |
| 34 | src/php/ext/grpc/call_credentials.c \ |
| 35 | src/php/ext/grpc/channel.c \ |
| 36 | src/php/ext/grpc/channel_credentials.c \ |
| 37 | src/php/ext/grpc/completion_queue.c \ |
| 38 | src/php/ext/grpc/php_grpc.c \ |
| 39 | src/php/ext/grpc/server.c \ |
| 40 | src/php/ext/grpc/server_credentials.c \ |
| 41 | src/php/ext/grpc/timeval.c \ |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 42 | src/core/lib/gpr/alloc.cc \ |
| 43 | src/core/lib/gpr/arena.cc \ |
| 44 | src/core/lib/gpr/atm.cc \ |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 45 | src/core/lib/gpr/cpu_iphone.cc \ |
| 46 | src/core/lib/gpr/cpu_linux.cc \ |
| 47 | src/core/lib/gpr/cpu_posix.cc \ |
| 48 | src/core/lib/gpr/cpu_windows.cc \ |
| 49 | src/core/lib/gpr/env_linux.cc \ |
| 50 | src/core/lib/gpr/env_posix.cc \ |
| 51 | src/core/lib/gpr/env_windows.cc \ |
| 52 | src/core/lib/gpr/fork.cc \ |
| 53 | src/core/lib/gpr/host_port.cc \ |
| 54 | src/core/lib/gpr/log.cc \ |
| 55 | src/core/lib/gpr/log_android.cc \ |
| 56 | src/core/lib/gpr/log_linux.cc \ |
| 57 | src/core/lib/gpr/log_posix.cc \ |
| 58 | src/core/lib/gpr/log_windows.cc \ |
| 59 | src/core/lib/gpr/mpscq.cc \ |
| 60 | src/core/lib/gpr/murmur_hash.cc \ |
| 61 | src/core/lib/gpr/string.cc \ |
| 62 | src/core/lib/gpr/string_posix.cc \ |
| 63 | src/core/lib/gpr/string_util_windows.cc \ |
| 64 | src/core/lib/gpr/string_windows.cc \ |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 65 | src/core/lib/gpr/sync.cc \ |
| 66 | src/core/lib/gpr/sync_posix.cc \ |
| 67 | src/core/lib/gpr/sync_windows.cc \ |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 68 | src/core/lib/gpr/time.cc \ |
| 69 | src/core/lib/gpr/time_posix.cc \ |
| 70 | src/core/lib/gpr/time_precise.cc \ |
| 71 | src/core/lib/gpr/time_windows.cc \ |
| 72 | src/core/lib/gpr/tls_pthread.cc \ |
| 73 | src/core/lib/gpr/tmpfile_msys.cc \ |
| 74 | src/core/lib/gpr/tmpfile_posix.cc \ |
| 75 | src/core/lib/gpr/tmpfile_windows.cc \ |
| 76 | src/core/lib/gpr/wrap_memcpy.cc \ |
Vijay Pai | da69355 | 2018-02-16 22:59:03 -0800 | [diff] [blame] | 77 | src/core/lib/gprpp/thd_posix.cc \ |
| 78 | src/core/lib/gprpp/thd_windows.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 79 | src/core/lib/profiling/basic_timers.cc \ |
| 80 | src/core/lib/profiling/stap_timers.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 81 | src/core/lib/surface/init.cc \ |
Vijay Pai | 8f4fbb1 | 2018-02-08 10:04:08 -0800 | [diff] [blame] | 82 | src/core/lib/avl/avl.cc \ |
Craig Tiller | d48bd07 | 2017-10-06 11:25:14 -0700 | [diff] [blame] | 83 | src/core/lib/backoff/backoff.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 84 | src/core/lib/channel/channel_args.cc \ |
| 85 | src/core/lib/channel/channel_stack.cc \ |
| 86 | src/core/lib/channel/channel_stack_builder.cc \ |
| 87 | src/core/lib/channel/connected_channel.cc \ |
| 88 | src/core/lib/channel/handshaker.cc \ |
| 89 | src/core/lib/channel/handshaker_factory.cc \ |
| 90 | src/core/lib/channel/handshaker_registry.cc \ |
| 91 | src/core/lib/compression/compression.cc \ |
Muxi Yan | 03fc857 | 2017-10-06 18:47:09 -0700 | [diff] [blame] | 92 | src/core/lib/compression/compression_internal.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 93 | src/core/lib/compression/message_compress.cc \ |
| 94 | src/core/lib/compression/stream_compression.cc \ |
Yash Tibrewal | bc460fa | 2017-10-02 17:42:41 -0700 | [diff] [blame] | 95 | src/core/lib/compression/stream_compression_gzip.cc \ |
| 96 | src/core/lib/compression/stream_compression_identity.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 97 | src/core/lib/debug/stats.cc \ |
| 98 | src/core/lib/debug/stats_data.cc \ |
| 99 | src/core/lib/http/format_request.cc \ |
| 100 | src/core/lib/http/httpcli.cc \ |
| 101 | src/core/lib/http/parser.cc \ |
| 102 | src/core/lib/iomgr/call_combiner.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 103 | src/core/lib/iomgr/combiner.cc \ |
| 104 | src/core/lib/iomgr/endpoint.cc \ |
| 105 | src/core/lib/iomgr/endpoint_pair_posix.cc \ |
| 106 | src/core/lib/iomgr/endpoint_pair_uv.cc \ |
| 107 | src/core/lib/iomgr/endpoint_pair_windows.cc \ |
| 108 | src/core/lib/iomgr/error.cc \ |
| 109 | src/core/lib/iomgr/ev_epoll1_linux.cc \ |
| 110 | src/core/lib/iomgr/ev_epollex_linux.cc \ |
| 111 | src/core/lib/iomgr/ev_epollsig_linux.cc \ |
| 112 | src/core/lib/iomgr/ev_poll_posix.cc \ |
| 113 | src/core/lib/iomgr/ev_posix.cc \ |
| 114 | src/core/lib/iomgr/ev_windows.cc \ |
| 115 | src/core/lib/iomgr/exec_ctx.cc \ |
| 116 | src/core/lib/iomgr/executor.cc \ |
Nicolas "Pixel" Noble | 18a6837 | 2017-11-20 23:33:22 +0100 | [diff] [blame] | 117 | src/core/lib/iomgr/fork_posix.cc \ |
| 118 | src/core/lib/iomgr/fork_windows.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 119 | src/core/lib/iomgr/gethostname_fallback.cc \ |
| 120 | src/core/lib/iomgr/gethostname_host_name_max.cc \ |
| 121 | src/core/lib/iomgr/gethostname_sysconf.cc \ |
| 122 | src/core/lib/iomgr/iocp_windows.cc \ |
| 123 | src/core/lib/iomgr/iomgr.cc \ |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 124 | src/core/lib/iomgr/iomgr_custom.cc \ |
| 125 | src/core/lib/iomgr/iomgr_internal.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 126 | src/core/lib/iomgr/iomgr_posix.cc \ |
| 127 | src/core/lib/iomgr/iomgr_uv.cc \ |
| 128 | src/core/lib/iomgr/iomgr_windows.cc \ |
| 129 | src/core/lib/iomgr/is_epollexclusive_available.cc \ |
| 130 | src/core/lib/iomgr/load_file.cc \ |
| 131 | src/core/lib/iomgr/lockfree_event.cc \ |
| 132 | src/core/lib/iomgr/network_status_tracker.cc \ |
| 133 | src/core/lib/iomgr/polling_entity.cc \ |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 134 | src/core/lib/iomgr/pollset.cc \ |
| 135 | src/core/lib/iomgr/pollset_custom.cc \ |
| 136 | src/core/lib/iomgr/pollset_set.cc \ |
| 137 | src/core/lib/iomgr/pollset_set_custom.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 138 | src/core/lib/iomgr/pollset_set_windows.cc \ |
| 139 | src/core/lib/iomgr/pollset_uv.cc \ |
| 140 | src/core/lib/iomgr/pollset_windows.cc \ |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 141 | src/core/lib/iomgr/resolve_address.cc \ |
| 142 | src/core/lib/iomgr/resolve_address_custom.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 143 | src/core/lib/iomgr/resolve_address_posix.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 144 | src/core/lib/iomgr/resolve_address_windows.cc \ |
| 145 | src/core/lib/iomgr/resource_quota.cc \ |
| 146 | src/core/lib/iomgr/sockaddr_utils.cc \ |
| 147 | src/core/lib/iomgr/socket_factory_posix.cc \ |
| 148 | src/core/lib/iomgr/socket_mutator.cc \ |
| 149 | src/core/lib/iomgr/socket_utils_common_posix.cc \ |
| 150 | src/core/lib/iomgr/socket_utils_linux.cc \ |
| 151 | src/core/lib/iomgr/socket_utils_posix.cc \ |
| 152 | src/core/lib/iomgr/socket_utils_uv.cc \ |
Yash Tibrewal | 26c7803 | 2017-09-28 14:34:43 -0700 | [diff] [blame] | 153 | src/core/lib/iomgr/socket_utils_windows.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 154 | src/core/lib/iomgr/socket_windows.cc \ |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 155 | src/core/lib/iomgr/tcp_client.cc \ |
| 156 | src/core/lib/iomgr/tcp_client_custom.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 157 | src/core/lib/iomgr/tcp_client_posix.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 158 | src/core/lib/iomgr/tcp_client_windows.cc \ |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 159 | src/core/lib/iomgr/tcp_custom.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 160 | src/core/lib/iomgr/tcp_posix.cc \ |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 161 | src/core/lib/iomgr/tcp_server.cc \ |
| 162 | src/core/lib/iomgr/tcp_server_custom.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 163 | src/core/lib/iomgr/tcp_server_posix.cc \ |
| 164 | src/core/lib/iomgr/tcp_server_utils_posix_common.cc \ |
| 165 | src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc \ |
| 166 | src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 167 | src/core/lib/iomgr/tcp_server_windows.cc \ |
| 168 | src/core/lib/iomgr/tcp_uv.cc \ |
| 169 | src/core/lib/iomgr/tcp_windows.cc \ |
| 170 | src/core/lib/iomgr/time_averaged_stats.cc \ |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 171 | src/core/lib/iomgr/timer.cc \ |
| 172 | src/core/lib/iomgr/timer_custom.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 173 | src/core/lib/iomgr/timer_generic.cc \ |
| 174 | src/core/lib/iomgr/timer_heap.cc \ |
| 175 | src/core/lib/iomgr/timer_manager.cc \ |
| 176 | src/core/lib/iomgr/timer_uv.cc \ |
| 177 | src/core/lib/iomgr/udp_server.cc \ |
| 178 | src/core/lib/iomgr/unix_sockets_posix.cc \ |
| 179 | src/core/lib/iomgr/unix_sockets_posix_noop.cc \ |
| 180 | src/core/lib/iomgr/wakeup_fd_cv.cc \ |
| 181 | src/core/lib/iomgr/wakeup_fd_eventfd.cc \ |
| 182 | src/core/lib/iomgr/wakeup_fd_nospecial.cc \ |
| 183 | src/core/lib/iomgr/wakeup_fd_pipe.cc \ |
| 184 | src/core/lib/iomgr/wakeup_fd_posix.cc \ |
| 185 | src/core/lib/json/json.cc \ |
| 186 | src/core/lib/json/json_reader.cc \ |
| 187 | src/core/lib/json/json_string.cc \ |
| 188 | src/core/lib/json/json_writer.cc \ |
| 189 | src/core/lib/slice/b64.cc \ |
| 190 | src/core/lib/slice/percent_encoding.cc \ |
| 191 | src/core/lib/slice/slice.cc \ |
| 192 | src/core/lib/slice/slice_buffer.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 193 | src/core/lib/slice/slice_intern.cc \ |
| 194 | src/core/lib/slice/slice_string_helpers.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 195 | src/core/lib/surface/api_trace.cc \ |
| 196 | src/core/lib/surface/byte_buffer.cc \ |
| 197 | src/core/lib/surface/byte_buffer_reader.cc \ |
| 198 | src/core/lib/surface/call.cc \ |
| 199 | src/core/lib/surface/call_details.cc \ |
| 200 | src/core/lib/surface/call_log_batch.cc \ |
| 201 | src/core/lib/surface/channel.cc \ |
| 202 | src/core/lib/surface/channel_init.cc \ |
| 203 | src/core/lib/surface/channel_ping.cc \ |
| 204 | src/core/lib/surface/channel_stack_type.cc \ |
| 205 | src/core/lib/surface/completion_queue.cc \ |
| 206 | src/core/lib/surface/completion_queue_factory.cc \ |
| 207 | src/core/lib/surface/event_string.cc \ |
Craig Tiller | 8ebb544 | 2017-04-07 16:01:55 -0700 | [diff] [blame] | 208 | src/core/lib/surface/lame_client.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 209 | src/core/lib/surface/metadata_array.cc \ |
| 210 | src/core/lib/surface/server.cc \ |
| 211 | src/core/lib/surface/validate_metadata.cc \ |
| 212 | src/core/lib/surface/version.cc \ |
| 213 | src/core/lib/transport/bdp_estimator.cc \ |
| 214 | src/core/lib/transport/byte_stream.cc \ |
| 215 | src/core/lib/transport/connectivity_state.cc \ |
| 216 | src/core/lib/transport/error_utils.cc \ |
| 217 | src/core/lib/transport/metadata.cc \ |
| 218 | src/core/lib/transport/metadata_batch.cc \ |
| 219 | src/core/lib/transport/pid_controller.cc \ |
| 220 | src/core/lib/transport/service_config.cc \ |
| 221 | src/core/lib/transport/static_metadata.cc \ |
| 222 | src/core/lib/transport/status_conversion.cc \ |
Mark D. Roth | 718c834 | 2018-02-28 13:00:04 -0800 | [diff] [blame] | 223 | src/core/lib/transport/status_metadata.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 224 | src/core/lib/transport/timeout_encoding.cc \ |
| 225 | src/core/lib/transport/transport.cc \ |
| 226 | src/core/lib/transport/transport_op_string.cc \ |
| 227 | src/core/lib/debug/trace.cc \ |
| 228 | src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc \ |
| 229 | src/core/ext/transport/chttp2/transport/bin_decoder.cc \ |
| 230 | src/core/ext/transport/chttp2/transport/bin_encoder.cc \ |
| 231 | src/core/ext/transport/chttp2/transport/chttp2_plugin.cc \ |
| 232 | src/core/ext/transport/chttp2/transport/chttp2_transport.cc \ |
| 233 | src/core/ext/transport/chttp2/transport/flow_control.cc \ |
| 234 | src/core/ext/transport/chttp2/transport/frame_data.cc \ |
| 235 | src/core/ext/transport/chttp2/transport/frame_goaway.cc \ |
| 236 | src/core/ext/transport/chttp2/transport/frame_ping.cc \ |
| 237 | src/core/ext/transport/chttp2/transport/frame_rst_stream.cc \ |
| 238 | src/core/ext/transport/chttp2/transport/frame_settings.cc \ |
| 239 | src/core/ext/transport/chttp2/transport/frame_window_update.cc \ |
| 240 | src/core/ext/transport/chttp2/transport/hpack_encoder.cc \ |
| 241 | src/core/ext/transport/chttp2/transport/hpack_parser.cc \ |
| 242 | src/core/ext/transport/chttp2/transport/hpack_table.cc \ |
| 243 | src/core/ext/transport/chttp2/transport/http2_settings.cc \ |
| 244 | src/core/ext/transport/chttp2/transport/huffsyms.cc \ |
| 245 | src/core/ext/transport/chttp2/transport/incoming_metadata.cc \ |
| 246 | src/core/ext/transport/chttp2/transport/parsing.cc \ |
| 247 | src/core/ext/transport/chttp2/transport/stream_lists.cc \ |
| 248 | src/core/ext/transport/chttp2/transport/stream_map.cc \ |
| 249 | src/core/ext/transport/chttp2/transport/varint.cc \ |
| 250 | src/core/ext/transport/chttp2/transport/writing.cc \ |
| 251 | src/core/ext/transport/chttp2/alpn/alpn.cc \ |
| 252 | src/core/ext/filters/http/client/http_client_filter.cc \ |
| 253 | src/core/ext/filters/http/http_filters_plugin.cc \ |
| 254 | src/core/ext/filters/http/message_compress/message_compress_filter.cc \ |
| 255 | src/core/ext/filters/http/server/http_server_filter.cc \ |
| 256 | src/core/lib/http/httpcli_security_connector.cc \ |
| 257 | src/core/lib/security/context/security_context.cc \ |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 258 | src/core/lib/security/credentials/alts/alts_credentials.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 259 | src/core/lib/security/credentials/composite/composite_credentials.cc \ |
| 260 | src/core/lib/security/credentials/credentials.cc \ |
| 261 | src/core/lib/security/credentials/credentials_metadata.cc \ |
| 262 | src/core/lib/security/credentials/fake/fake_credentials.cc \ |
| 263 | src/core/lib/security/credentials/google_default/credentials_generic.cc \ |
| 264 | src/core/lib/security/credentials/google_default/google_default_credentials.cc \ |
| 265 | src/core/lib/security/credentials/iam/iam_credentials.cc \ |
| 266 | src/core/lib/security/credentials/jwt/json_token.cc \ |
| 267 | src/core/lib/security/credentials/jwt/jwt_credentials.cc \ |
| 268 | src/core/lib/security/credentials/jwt/jwt_verifier.cc \ |
| 269 | src/core/lib/security/credentials/oauth2/oauth2_credentials.cc \ |
| 270 | src/core/lib/security/credentials/plugin/plugin_credentials.cc \ |
| 271 | src/core/lib/security/credentials/ssl/ssl_credentials.cc \ |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 272 | src/core/lib/security/security_connector/alts_security_connector.cc \ |
Yihua Zhang | 75f0a9f | 2018-02-20 10:09:47 -0800 | [diff] [blame] | 273 | src/core/lib/security/security_connector/security_connector.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 274 | src/core/lib/security/transport/client_auth_filter.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 275 | src/core/lib/security/transport/secure_endpoint.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 276 | src/core/lib/security/transport/security_handshaker.cc \ |
| 277 | src/core/lib/security/transport/server_auth_filter.cc \ |
Mark D. Roth | 3e7f2df | 2018-02-26 13:17:06 -0800 | [diff] [blame] | 278 | src/core/lib/security/transport/target_authority_table.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 279 | src/core/lib/security/transport/tsi_error.cc \ |
| 280 | src/core/lib/security/util/json_util.cc \ |
| 281 | src/core/lib/surface/init_secure.cc \ |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 282 | src/core/tsi/alts/crypt/aes_gcm.cc \ |
| 283 | src/core/tsi/alts/crypt/gsec.cc \ |
| 284 | src/core/tsi/alts/frame_protector/alts_counter.cc \ |
| 285 | src/core/tsi/alts/frame_protector/alts_crypter.cc \ |
| 286 | src/core/tsi/alts/frame_protector/alts_frame_protector.cc \ |
| 287 | src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc \ |
| 288 | src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc \ |
| 289 | src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc \ |
| 290 | src/core/tsi/alts/frame_protector/frame_handler.cc \ |
| 291 | src/core/tsi/alts/handshaker/alts_handshaker_client.cc \ |
| 292 | src/core/tsi/alts/handshaker/alts_tsi_event.cc \ |
| 293 | src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc \ |
| 294 | src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc \ |
| 295 | src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc \ |
| 296 | src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc \ |
| 297 | src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc \ |
| 298 | src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc \ |
| 299 | src/core/lib/security/credentials/alts/check_gcp_environment.cc \ |
| 300 | src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc \ |
| 301 | src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc \ |
| 302 | src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc \ |
| 303 | src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc \ |
| 304 | src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc \ |
| 305 | src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc \ |
| 306 | src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc \ |
| 307 | src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc \ |
| 308 | src/core/tsi/alts/handshaker/alts_tsi_utils.cc \ |
| 309 | src/core/tsi/alts/handshaker/transport_security_common_api.cc \ |
| 310 | src/core/tsi/alts/handshaker/altscontext.pb.c \ |
| 311 | src/core/tsi/alts/handshaker/handshaker.pb.c \ |
| 312 | src/core/tsi/alts/handshaker/transport_security_common.pb.c \ |
| 313 | third_party/nanopb/pb_common.c \ |
| 314 | third_party/nanopb/pb_decode.c \ |
| 315 | third_party/nanopb/pb_encode.c \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 316 | src/core/tsi/transport_security.cc \ |
| 317 | src/core/tsi/transport_security_adapter.cc \ |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 318 | src/core/ext/transport/chttp2/client/insecure/channel_create.cc \ |
| 319 | src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc \ |
| 320 | src/core/ext/transport/chttp2/client/chttp2_connector.cc \ |
Yuchen Zeng | 0bad30a | 2017-10-05 21:47:39 -0700 | [diff] [blame] | 321 | src/core/ext/filters/client_channel/backup_poller.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 322 | src/core/ext/filters/client_channel/channel_connectivity.cc \ |
| 323 | src/core/ext/filters/client_channel/client_channel.cc \ |
| 324 | src/core/ext/filters/client_channel/client_channel_factory.cc \ |
| 325 | src/core/ext/filters/client_channel/client_channel_plugin.cc \ |
| 326 | src/core/ext/filters/client_channel/connector.cc \ |
| 327 | src/core/ext/filters/client_channel/http_connect_handshaker.cc \ |
| 328 | src/core/ext/filters/client_channel/http_proxy.cc \ |
| 329 | src/core/ext/filters/client_channel/lb_policy.cc \ |
| 330 | src/core/ext/filters/client_channel/lb_policy_factory.cc \ |
| 331 | src/core/ext/filters/client_channel/lb_policy_registry.cc \ |
Mark D. Roth | 3e7f2df | 2018-02-26 13:17:06 -0800 | [diff] [blame] | 332 | src/core/ext/filters/client_channel/method_params.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 333 | src/core/ext/filters/client_channel/parse_address.cc \ |
| 334 | src/core/ext/filters/client_channel/proxy_mapper.cc \ |
| 335 | src/core/ext/filters/client_channel/proxy_mapper_registry.cc \ |
| 336 | src/core/ext/filters/client_channel/resolver.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 337 | src/core/ext/filters/client_channel/resolver_registry.cc \ |
| 338 | src/core/ext/filters/client_channel/retry_throttle.cc \ |
Noah Eisen | f2bea37 | 2018-03-19 12:05:18 -0700 | [diff] [blame] | 339 | src/core/ext/filters/client_channel/status_util.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 340 | src/core/ext/filters/client_channel/subchannel.cc \ |
| 341 | src/core/ext/filters/client_channel/subchannel_index.cc \ |
| 342 | src/core/ext/filters/client_channel/uri_parser.cc \ |
| 343 | src/core/ext/filters/deadline/deadline_filter.cc \ |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 344 | src/core/tsi/alts_transport_security.cc \ |
| 345 | src/core/tsi/fake_transport_security.cc \ |
| 346 | src/core/tsi/ssl_transport_security.cc \ |
| 347 | src/core/tsi/transport_security_grpc.cc \ |
| 348 | src/core/ext/transport/chttp2/server/chttp2_server.cc \ |
| 349 | src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 350 | src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc \ |
| 351 | src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 352 | src/core/ext/transport/inproc/inproc_plugin.cc \ |
| 353 | src/core/ext/transport/inproc/inproc_transport.cc \ |
| 354 | src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc \ |
| 355 | src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc \ |
| 356 | src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc \ |
| 357 | src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc \ |
| 358 | src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc \ |
Yash Tibrewal | 15ce142 | 2017-09-25 17:46:32 -0700 | [diff] [blame] | 359 | src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 360 | src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc \ |
| 361 | src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc \ |
Mark D. Roth | 5e9848e | 2017-10-06 13:59:32 -0700 | [diff] [blame] | 362 | src/core/ext/filters/client_channel/lb_policy/subchannel_list.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 363 | src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc \ |
| 364 | src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc \ |
| 365 | src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc \ |
| 366 | src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc \ |
| 367 | src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc \ |
| 368 | src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc \ |
| 369 | src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc \ |
| 370 | src/core/ext/filters/load_reporting/server_load_reporting_filter.cc \ |
| 371 | src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 372 | src/core/ext/census/grpc_context.cc \ |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 373 | src/core/ext/filters/max_age/max_age_filter.cc \ |
| 374 | src/core/ext/filters/message_size/message_size_filter.cc \ |
| 375 | src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc \ |
| 376 | src/core/ext/filters/workarounds/workaround_utils.cc \ |
Yash Tibrewal | 1c9b584 | 2017-09-21 15:49:55 -0700 | [diff] [blame] | 377 | src/core/plugin_registry/grpc_plugin_registry.cc \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 378 | src/boringssl/err_data.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 379 | third_party/boringssl/crypto/asn1/a_bitstr.c \ |
| 380 | third_party/boringssl/crypto/asn1/a_bool.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 381 | third_party/boringssl/crypto/asn1/a_d2i_fp.c \ |
| 382 | third_party/boringssl/crypto/asn1/a_dup.c \ |
| 383 | third_party/boringssl/crypto/asn1/a_enum.c \ |
| 384 | third_party/boringssl/crypto/asn1/a_gentm.c \ |
| 385 | third_party/boringssl/crypto/asn1/a_i2d_fp.c \ |
| 386 | third_party/boringssl/crypto/asn1/a_int.c \ |
| 387 | third_party/boringssl/crypto/asn1/a_mbstr.c \ |
| 388 | third_party/boringssl/crypto/asn1/a_object.c \ |
| 389 | third_party/boringssl/crypto/asn1/a_octet.c \ |
| 390 | third_party/boringssl/crypto/asn1/a_print.c \ |
| 391 | third_party/boringssl/crypto/asn1/a_strnid.c \ |
| 392 | third_party/boringssl/crypto/asn1/a_time.c \ |
| 393 | third_party/boringssl/crypto/asn1/a_type.c \ |
| 394 | third_party/boringssl/crypto/asn1/a_utctm.c \ |
| 395 | third_party/boringssl/crypto/asn1/a_utf8.c \ |
| 396 | third_party/boringssl/crypto/asn1/asn1_lib.c \ |
| 397 | third_party/boringssl/crypto/asn1/asn1_par.c \ |
| 398 | third_party/boringssl/crypto/asn1/asn_pack.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 399 | third_party/boringssl/crypto/asn1/f_enum.c \ |
| 400 | third_party/boringssl/crypto/asn1/f_int.c \ |
| 401 | third_party/boringssl/crypto/asn1/f_string.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 402 | third_party/boringssl/crypto/asn1/tasn_dec.c \ |
| 403 | third_party/boringssl/crypto/asn1/tasn_enc.c \ |
| 404 | third_party/boringssl/crypto/asn1/tasn_fre.c \ |
| 405 | third_party/boringssl/crypto/asn1/tasn_new.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 406 | third_party/boringssl/crypto/asn1/tasn_typ.c \ |
| 407 | third_party/boringssl/crypto/asn1/tasn_utl.c \ |
Ken Payson | f8d6fb7 | 2017-06-15 17:32:49 -0700 | [diff] [blame] | 408 | third_party/boringssl/crypto/asn1/time_support.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 409 | third_party/boringssl/crypto/base64/base64.c \ |
| 410 | third_party/boringssl/crypto/bio/bio.c \ |
| 411 | third_party/boringssl/crypto/bio/bio_mem.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 412 | third_party/boringssl/crypto/bio/connect.c \ |
| 413 | third_party/boringssl/crypto/bio/fd.c \ |
| 414 | third_party/boringssl/crypto/bio/file.c \ |
| 415 | third_party/boringssl/crypto/bio/hexdump.c \ |
| 416 | third_party/boringssl/crypto/bio/pair.c \ |
| 417 | third_party/boringssl/crypto/bio/printf.c \ |
| 418 | third_party/boringssl/crypto/bio/socket.c \ |
| 419 | third_party/boringssl/crypto/bio/socket_helper.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 420 | third_party/boringssl/crypto/bn_extra/bn_asn1.c \ |
| 421 | third_party/boringssl/crypto/bn_extra/convert.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 422 | third_party/boringssl/crypto/buf/buf.c \ |
itessier | 2a52203 | 2016-04-19 17:38:51 -0700 | [diff] [blame] | 423 | third_party/boringssl/crypto/bytestring/asn1_compat.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 424 | third_party/boringssl/crypto/bytestring/ber.c \ |
| 425 | third_party/boringssl/crypto/bytestring/cbb.c \ |
| 426 | third_party/boringssl/crypto/bytestring/cbs.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 427 | third_party/boringssl/crypto/chacha/chacha.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 428 | third_party/boringssl/crypto/cipher_extra/cipher_extra.c \ |
| 429 | third_party/boringssl/crypto/cipher_extra/derive_key.c \ |
| 430 | third_party/boringssl/crypto/cipher_extra/e_aesctrhmac.c \ |
| 431 | third_party/boringssl/crypto/cipher_extra/e_aesgcmsiv.c \ |
| 432 | third_party/boringssl/crypto/cipher_extra/e_chacha20poly1305.c \ |
| 433 | third_party/boringssl/crypto/cipher_extra/e_null.c \ |
| 434 | third_party/boringssl/crypto/cipher_extra/e_rc2.c \ |
| 435 | third_party/boringssl/crypto/cipher_extra/e_rc4.c \ |
| 436 | third_party/boringssl/crypto/cipher_extra/e_ssl3.c \ |
| 437 | third_party/boringssl/crypto/cipher_extra/e_tls.c \ |
| 438 | third_party/boringssl/crypto/cipher_extra/tls_cbc.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 439 | third_party/boringssl/crypto/cmac/cmac.c \ |
| 440 | third_party/boringssl/crypto/conf/conf.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 441 | third_party/boringssl/crypto/cpu-aarch64-linux.c \ |
| 442 | third_party/boringssl/crypto/cpu-arm-linux.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 443 | third_party/boringssl/crypto/cpu-arm.c \ |
| 444 | third_party/boringssl/crypto/cpu-intel.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 445 | third_party/boringssl/crypto/cpu-ppc64le.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 446 | third_party/boringssl/crypto/crypto.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 447 | third_party/boringssl/crypto/curve25519/spake25519.c \ |
itessier | 2a52203 | 2016-04-19 17:38:51 -0700 | [diff] [blame] | 448 | third_party/boringssl/crypto/curve25519/x25519-x86_64.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 449 | third_party/boringssl/crypto/dh/check.c \ |
| 450 | third_party/boringssl/crypto/dh/dh.c \ |
| 451 | third_party/boringssl/crypto/dh/dh_asn1.c \ |
| 452 | third_party/boringssl/crypto/dh/params.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 453 | third_party/boringssl/crypto/digest_extra/digest_extra.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 454 | third_party/boringssl/crypto/dsa/dsa.c \ |
| 455 | third_party/boringssl/crypto/dsa/dsa_asn1.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 456 | third_party/boringssl/crypto/ec_extra/ec_asn1.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 457 | third_party/boringssl/crypto/ecdh/ecdh.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 458 | third_party/boringssl/crypto/ecdsa_extra/ecdsa_asn1.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 459 | third_party/boringssl/crypto/engine/engine.c \ |
| 460 | third_party/boringssl/crypto/err/err.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 461 | third_party/boringssl/crypto/evp/digestsign.c \ |
| 462 | third_party/boringssl/crypto/evp/evp.c \ |
| 463 | third_party/boringssl/crypto/evp/evp_asn1.c \ |
| 464 | third_party/boringssl/crypto/evp/evp_ctx.c \ |
| 465 | third_party/boringssl/crypto/evp/p_dsa_asn1.c \ |
| 466 | third_party/boringssl/crypto/evp/p_ec.c \ |
| 467 | third_party/boringssl/crypto/evp/p_ec_asn1.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 468 | third_party/boringssl/crypto/evp/p_ed25519.c \ |
| 469 | third_party/boringssl/crypto/evp/p_ed25519_asn1.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 470 | third_party/boringssl/crypto/evp/p_rsa.c \ |
| 471 | third_party/boringssl/crypto/evp/p_rsa_asn1.c \ |
| 472 | third_party/boringssl/crypto/evp/pbkdf.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 473 | third_party/boringssl/crypto/evp/print.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 474 | third_party/boringssl/crypto/evp/scrypt.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 475 | third_party/boringssl/crypto/evp/sign.c \ |
| 476 | third_party/boringssl/crypto/ex_data.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 477 | third_party/boringssl/crypto/fipsmodule/bcm.c \ |
| 478 | third_party/boringssl/crypto/fipsmodule/is_fips.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 479 | third_party/boringssl/crypto/hkdf/hkdf.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 480 | third_party/boringssl/crypto/lhash/lhash.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 481 | third_party/boringssl/crypto/mem.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 482 | third_party/boringssl/crypto/obj/obj.c \ |
| 483 | third_party/boringssl/crypto/obj/obj_xref.c \ |
| 484 | third_party/boringssl/crypto/pem/pem_all.c \ |
| 485 | third_party/boringssl/crypto/pem/pem_info.c \ |
| 486 | third_party/boringssl/crypto/pem/pem_lib.c \ |
| 487 | third_party/boringssl/crypto/pem/pem_oth.c \ |
| 488 | third_party/boringssl/crypto/pem/pem_pk8.c \ |
| 489 | third_party/boringssl/crypto/pem/pem_pkey.c \ |
| 490 | third_party/boringssl/crypto/pem/pem_x509.c \ |
| 491 | third_party/boringssl/crypto/pem/pem_xaux.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 492 | third_party/boringssl/crypto/pkcs7/pkcs7.c \ |
| 493 | third_party/boringssl/crypto/pkcs7/pkcs7_x509.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 494 | third_party/boringssl/crypto/pkcs8/p5_pbev2.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 495 | third_party/boringssl/crypto/pkcs8/pkcs8.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 496 | third_party/boringssl/crypto/pkcs8/pkcs8_x509.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 497 | third_party/boringssl/crypto/poly1305/poly1305.c \ |
| 498 | third_party/boringssl/crypto/poly1305/poly1305_arm.c \ |
| 499 | third_party/boringssl/crypto/poly1305/poly1305_vec.c \ |
Ken Payson | f8d6fb7 | 2017-06-15 17:32:49 -0700 | [diff] [blame] | 500 | third_party/boringssl/crypto/pool/pool.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 501 | third_party/boringssl/crypto/rand_extra/deterministic.c \ |
| 502 | third_party/boringssl/crypto/rand_extra/forkunsafe.c \ |
| 503 | third_party/boringssl/crypto/rand_extra/fuchsia.c \ |
| 504 | third_party/boringssl/crypto/rand_extra/rand_extra.c \ |
| 505 | third_party/boringssl/crypto/rand_extra/windows.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 506 | third_party/boringssl/crypto/rc4/rc4.c \ |
| 507 | third_party/boringssl/crypto/refcount_c11.c \ |
| 508 | third_party/boringssl/crypto/refcount_lock.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 509 | third_party/boringssl/crypto/rsa_extra/rsa_asn1.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 510 | third_party/boringssl/crypto/stack/stack.c \ |
| 511 | third_party/boringssl/crypto/thread.c \ |
| 512 | third_party/boringssl/crypto/thread_none.c \ |
| 513 | third_party/boringssl/crypto/thread_pthread.c \ |
| 514 | third_party/boringssl/crypto/thread_win.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 515 | third_party/boringssl/crypto/x509/a_digest.c \ |
| 516 | third_party/boringssl/crypto/x509/a_sign.c \ |
| 517 | third_party/boringssl/crypto/x509/a_strex.c \ |
| 518 | third_party/boringssl/crypto/x509/a_verify.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 519 | third_party/boringssl/crypto/x509/algorithm.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 520 | third_party/boringssl/crypto/x509/asn1_gen.c \ |
| 521 | third_party/boringssl/crypto/x509/by_dir.c \ |
| 522 | third_party/boringssl/crypto/x509/by_file.c \ |
| 523 | third_party/boringssl/crypto/x509/i2d_pr.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 524 | third_party/boringssl/crypto/x509/rsa_pss.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 525 | third_party/boringssl/crypto/x509/t_crl.c \ |
| 526 | third_party/boringssl/crypto/x509/t_req.c \ |
| 527 | third_party/boringssl/crypto/x509/t_x509.c \ |
| 528 | third_party/boringssl/crypto/x509/t_x509a.c \ |
| 529 | third_party/boringssl/crypto/x509/x509.c \ |
| 530 | third_party/boringssl/crypto/x509/x509_att.c \ |
| 531 | third_party/boringssl/crypto/x509/x509_cmp.c \ |
| 532 | third_party/boringssl/crypto/x509/x509_d2.c \ |
| 533 | third_party/boringssl/crypto/x509/x509_def.c \ |
| 534 | third_party/boringssl/crypto/x509/x509_ext.c \ |
| 535 | third_party/boringssl/crypto/x509/x509_lu.c \ |
| 536 | third_party/boringssl/crypto/x509/x509_obj.c \ |
| 537 | third_party/boringssl/crypto/x509/x509_r2x.c \ |
| 538 | third_party/boringssl/crypto/x509/x509_req.c \ |
| 539 | third_party/boringssl/crypto/x509/x509_set.c \ |
| 540 | third_party/boringssl/crypto/x509/x509_trs.c \ |
| 541 | third_party/boringssl/crypto/x509/x509_txt.c \ |
| 542 | third_party/boringssl/crypto/x509/x509_v3.c \ |
| 543 | third_party/boringssl/crypto/x509/x509_vfy.c \ |
| 544 | third_party/boringssl/crypto/x509/x509_vpm.c \ |
| 545 | third_party/boringssl/crypto/x509/x509cset.c \ |
| 546 | third_party/boringssl/crypto/x509/x509name.c \ |
| 547 | third_party/boringssl/crypto/x509/x509rset.c \ |
| 548 | third_party/boringssl/crypto/x509/x509spki.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 549 | third_party/boringssl/crypto/x509/x_algor.c \ |
| 550 | third_party/boringssl/crypto/x509/x_all.c \ |
| 551 | third_party/boringssl/crypto/x509/x_attrib.c \ |
| 552 | third_party/boringssl/crypto/x509/x_crl.c \ |
| 553 | third_party/boringssl/crypto/x509/x_exten.c \ |
| 554 | third_party/boringssl/crypto/x509/x_info.c \ |
| 555 | third_party/boringssl/crypto/x509/x_name.c \ |
| 556 | third_party/boringssl/crypto/x509/x_pkey.c \ |
| 557 | third_party/boringssl/crypto/x509/x_pubkey.c \ |
| 558 | third_party/boringssl/crypto/x509/x_req.c \ |
| 559 | third_party/boringssl/crypto/x509/x_sig.c \ |
| 560 | third_party/boringssl/crypto/x509/x_spki.c \ |
| 561 | third_party/boringssl/crypto/x509/x_val.c \ |
| 562 | third_party/boringssl/crypto/x509/x_x509.c \ |
| 563 | third_party/boringssl/crypto/x509/x_x509a.c \ |
| 564 | third_party/boringssl/crypto/x509v3/pcy_cache.c \ |
| 565 | third_party/boringssl/crypto/x509v3/pcy_data.c \ |
| 566 | third_party/boringssl/crypto/x509v3/pcy_lib.c \ |
| 567 | third_party/boringssl/crypto/x509v3/pcy_map.c \ |
| 568 | third_party/boringssl/crypto/x509v3/pcy_node.c \ |
| 569 | third_party/boringssl/crypto/x509v3/pcy_tree.c \ |
| 570 | third_party/boringssl/crypto/x509v3/v3_akey.c \ |
| 571 | third_party/boringssl/crypto/x509v3/v3_akeya.c \ |
| 572 | third_party/boringssl/crypto/x509v3/v3_alt.c \ |
| 573 | third_party/boringssl/crypto/x509v3/v3_bcons.c \ |
| 574 | third_party/boringssl/crypto/x509v3/v3_bitst.c \ |
| 575 | third_party/boringssl/crypto/x509v3/v3_conf.c \ |
| 576 | third_party/boringssl/crypto/x509v3/v3_cpols.c \ |
| 577 | third_party/boringssl/crypto/x509v3/v3_crld.c \ |
| 578 | third_party/boringssl/crypto/x509v3/v3_enum.c \ |
| 579 | third_party/boringssl/crypto/x509v3/v3_extku.c \ |
| 580 | third_party/boringssl/crypto/x509v3/v3_genn.c \ |
| 581 | third_party/boringssl/crypto/x509v3/v3_ia5.c \ |
| 582 | third_party/boringssl/crypto/x509v3/v3_info.c \ |
| 583 | third_party/boringssl/crypto/x509v3/v3_int.c \ |
| 584 | third_party/boringssl/crypto/x509v3/v3_lib.c \ |
| 585 | third_party/boringssl/crypto/x509v3/v3_ncons.c \ |
| 586 | third_party/boringssl/crypto/x509v3/v3_pci.c \ |
| 587 | third_party/boringssl/crypto/x509v3/v3_pcia.c \ |
| 588 | third_party/boringssl/crypto/x509v3/v3_pcons.c \ |
| 589 | third_party/boringssl/crypto/x509v3/v3_pku.c \ |
| 590 | third_party/boringssl/crypto/x509v3/v3_pmaps.c \ |
| 591 | third_party/boringssl/crypto/x509v3/v3_prn.c \ |
| 592 | third_party/boringssl/crypto/x509v3/v3_purp.c \ |
| 593 | third_party/boringssl/crypto/x509v3/v3_skey.c \ |
| 594 | third_party/boringssl/crypto/x509v3/v3_sxnet.c \ |
| 595 | third_party/boringssl/crypto/x509v3/v3_utl.c \ |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 596 | third_party/boringssl/ssl/bio_ssl.cc \ |
| 597 | third_party/boringssl/ssl/custom_extensions.cc \ |
| 598 | third_party/boringssl/ssl/d1_both.cc \ |
| 599 | third_party/boringssl/ssl/d1_lib.cc \ |
| 600 | third_party/boringssl/ssl/d1_pkt.cc \ |
| 601 | third_party/boringssl/ssl/d1_srtp.cc \ |
| 602 | third_party/boringssl/ssl/dtls_method.cc \ |
| 603 | third_party/boringssl/ssl/dtls_record.cc \ |
| 604 | third_party/boringssl/ssl/handshake.cc \ |
| 605 | third_party/boringssl/ssl/handshake_client.cc \ |
| 606 | third_party/boringssl/ssl/handshake_server.cc \ |
| 607 | third_party/boringssl/ssl/s3_both.cc \ |
| 608 | third_party/boringssl/ssl/s3_lib.cc \ |
| 609 | third_party/boringssl/ssl/s3_pkt.cc \ |
| 610 | third_party/boringssl/ssl/ssl_aead_ctx.cc \ |
| 611 | third_party/boringssl/ssl/ssl_asn1.cc \ |
| 612 | third_party/boringssl/ssl/ssl_buffer.cc \ |
| 613 | third_party/boringssl/ssl/ssl_cert.cc \ |
| 614 | third_party/boringssl/ssl/ssl_cipher.cc \ |
| 615 | third_party/boringssl/ssl/ssl_file.cc \ |
| 616 | third_party/boringssl/ssl/ssl_key_share.cc \ |
| 617 | third_party/boringssl/ssl/ssl_lib.cc \ |
| 618 | third_party/boringssl/ssl/ssl_privkey.cc \ |
| 619 | third_party/boringssl/ssl/ssl_session.cc \ |
| 620 | third_party/boringssl/ssl/ssl_stat.cc \ |
| 621 | third_party/boringssl/ssl/ssl_transcript.cc \ |
| 622 | third_party/boringssl/ssl/ssl_versions.cc \ |
| 623 | third_party/boringssl/ssl/ssl_x509.cc \ |
| 624 | third_party/boringssl/ssl/t1_enc.cc \ |
| 625 | third_party/boringssl/ssl/t1_lib.cc \ |
| 626 | third_party/boringssl/ssl/tls13_both.cc \ |
| 627 | third_party/boringssl/ssl/tls13_client.cc \ |
| 628 | third_party/boringssl/ssl/tls13_enc.cc \ |
| 629 | third_party/boringssl/ssl/tls13_server.cc \ |
| 630 | third_party/boringssl/ssl/tls_method.cc \ |
| 631 | third_party/boringssl/ssl/tls_record.cc \ |
Jan Tattermusch | d606e36 | 2018-03-07 21:21:38 +0100 | [diff] [blame] | 632 | third_party/boringssl/third_party/fiat/curve25519.c \ |
Stanley Cheung | 94d7588 | 2017-05-17 14:58:02 -0700 | [diff] [blame] | 633 | , $ext_shared, , -fvisibility=hidden \ |
| 634 | -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN \ |
Stanley Cheung | 1979210 | 2017-05-02 11:24:03 -0700 | [diff] [blame] | 635 | -D_HAS_EXCEPTIONS=0 -DNOMINMAX -DGRPC_ARES=0) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 636 | |
| 637 | PHP_ADD_BUILD_DIR($ext_builddir/src/php/ext/grpc) |
| 638 | |
| 639 | PHP_ADD_BUILD_DIR($ext_builddir/src/boringssl) |
Craig Tiller | 8f8e9f9 | 2016-03-29 09:41:28 -0700 | [diff] [blame] | 640 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/census) |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 641 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel) |
Mark D. Roth | 5e9848e | 2017-10-06 13:59:32 -0700 | [diff] [blame] | 642 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/lb_policy) |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 643 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/lb_policy/grpclb) |
| 644 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1) |
| 645 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/lb_policy/pick_first) |
| 646 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/lb_policy/round_robin) |
| 647 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/resolver/dns/c_ares) |
| 648 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/resolver/dns/native) |
David Garcia Quintas | 87d5a31 | 2017-06-06 19:45:58 -0700 | [diff] [blame] | 649 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/resolver/fake) |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 650 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/client_channel/resolver/sockaddr) |
Craig Tiller | 3be7dd0 | 2017-04-03 14:30:03 -0700 | [diff] [blame] | 651 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/deadline) |
Craig Tiller | af76743 | 2017-04-03 13:54:31 -0700 | [diff] [blame] | 652 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/http) |
| 653 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/http/client) |
Craig Tiller | 71d6ce6 | 2017-04-06 09:10:09 -0700 | [diff] [blame] | 654 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/http/message_compress) |
Craig Tiller | af76743 | 2017-04-03 13:54:31 -0700 | [diff] [blame] | 655 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/http/server) |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 656 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/load_reporting) |
Craig Tiller | 6d4894e | 2017-03-31 17:22:06 -0700 | [diff] [blame] | 657 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/max_age) |
Craig Tiller | 9b3648a | 2017-04-03 12:25:19 -0700 | [diff] [blame] | 658 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/message_size) |
Muxi Yan | 29ff466 | 2017-05-15 10:27:55 -0700 | [diff] [blame] | 659 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/filters/workarounds) |
Craig Tiller | f82ddc4 | 2016-04-05 17:15:07 -0700 | [diff] [blame] | 660 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/alpn) |
Mark D. Roth | 8686cab | 2016-11-17 13:12:17 -0800 | [diff] [blame] | 661 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/client) |
Craig Tiller | c7762a8 | 2016-03-28 10:13:08 -0700 | [diff] [blame] | 662 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/client/insecure) |
| 663 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/client/secure) |
Mark D. Roth | 7140382 | 2016-12-02 10:51:39 -0800 | [diff] [blame] | 664 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/server) |
Craig Tiller | c7762a8 | 2016-03-28 10:13:08 -0700 | [diff] [blame] | 665 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/server/insecure) |
| 666 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/server/secure) |
| 667 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/transport) |
Vijay Pai | 3d7d5f4 | 2017-05-04 10:02:24 -0700 | [diff] [blame] | 668 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/inproc) |
Vijay Pai | 8f4fbb1 | 2018-02-08 10:04:08 -0800 | [diff] [blame] | 669 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/avl) |
Craig Tiller | c0df1c0 | 2017-07-17 16:12:33 -0700 | [diff] [blame] | 670 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/backoff) |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 671 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/channel) |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 672 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/compression) |
| 673 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/debug) |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 674 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/gpr) |
Vijay Pai | da69355 | 2018-02-16 22:59:03 -0800 | [diff] [blame] | 675 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/gprpp) |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 676 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/http) |
| 677 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/iomgr) |
| 678 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/json) |
| 679 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/profiling) |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 680 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/context) |
| 681 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials) |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 682 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/alts) |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 683 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/composite) |
| 684 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/fake) |
| 685 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/google_default) |
| 686 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/iam) |
| 687 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/jwt) |
| 688 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/oauth2) |
| 689 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/plugin) |
| 690 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/ssl) |
Yihua Zhang | 75f0a9f | 2018-02-20 10:09:47 -0800 | [diff] [blame] | 691 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/security_connector) |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 692 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/transport) |
| 693 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/util) |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 694 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/slice) |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 695 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/surface) |
| 696 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/transport) |
Craig Tiller | fb43385 | 2016-03-29 08:51:07 -0700 | [diff] [blame] | 697 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/plugin_registry) |
Craig Tiller | 134fed3 | 2017-03-28 14:27:18 -0700 | [diff] [blame] | 698 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi) |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 699 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi/alts/crypt) |
| 700 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi/alts/frame_protector) |
| 701 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi/alts/handshaker) |
| 702 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/tsi/alts/zero_copy_frame_protector) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 703 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 704 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/asn1) |
| 705 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/base64) |
| 706 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/bio) |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 707 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/bn_extra) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 708 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/buf) |
| 709 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/bytestring) |
| 710 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/chacha) |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 711 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/cipher_extra) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 712 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/cmac) |
| 713 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/conf) |
| 714 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/curve25519) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 715 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/dh) |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 716 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/digest_extra) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 717 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/dsa) |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 718 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/ec_extra) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 719 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/ecdh) |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 720 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/ecdsa_extra) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 721 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/engine) |
| 722 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/err) |
| 723 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/evp) |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 724 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/fipsmodule) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 725 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/hkdf) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 726 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/lhash) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 727 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/obj) |
| 728 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/pem) |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 729 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/pkcs7) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 730 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/pkcs8) |
| 731 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/poly1305) |
Ken Payson | f8d6fb7 | 2017-06-15 17:32:49 -0700 | [diff] [blame] | 732 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/pool) |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 733 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rand_extra) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 734 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rc4) |
Matt Kwong | a110c74 | 2017-09-22 14:31:22 -0700 | [diff] [blame] | 735 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rsa_extra) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 736 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/stack) |
| 737 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/x509) |
| 738 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/x509v3) |
| 739 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/ssl) |
Jan Tattermusch | d606e36 | 2018-03-07 21:21:38 +0100 | [diff] [blame] | 740 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/third_party/fiat) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 741 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/nanopb) |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 742 | fi |