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 | |
| 14 | GRPC_SHARED_LIBADD="-lpthread $GRPC_SHARED_LIBADD" |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 15 | PHP_ADD_LIBRARY(pthread) |
| 16 | |
Stanley Cheung | bf74d69 | 2016-02-23 22:39:25 -0800 | [diff] [blame] | 17 | PHP_ADD_LIBRARY(dl,,GRPC_SHARED_LIBADD) |
| 18 | PHP_ADD_LIBRARY(dl) |
| 19 | |
| 20 | case $host in |
| 21 | *darwin*) ;; |
| 22 | *) |
| 23 | PHP_ADD_LIBRARY(rt,,GRPC_SHARED_LIBADD) |
| 24 | PHP_ADD_LIBRARY(rt) |
| 25 | ;; |
| 26 | esac |
| 27 | |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 28 | PHP_NEW_EXTENSION(grpc, |
| 29 | src/php/ext/grpc/byte_buffer.c \ |
| 30 | src/php/ext/grpc/call.c \ |
| 31 | src/php/ext/grpc/call_credentials.c \ |
| 32 | src/php/ext/grpc/channel.c \ |
| 33 | src/php/ext/grpc/channel_credentials.c \ |
| 34 | src/php/ext/grpc/completion_queue.c \ |
| 35 | src/php/ext/grpc/php_grpc.c \ |
| 36 | src/php/ext/grpc/server.c \ |
| 37 | src/php/ext/grpc/server_credentials.c \ |
| 38 | src/php/ext/grpc/timeval.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 39 | src/core/lib/profiling/basic_timers.c \ |
| 40 | src/core/lib/profiling/stap_timers.c \ |
| 41 | src/core/lib/support/alloc.c \ |
| 42 | src/core/lib/support/avl.c \ |
| 43 | src/core/lib/support/backoff.c \ |
| 44 | src/core/lib/support/cmdline.c \ |
| 45 | src/core/lib/support/cpu_iphone.c \ |
| 46 | src/core/lib/support/cpu_linux.c \ |
| 47 | src/core/lib/support/cpu_posix.c \ |
| 48 | src/core/lib/support/cpu_windows.c \ |
| 49 | src/core/lib/support/env_linux.c \ |
| 50 | src/core/lib/support/env_posix.c \ |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 51 | src/core/lib/support/env_windows.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 52 | src/core/lib/support/histogram.c \ |
| 53 | src/core/lib/support/host_port.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 54 | src/core/lib/support/log.c \ |
| 55 | src/core/lib/support/log_android.c \ |
| 56 | src/core/lib/support/log_linux.c \ |
| 57 | src/core/lib/support/log_posix.c \ |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 58 | src/core/lib/support/log_windows.c \ |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 59 | src/core/lib/support/mpscq.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 60 | src/core/lib/support/murmur_hash.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 61 | src/core/lib/support/stack_lockfree.c \ |
| 62 | src/core/lib/support/string.c \ |
| 63 | src/core/lib/support/string_posix.c \ |
Yuchen Zeng | 4594bd9 | 2016-05-31 14:06:01 -0700 | [diff] [blame] | 64 | src/core/lib/support/string_util_windows.c \ |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 65 | src/core/lib/support/string_windows.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 66 | src/core/lib/support/subprocess_posix.c \ |
| 67 | src/core/lib/support/subprocess_windows.c \ |
| 68 | src/core/lib/support/sync.c \ |
| 69 | src/core/lib/support/sync_posix.c \ |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 70 | src/core/lib/support/sync_windows.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 71 | src/core/lib/support/thd.c \ |
| 72 | src/core/lib/support/thd_posix.c \ |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 73 | src/core/lib/support/thd_windows.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 74 | src/core/lib/support/time.c \ |
| 75 | src/core/lib/support/time_posix.c \ |
| 76 | src/core/lib/support/time_precise.c \ |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 77 | src/core/lib/support/time_windows.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 78 | src/core/lib/support/tls_pthread.c \ |
Nicolas "Pixel" Noble | c4b18a5 | 2016-04-15 04:53:54 +0200 | [diff] [blame] | 79 | src/core/lib/support/tmpfile_msys.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 80 | src/core/lib/support/tmpfile_posix.c \ |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 81 | src/core/lib/support/tmpfile_windows.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 82 | src/core/lib/support/wrap_memcpy.c \ |
Craig Tiller | 3ab2fe0 | 2016-04-11 20:11:18 -0700 | [diff] [blame] | 83 | src/core/lib/surface/init.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 84 | src/core/lib/channel/channel_args.c \ |
| 85 | src/core/lib/channel/channel_stack.c \ |
| 86 | src/core/lib/channel/channel_stack_builder.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 87 | src/core/lib/channel/compress_filter.c \ |
| 88 | src/core/lib/channel/connected_channel.c \ |
Mark D. Roth | 14c072c | 2016-08-26 08:31:34 -0700 | [diff] [blame] | 89 | src/core/lib/channel/deadline_filter.c \ |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 90 | src/core/lib/channel/handshaker.c \ |
Mark D. Roth | 1f0f23c | 2017-01-06 13:07:19 -0800 | [diff] [blame] | 91 | src/core/lib/channel/handshaker_factory.c \ |
| 92 | src/core/lib/channel/handshaker_registry.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 93 | src/core/lib/channel/http_client_filter.c \ |
| 94 | src/core/lib/channel/http_server_filter.c \ |
Mark D. Roth | af00d8b | 2016-08-23 12:48:16 -0700 | [diff] [blame] | 95 | src/core/lib/channel/message_size_filter.c \ |
David Garcia Quintas | ac09447 | 2016-05-18 20:25:57 -0700 | [diff] [blame] | 96 | src/core/lib/compression/compression.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 97 | src/core/lib/compression/message_compress.c \ |
| 98 | src/core/lib/debug/trace.c \ |
| 99 | src/core/lib/http/format_request.c \ |
| 100 | src/core/lib/http/httpcli.c \ |
| 101 | src/core/lib/http/parser.c \ |
| 102 | src/core/lib/iomgr/closure.c \ |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 103 | src/core/lib/iomgr/combiner.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 104 | src/core/lib/iomgr/endpoint.c \ |
| 105 | src/core/lib/iomgr/endpoint_pair_posix.c \ |
murgatroid99 | c36f6ea | 2016-10-03 09:24:09 -0700 | [diff] [blame] | 106 | src/core/lib/iomgr/endpoint_pair_uv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 107 | src/core/lib/iomgr/endpoint_pair_windows.c \ |
Craig Tiller | 27f59af | 2016-04-28 14:19:48 -0700 | [diff] [blame] | 108 | src/core/lib/iomgr/error.c \ |
Sree Kuchibhotla | f448c34 | 2016-05-19 10:51:24 -0700 | [diff] [blame] | 109 | src/core/lib/iomgr/ev_epoll_linux.c \ |
Craig Tiller | d9a60bb | 2016-03-28 23:13:19 -0700 | [diff] [blame] | 110 | src/core/lib/iomgr/ev_poll_posix.c \ |
Craig Tiller | 8a03448 | 2016-03-28 16:09:04 -0700 | [diff] [blame] | 111 | src/core/lib/iomgr/ev_posix.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 112 | src/core/lib/iomgr/exec_ctx.c \ |
| 113 | src/core/lib/iomgr/executor.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 114 | src/core/lib/iomgr/iocp_windows.c \ |
| 115 | src/core/lib/iomgr/iomgr.c \ |
| 116 | src/core/lib/iomgr/iomgr_posix.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 117 | src/core/lib/iomgr/iomgr_uv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 118 | src/core/lib/iomgr/iomgr_windows.c \ |
Craig Tiller | 8517886 | 2016-05-18 16:09:16 -0700 | [diff] [blame] | 119 | src/core/lib/iomgr/load_file.c \ |
Makarand Dharmapurikar | 0579cfc | 2016-06-20 15:45:24 -0700 | [diff] [blame] | 120 | src/core/lib/iomgr/network_status_tracker.c \ |
David Garcia Quintas | 2a50dfe | 2016-05-31 15:09:12 -0700 | [diff] [blame] | 121 | src/core/lib/iomgr/polling_entity.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 122 | src/core/lib/iomgr/pollset_set_uv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 123 | src/core/lib/iomgr/pollset_set_windows.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 124 | src/core/lib/iomgr/pollset_uv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 125 | src/core/lib/iomgr/pollset_windows.c \ |
| 126 | src/core/lib/iomgr/resolve_address_posix.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 127 | src/core/lib/iomgr/resolve_address_uv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 128 | src/core/lib/iomgr/resolve_address_windows.c \ |
Craig Tiller | 20afa3d | 2016-10-17 14:52:14 -0700 | [diff] [blame] | 129 | src/core/lib/iomgr/resource_quota.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 130 | src/core/lib/iomgr/sockaddr_utils.c \ |
Yuchen Zeng | de3daf5 | 2016-10-13 17:26:26 -0700 | [diff] [blame] | 131 | src/core/lib/iomgr/socket_mutator.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 132 | src/core/lib/iomgr/socket_utils_common_posix.c \ |
| 133 | src/core/lib/iomgr/socket_utils_linux.c \ |
| 134 | src/core/lib/iomgr/socket_utils_posix.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 135 | src/core/lib/iomgr/socket_utils_uv.c \ |
murgatroid99 | 79b3227 | 2016-08-08 13:38:30 -0700 | [diff] [blame] | 136 | src/core/lib/iomgr/socket_utils_windows.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 137 | src/core/lib/iomgr/socket_windows.c \ |
| 138 | src/core/lib/iomgr/tcp_client_posix.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 139 | src/core/lib/iomgr/tcp_client_uv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 140 | src/core/lib/iomgr/tcp_client_windows.c \ |
| 141 | src/core/lib/iomgr/tcp_posix.c \ |
| 142 | src/core/lib/iomgr/tcp_server_posix.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 143 | src/core/lib/iomgr/tcp_server_uv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 144 | src/core/lib/iomgr/tcp_server_windows.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 145 | src/core/lib/iomgr/tcp_uv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 146 | src/core/lib/iomgr/tcp_windows.c \ |
| 147 | src/core/lib/iomgr/time_averaged_stats.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 148 | src/core/lib/iomgr/timer_generic.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 149 | src/core/lib/iomgr/timer_heap.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 150 | src/core/lib/iomgr/timer_uv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 151 | src/core/lib/iomgr/udp_server.c \ |
| 152 | src/core/lib/iomgr/unix_sockets_posix.c \ |
| 153 | src/core/lib/iomgr/unix_sockets_posix_noop.c \ |
Ken Payson | 31caabd | 2016-08-06 21:27:29 -0700 | [diff] [blame] | 154 | src/core/lib/iomgr/wakeup_fd_cv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 155 | src/core/lib/iomgr/wakeup_fd_eventfd.c \ |
| 156 | src/core/lib/iomgr/wakeup_fd_nospecial.c \ |
| 157 | src/core/lib/iomgr/wakeup_fd_pipe.c \ |
| 158 | src/core/lib/iomgr/wakeup_fd_posix.c \ |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 159 | src/core/lib/iomgr/workqueue_uv.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 160 | src/core/lib/iomgr/workqueue_windows.c \ |
| 161 | src/core/lib/json/json.c \ |
| 162 | src/core/lib/json/json_reader.c \ |
| 163 | src/core/lib/json/json_string.c \ |
| 164 | src/core/lib/json/json_writer.c \ |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 165 | src/core/lib/slice/percent_encoding.c \ |
| 166 | src/core/lib/slice/slice.c \ |
| 167 | src/core/lib/slice/slice_buffer.c \ |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 168 | src/core/lib/slice/slice_hash_table.c \ |
| 169 | src/core/lib/slice/slice_intern.c \ |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 170 | src/core/lib/slice/slice_string_helpers.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 171 | src/core/lib/surface/alarm.c \ |
| 172 | src/core/lib/surface/api_trace.c \ |
| 173 | src/core/lib/surface/byte_buffer.c \ |
| 174 | src/core/lib/surface/byte_buffer_reader.c \ |
| 175 | src/core/lib/surface/call.c \ |
| 176 | src/core/lib/surface/call_details.c \ |
| 177 | src/core/lib/surface/call_log_batch.c \ |
| 178 | src/core/lib/surface/channel.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 179 | src/core/lib/surface/channel_init.c \ |
| 180 | src/core/lib/surface/channel_ping.c \ |
| 181 | src/core/lib/surface/channel_stack_type.c \ |
| 182 | src/core/lib/surface/completion_queue.c \ |
| 183 | src/core/lib/surface/event_string.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 184 | src/core/lib/surface/lame_client.c \ |
| 185 | src/core/lib/surface/metadata_array.c \ |
| 186 | src/core/lib/surface/server.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 187 | src/core/lib/surface/validate_metadata.c \ |
| 188 | src/core/lib/surface/version.c \ |
Craig Tiller | 9e0066b | 2016-10-20 14:04:18 -0700 | [diff] [blame] | 189 | src/core/lib/transport/bdp_estimator.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 190 | src/core/lib/transport/byte_stream.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 191 | src/core/lib/transport/connectivity_state.c \ |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 192 | src/core/lib/transport/error_utils.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 193 | src/core/lib/transport/metadata.c \ |
| 194 | src/core/lib/transport/metadata_batch.c \ |
Craig Tiller | dd2fa64 | 2016-10-20 15:46:32 -0700 | [diff] [blame] | 195 | src/core/lib/transport/pid_controller.c \ |
Mark D. Roth | ea846a0 | 2016-11-03 11:32:54 -0700 | [diff] [blame] | 196 | src/core/lib/transport/service_config.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 197 | src/core/lib/transport/static_metadata.c \ |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 198 | src/core/lib/transport/status_conversion.c \ |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 199 | src/core/lib/transport/timeout_encoding.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 200 | src/core/lib/transport/transport.c \ |
| 201 | src/core/lib/transport/transport_op_string.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 202 | src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c \ |
Yuchen Zeng | d982bba | 2016-05-12 18:53:52 -0700 | [diff] [blame] | 203 | src/core/ext/transport/chttp2/transport/bin_decoder.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 204 | src/core/ext/transport/chttp2/transport/bin_encoder.c \ |
| 205 | src/core/ext/transport/chttp2/transport/chttp2_plugin.c \ |
| 206 | src/core/ext/transport/chttp2/transport/chttp2_transport.c \ |
| 207 | src/core/ext/transport/chttp2/transport/frame_data.c \ |
| 208 | src/core/ext/transport/chttp2/transport/frame_goaway.c \ |
| 209 | src/core/ext/transport/chttp2/transport/frame_ping.c \ |
| 210 | src/core/ext/transport/chttp2/transport/frame_rst_stream.c \ |
| 211 | src/core/ext/transport/chttp2/transport/frame_settings.c \ |
| 212 | src/core/ext/transport/chttp2/transport/frame_window_update.c \ |
| 213 | src/core/ext/transport/chttp2/transport/hpack_encoder.c \ |
| 214 | src/core/ext/transport/chttp2/transport/hpack_parser.c \ |
| 215 | src/core/ext/transport/chttp2/transport/hpack_table.c \ |
| 216 | src/core/ext/transport/chttp2/transport/huffsyms.c \ |
| 217 | src/core/ext/transport/chttp2/transport/incoming_metadata.c \ |
| 218 | src/core/ext/transport/chttp2/transport/parsing.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 219 | src/core/ext/transport/chttp2/transport/stream_lists.c \ |
| 220 | src/core/ext/transport/chttp2/transport/stream_map.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 221 | src/core/ext/transport/chttp2/transport/varint.c \ |
| 222 | src/core/ext/transport/chttp2/transport/writing.c \ |
| 223 | src/core/ext/transport/chttp2/alpn/alpn.c \ |
| 224 | src/core/lib/http/httpcli_security_connector.c \ |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 225 | src/core/lib/security/context/security_context.c \ |
| 226 | src/core/lib/security/credentials/composite/composite_credentials.c \ |
| 227 | src/core/lib/security/credentials/credentials.c \ |
| 228 | src/core/lib/security/credentials/credentials_metadata.c \ |
| 229 | src/core/lib/security/credentials/fake/fake_credentials.c \ |
murgatroid99 | 7c20590 | 2016-08-09 10:07:42 -0700 | [diff] [blame] | 230 | src/core/lib/security/credentials/google_default/credentials_generic.c \ |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 231 | src/core/lib/security/credentials/google_default/google_default_credentials.c \ |
| 232 | src/core/lib/security/credentials/iam/iam_credentials.c \ |
| 233 | src/core/lib/security/credentials/jwt/json_token.c \ |
| 234 | src/core/lib/security/credentials/jwt/jwt_credentials.c \ |
| 235 | src/core/lib/security/credentials/jwt/jwt_verifier.c \ |
| 236 | src/core/lib/security/credentials/oauth2/oauth2_credentials.c \ |
| 237 | src/core/lib/security/credentials/plugin/plugin_credentials.c \ |
| 238 | src/core/lib/security/credentials/ssl/ssl_credentials.c \ |
| 239 | src/core/lib/security/transport/client_auth_filter.c \ |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 240 | src/core/lib/security/transport/lb_targets_info.c \ |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 241 | src/core/lib/security/transport/secure_endpoint.c \ |
| 242 | src/core/lib/security/transport/security_connector.c \ |
Mark D. Roth | 071cacf | 2016-11-17 13:17:56 -0800 | [diff] [blame] | 243 | src/core/lib/security/transport/security_handshaker.c \ |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 244 | src/core/lib/security/transport/server_auth_filter.c \ |
Craig Tiller | ddad978 | 2016-05-05 17:11:31 -0700 | [diff] [blame] | 245 | src/core/lib/security/transport/tsi_error.c \ |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 246 | src/core/lib/security/util/b64.c \ |
| 247 | src/core/lib/security/util/json_util.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 248 | src/core/lib/surface/init_secure.c \ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 249 | src/core/lib/tsi/fake_transport_security.c \ |
| 250 | src/core/lib/tsi/ssl_transport_security.c \ |
| 251 | src/core/lib/tsi/transport_security.c \ |
Mark D. Roth | 7140382 | 2016-12-02 10:51:39 -0800 | [diff] [blame] | 252 | src/core/ext/transport/chttp2/server/chttp2_server.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 253 | src/core/ext/transport/chttp2/client/secure/secure_channel_create.c \ |
Mark D. Roth | 2137cd8 | 2016-09-14 09:04:00 -0700 | [diff] [blame] | 254 | src/core/ext/client_channel/channel_connectivity.c \ |
| 255 | src/core/ext/client_channel/client_channel.c \ |
| 256 | src/core/ext/client_channel/client_channel_factory.c \ |
| 257 | src/core/ext/client_channel/client_channel_plugin.c \ |
| 258 | src/core/ext/client_channel/connector.c \ |
| 259 | src/core/ext/client_channel/default_initial_connect_string.c \ |
Mark D. Roth | 1519574 | 2016-10-07 09:02:28 -0700 | [diff] [blame] | 260 | src/core/ext/client_channel/http_connect_handshaker.c \ |
Mark D. Roth | d58a985 | 2017-01-18 08:28:57 -0800 | [diff] [blame] | 261 | src/core/ext/client_channel/http_proxy.c \ |
Mark D. Roth | 2137cd8 | 2016-09-14 09:04:00 -0700 | [diff] [blame] | 262 | src/core/ext/client_channel/initial_connect_string.c \ |
| 263 | src/core/ext/client_channel/lb_policy.c \ |
| 264 | src/core/ext/client_channel/lb_policy_factory.c \ |
| 265 | src/core/ext/client_channel/lb_policy_registry.c \ |
| 266 | src/core/ext/client_channel/parse_address.c \ |
Mark D. Roth | 79f2a24 | 2017-01-17 14:13:33 -0800 | [diff] [blame] | 267 | src/core/ext/client_channel/proxy_mapper.c \ |
| 268 | src/core/ext/client_channel/proxy_mapper_registry.c \ |
Mark D. Roth | 2137cd8 | 2016-09-14 09:04:00 -0700 | [diff] [blame] | 269 | src/core/ext/client_channel/resolver.c \ |
| 270 | src/core/ext/client_channel/resolver_factory.c \ |
| 271 | src/core/ext/client_channel/resolver_registry.c \ |
Mark D. Roth | 2137cd8 | 2016-09-14 09:04:00 -0700 | [diff] [blame] | 272 | src/core/ext/client_channel/subchannel.c \ |
| 273 | src/core/ext/client_channel/subchannel_index.c \ |
| 274 | src/core/ext/client_channel/uri_parser.c \ |
Mark D. Roth | 8686cab | 2016-11-17 13:12:17 -0800 | [diff] [blame] | 275 | src/core/ext/transport/chttp2/client/chttp2_connector.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 276 | src/core/ext/transport/chttp2/server/insecure/server_chttp2.c \ |
Adam Michalik | bf10c82 | 2016-05-20 16:13:32 -0700 | [diff] [blame] | 277 | src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 278 | src/core/ext/transport/chttp2/client/insecure/channel_create.c \ |
Adam Michalik | 321b1fb | 2016-05-16 15:42:36 -0700 | [diff] [blame] | 279 | src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c \ |
David Garcia Quintas | 3fb8f73 | 2016-06-15 22:53:08 -0700 | [diff] [blame] | 280 | src/core/ext/lb_policy/grpclb/grpclb.c \ |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 281 | src/core/ext/lb_policy/grpclb/grpclb_channel_secure.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 282 | src/core/ext/lb_policy/grpclb/load_balancer_api.c \ |
David Garcia Quintas | 7f0793a | 2016-04-25 12:35:58 -0700 | [diff] [blame] | 283 | src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c \ |
Stanley Cheung | bf74d69 | 2016-02-23 22:39:25 -0800 | [diff] [blame] | 284 | third_party/nanopb/pb_common.c \ |
| 285 | third_party/nanopb/pb_decode.c \ |
| 286 | third_party/nanopb/pb_encode.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 287 | src/core/ext/lb_policy/pick_first/pick_first.c \ |
| 288 | src/core/ext/lb_policy/round_robin/round_robin.c \ |
| 289 | src/core/ext/resolver/dns/native/dns_resolver.c \ |
| 290 | src/core/ext/resolver/sockaddr/sockaddr_resolver.c \ |
David Garcia Quintas | b41363e | 2016-04-29 00:41:21 -0700 | [diff] [blame] | 291 | src/core/ext/load_reporting/load_reporting.c \ |
| 292 | src/core/ext/load_reporting/load_reporting_filter.c \ |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 293 | src/core/ext/census/base_resources.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 294 | src/core/ext/census/context.c \ |
Alistair Veitch | 30fe632 | 2016-05-23 10:11:28 -0700 | [diff] [blame] | 295 | src/core/ext/census/gen/census.pb.c \ |
Alistair Veitch | a0c69f9 | 2016-08-31 12:01:27 -0700 | [diff] [blame] | 296 | src/core/ext/census/gen/trace_context.pb.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 297 | src/core/ext/census/grpc_context.c \ |
| 298 | src/core/ext/census/grpc_filter.c \ |
| 299 | src/core/ext/census/grpc_plugin.c \ |
| 300 | src/core/ext/census/initialize.c \ |
| 301 | src/core/ext/census/mlog.c \ |
| 302 | src/core/ext/census/operation.c \ |
| 303 | src/core/ext/census/placeholders.c \ |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 304 | src/core/ext/census/resource.c \ |
Vizerai | 12d1fc6 | 2016-09-09 14:22:19 -0700 | [diff] [blame] | 305 | src/core/ext/census/trace_context.c \ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 306 | src/core/ext/census/tracing.c \ |
| 307 | src/core/plugin_registry/grpc_plugin_registry.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 308 | src/boringssl/err_data.c \ |
| 309 | third_party/boringssl/crypto/aes/aes.c \ |
| 310 | third_party/boringssl/crypto/aes/mode_wrappers.c \ |
| 311 | third_party/boringssl/crypto/asn1/a_bitstr.c \ |
| 312 | third_party/boringssl/crypto/asn1/a_bool.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 313 | third_party/boringssl/crypto/asn1/a_d2i_fp.c \ |
| 314 | third_party/boringssl/crypto/asn1/a_dup.c \ |
| 315 | third_party/boringssl/crypto/asn1/a_enum.c \ |
| 316 | third_party/boringssl/crypto/asn1/a_gentm.c \ |
| 317 | third_party/boringssl/crypto/asn1/a_i2d_fp.c \ |
| 318 | third_party/boringssl/crypto/asn1/a_int.c \ |
| 319 | third_party/boringssl/crypto/asn1/a_mbstr.c \ |
| 320 | third_party/boringssl/crypto/asn1/a_object.c \ |
| 321 | third_party/boringssl/crypto/asn1/a_octet.c \ |
| 322 | third_party/boringssl/crypto/asn1/a_print.c \ |
| 323 | third_party/boringssl/crypto/asn1/a_strnid.c \ |
| 324 | third_party/boringssl/crypto/asn1/a_time.c \ |
| 325 | third_party/boringssl/crypto/asn1/a_type.c \ |
| 326 | third_party/boringssl/crypto/asn1/a_utctm.c \ |
| 327 | third_party/boringssl/crypto/asn1/a_utf8.c \ |
| 328 | third_party/boringssl/crypto/asn1/asn1_lib.c \ |
| 329 | third_party/boringssl/crypto/asn1/asn1_par.c \ |
| 330 | third_party/boringssl/crypto/asn1/asn_pack.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 331 | third_party/boringssl/crypto/asn1/f_enum.c \ |
| 332 | third_party/boringssl/crypto/asn1/f_int.c \ |
| 333 | third_party/boringssl/crypto/asn1/f_string.c \ |
| 334 | third_party/boringssl/crypto/asn1/t_bitst.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 335 | third_party/boringssl/crypto/asn1/tasn_dec.c \ |
| 336 | third_party/boringssl/crypto/asn1/tasn_enc.c \ |
| 337 | third_party/boringssl/crypto/asn1/tasn_fre.c \ |
| 338 | third_party/boringssl/crypto/asn1/tasn_new.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 339 | third_party/boringssl/crypto/asn1/tasn_typ.c \ |
| 340 | third_party/boringssl/crypto/asn1/tasn_utl.c \ |
| 341 | third_party/boringssl/crypto/asn1/x_bignum.c \ |
| 342 | third_party/boringssl/crypto/asn1/x_long.c \ |
| 343 | third_party/boringssl/crypto/base64/base64.c \ |
| 344 | third_party/boringssl/crypto/bio/bio.c \ |
| 345 | third_party/boringssl/crypto/bio/bio_mem.c \ |
| 346 | third_party/boringssl/crypto/bio/buffer.c \ |
| 347 | third_party/boringssl/crypto/bio/connect.c \ |
| 348 | third_party/boringssl/crypto/bio/fd.c \ |
| 349 | third_party/boringssl/crypto/bio/file.c \ |
| 350 | third_party/boringssl/crypto/bio/hexdump.c \ |
| 351 | third_party/boringssl/crypto/bio/pair.c \ |
| 352 | third_party/boringssl/crypto/bio/printf.c \ |
| 353 | third_party/boringssl/crypto/bio/socket.c \ |
| 354 | third_party/boringssl/crypto/bio/socket_helper.c \ |
| 355 | third_party/boringssl/crypto/bn/add.c \ |
| 356 | third_party/boringssl/crypto/bn/asm/x86_64-gcc.c \ |
| 357 | third_party/boringssl/crypto/bn/bn.c \ |
| 358 | third_party/boringssl/crypto/bn/bn_asn1.c \ |
| 359 | third_party/boringssl/crypto/bn/cmp.c \ |
| 360 | third_party/boringssl/crypto/bn/convert.c \ |
| 361 | third_party/boringssl/crypto/bn/ctx.c \ |
| 362 | third_party/boringssl/crypto/bn/div.c \ |
| 363 | third_party/boringssl/crypto/bn/exponentiation.c \ |
| 364 | third_party/boringssl/crypto/bn/gcd.c \ |
| 365 | third_party/boringssl/crypto/bn/generic.c \ |
| 366 | third_party/boringssl/crypto/bn/kronecker.c \ |
| 367 | third_party/boringssl/crypto/bn/montgomery.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 368 | third_party/boringssl/crypto/bn/montgomery_inv.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 369 | third_party/boringssl/crypto/bn/mul.c \ |
| 370 | third_party/boringssl/crypto/bn/prime.c \ |
| 371 | third_party/boringssl/crypto/bn/random.c \ |
| 372 | third_party/boringssl/crypto/bn/rsaz_exp.c \ |
| 373 | third_party/boringssl/crypto/bn/shift.c \ |
| 374 | third_party/boringssl/crypto/bn/sqrt.c \ |
| 375 | third_party/boringssl/crypto/buf/buf.c \ |
itessier | 2a52203 | 2016-04-19 17:38:51 -0700 | [diff] [blame] | 376 | third_party/boringssl/crypto/bytestring/asn1_compat.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 377 | third_party/boringssl/crypto/bytestring/ber.c \ |
| 378 | third_party/boringssl/crypto/bytestring/cbb.c \ |
| 379 | third_party/boringssl/crypto/bytestring/cbs.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 380 | third_party/boringssl/crypto/chacha/chacha.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 381 | third_party/boringssl/crypto/cipher/aead.c \ |
| 382 | third_party/boringssl/crypto/cipher/cipher.c \ |
| 383 | third_party/boringssl/crypto/cipher/derive_key.c \ |
| 384 | third_party/boringssl/crypto/cipher/e_aes.c \ |
| 385 | third_party/boringssl/crypto/cipher/e_chacha20poly1305.c \ |
| 386 | third_party/boringssl/crypto/cipher/e_des.c \ |
| 387 | third_party/boringssl/crypto/cipher/e_null.c \ |
| 388 | third_party/boringssl/crypto/cipher/e_rc2.c \ |
| 389 | third_party/boringssl/crypto/cipher/e_rc4.c \ |
| 390 | third_party/boringssl/crypto/cipher/e_ssl3.c \ |
| 391 | third_party/boringssl/crypto/cipher/e_tls.c \ |
| 392 | third_party/boringssl/crypto/cipher/tls_cbc.c \ |
| 393 | third_party/boringssl/crypto/cmac/cmac.c \ |
| 394 | third_party/boringssl/crypto/conf/conf.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 395 | third_party/boringssl/crypto/cpu-aarch64-linux.c \ |
| 396 | third_party/boringssl/crypto/cpu-arm-linux.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 397 | third_party/boringssl/crypto/cpu-arm.c \ |
| 398 | third_party/boringssl/crypto/cpu-intel.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 399 | third_party/boringssl/crypto/cpu-ppc64le.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 400 | third_party/boringssl/crypto/crypto.c \ |
| 401 | third_party/boringssl/crypto/curve25519/curve25519.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 402 | third_party/boringssl/crypto/curve25519/spake25519.c \ |
itessier | 2a52203 | 2016-04-19 17:38:51 -0700 | [diff] [blame] | 403 | third_party/boringssl/crypto/curve25519/x25519-x86_64.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 404 | third_party/boringssl/crypto/des/des.c \ |
| 405 | third_party/boringssl/crypto/dh/check.c \ |
| 406 | third_party/boringssl/crypto/dh/dh.c \ |
| 407 | third_party/boringssl/crypto/dh/dh_asn1.c \ |
| 408 | third_party/boringssl/crypto/dh/params.c \ |
| 409 | third_party/boringssl/crypto/digest/digest.c \ |
| 410 | third_party/boringssl/crypto/digest/digests.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 411 | third_party/boringssl/crypto/dsa/dsa.c \ |
| 412 | third_party/boringssl/crypto/dsa/dsa_asn1.c \ |
| 413 | third_party/boringssl/crypto/ec/ec.c \ |
| 414 | third_party/boringssl/crypto/ec/ec_asn1.c \ |
| 415 | third_party/boringssl/crypto/ec/ec_key.c \ |
| 416 | third_party/boringssl/crypto/ec/ec_montgomery.c \ |
| 417 | third_party/boringssl/crypto/ec/oct.c \ |
| 418 | third_party/boringssl/crypto/ec/p224-64.c \ |
| 419 | third_party/boringssl/crypto/ec/p256-64.c \ |
| 420 | third_party/boringssl/crypto/ec/p256-x86_64.c \ |
| 421 | third_party/boringssl/crypto/ec/simple.c \ |
| 422 | third_party/boringssl/crypto/ec/util-64.c \ |
| 423 | third_party/boringssl/crypto/ec/wnaf.c \ |
| 424 | third_party/boringssl/crypto/ecdh/ecdh.c \ |
| 425 | third_party/boringssl/crypto/ecdsa/ecdsa.c \ |
| 426 | third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c \ |
| 427 | third_party/boringssl/crypto/engine/engine.c \ |
| 428 | third_party/boringssl/crypto/err/err.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 429 | third_party/boringssl/crypto/evp/digestsign.c \ |
| 430 | third_party/boringssl/crypto/evp/evp.c \ |
| 431 | third_party/boringssl/crypto/evp/evp_asn1.c \ |
| 432 | third_party/boringssl/crypto/evp/evp_ctx.c \ |
| 433 | third_party/boringssl/crypto/evp/p_dsa_asn1.c \ |
| 434 | third_party/boringssl/crypto/evp/p_ec.c \ |
| 435 | third_party/boringssl/crypto/evp/p_ec_asn1.c \ |
| 436 | third_party/boringssl/crypto/evp/p_rsa.c \ |
| 437 | third_party/boringssl/crypto/evp/p_rsa_asn1.c \ |
| 438 | third_party/boringssl/crypto/evp/pbkdf.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 439 | third_party/boringssl/crypto/evp/print.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 440 | third_party/boringssl/crypto/evp/sign.c \ |
| 441 | third_party/boringssl/crypto/ex_data.c \ |
| 442 | third_party/boringssl/crypto/hkdf/hkdf.c \ |
| 443 | third_party/boringssl/crypto/hmac/hmac.c \ |
| 444 | third_party/boringssl/crypto/lhash/lhash.c \ |
| 445 | third_party/boringssl/crypto/md4/md4.c \ |
| 446 | third_party/boringssl/crypto/md5/md5.c \ |
| 447 | third_party/boringssl/crypto/mem.c \ |
| 448 | third_party/boringssl/crypto/modes/cbc.c \ |
| 449 | third_party/boringssl/crypto/modes/cfb.c \ |
| 450 | third_party/boringssl/crypto/modes/ctr.c \ |
| 451 | third_party/boringssl/crypto/modes/gcm.c \ |
| 452 | third_party/boringssl/crypto/modes/ofb.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 453 | third_party/boringssl/crypto/newhope/error_correction.c \ |
| 454 | third_party/boringssl/crypto/newhope/newhope.c \ |
| 455 | third_party/boringssl/crypto/newhope/ntt.c \ |
| 456 | third_party/boringssl/crypto/newhope/poly.c \ |
| 457 | third_party/boringssl/crypto/newhope/precomp.c \ |
| 458 | third_party/boringssl/crypto/newhope/reduce.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 459 | third_party/boringssl/crypto/obj/obj.c \ |
| 460 | third_party/boringssl/crypto/obj/obj_xref.c \ |
| 461 | third_party/boringssl/crypto/pem/pem_all.c \ |
| 462 | third_party/boringssl/crypto/pem/pem_info.c \ |
| 463 | third_party/boringssl/crypto/pem/pem_lib.c \ |
| 464 | third_party/boringssl/crypto/pem/pem_oth.c \ |
| 465 | third_party/boringssl/crypto/pem/pem_pk8.c \ |
| 466 | third_party/boringssl/crypto/pem/pem_pkey.c \ |
| 467 | third_party/boringssl/crypto/pem/pem_x509.c \ |
| 468 | third_party/boringssl/crypto/pem/pem_xaux.c \ |
| 469 | third_party/boringssl/crypto/pkcs8/p5_pbe.c \ |
| 470 | third_party/boringssl/crypto/pkcs8/p5_pbev2.c \ |
| 471 | third_party/boringssl/crypto/pkcs8/p8_pkey.c \ |
| 472 | third_party/boringssl/crypto/pkcs8/pkcs8.c \ |
| 473 | third_party/boringssl/crypto/poly1305/poly1305.c \ |
| 474 | third_party/boringssl/crypto/poly1305/poly1305_arm.c \ |
| 475 | third_party/boringssl/crypto/poly1305/poly1305_vec.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 476 | third_party/boringssl/crypto/rand/deterministic.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 477 | third_party/boringssl/crypto/rand/rand.c \ |
| 478 | third_party/boringssl/crypto/rand/urandom.c \ |
| 479 | third_party/boringssl/crypto/rand/windows.c \ |
| 480 | third_party/boringssl/crypto/rc4/rc4.c \ |
| 481 | third_party/boringssl/crypto/refcount_c11.c \ |
| 482 | third_party/boringssl/crypto/refcount_lock.c \ |
| 483 | third_party/boringssl/crypto/rsa/blinding.c \ |
| 484 | third_party/boringssl/crypto/rsa/padding.c \ |
| 485 | third_party/boringssl/crypto/rsa/rsa.c \ |
| 486 | third_party/boringssl/crypto/rsa/rsa_asn1.c \ |
| 487 | third_party/boringssl/crypto/rsa/rsa_impl.c \ |
| 488 | third_party/boringssl/crypto/sha/sha1.c \ |
| 489 | third_party/boringssl/crypto/sha/sha256.c \ |
| 490 | third_party/boringssl/crypto/sha/sha512.c \ |
| 491 | third_party/boringssl/crypto/stack/stack.c \ |
| 492 | third_party/boringssl/crypto/thread.c \ |
| 493 | third_party/boringssl/crypto/thread_none.c \ |
| 494 | third_party/boringssl/crypto/thread_pthread.c \ |
| 495 | third_party/boringssl/crypto/thread_win.c \ |
| 496 | third_party/boringssl/crypto/time_support.c \ |
| 497 | third_party/boringssl/crypto/x509/a_digest.c \ |
| 498 | third_party/boringssl/crypto/x509/a_sign.c \ |
| 499 | third_party/boringssl/crypto/x509/a_strex.c \ |
| 500 | third_party/boringssl/crypto/x509/a_verify.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 501 | third_party/boringssl/crypto/x509/algorithm.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 502 | third_party/boringssl/crypto/x509/asn1_gen.c \ |
| 503 | third_party/boringssl/crypto/x509/by_dir.c \ |
| 504 | third_party/boringssl/crypto/x509/by_file.c \ |
| 505 | third_party/boringssl/crypto/x509/i2d_pr.c \ |
| 506 | third_party/boringssl/crypto/x509/pkcs7.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 507 | third_party/boringssl/crypto/x509/rsa_pss.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 508 | third_party/boringssl/crypto/x509/t_crl.c \ |
| 509 | third_party/boringssl/crypto/x509/t_req.c \ |
| 510 | third_party/boringssl/crypto/x509/t_x509.c \ |
| 511 | third_party/boringssl/crypto/x509/t_x509a.c \ |
| 512 | third_party/boringssl/crypto/x509/x509.c \ |
| 513 | third_party/boringssl/crypto/x509/x509_att.c \ |
| 514 | third_party/boringssl/crypto/x509/x509_cmp.c \ |
| 515 | third_party/boringssl/crypto/x509/x509_d2.c \ |
| 516 | third_party/boringssl/crypto/x509/x509_def.c \ |
| 517 | third_party/boringssl/crypto/x509/x509_ext.c \ |
| 518 | third_party/boringssl/crypto/x509/x509_lu.c \ |
| 519 | third_party/boringssl/crypto/x509/x509_obj.c \ |
| 520 | third_party/boringssl/crypto/x509/x509_r2x.c \ |
| 521 | third_party/boringssl/crypto/x509/x509_req.c \ |
| 522 | third_party/boringssl/crypto/x509/x509_set.c \ |
| 523 | third_party/boringssl/crypto/x509/x509_trs.c \ |
| 524 | third_party/boringssl/crypto/x509/x509_txt.c \ |
| 525 | third_party/boringssl/crypto/x509/x509_v3.c \ |
| 526 | third_party/boringssl/crypto/x509/x509_vfy.c \ |
| 527 | third_party/boringssl/crypto/x509/x509_vpm.c \ |
| 528 | third_party/boringssl/crypto/x509/x509cset.c \ |
| 529 | third_party/boringssl/crypto/x509/x509name.c \ |
| 530 | third_party/boringssl/crypto/x509/x509rset.c \ |
| 531 | third_party/boringssl/crypto/x509/x509spki.c \ |
| 532 | third_party/boringssl/crypto/x509/x509type.c \ |
| 533 | third_party/boringssl/crypto/x509/x_algor.c \ |
| 534 | third_party/boringssl/crypto/x509/x_all.c \ |
| 535 | third_party/boringssl/crypto/x509/x_attrib.c \ |
| 536 | third_party/boringssl/crypto/x509/x_crl.c \ |
| 537 | third_party/boringssl/crypto/x509/x_exten.c \ |
| 538 | third_party/boringssl/crypto/x509/x_info.c \ |
| 539 | third_party/boringssl/crypto/x509/x_name.c \ |
| 540 | third_party/boringssl/crypto/x509/x_pkey.c \ |
| 541 | third_party/boringssl/crypto/x509/x_pubkey.c \ |
| 542 | third_party/boringssl/crypto/x509/x_req.c \ |
| 543 | third_party/boringssl/crypto/x509/x_sig.c \ |
| 544 | third_party/boringssl/crypto/x509/x_spki.c \ |
| 545 | third_party/boringssl/crypto/x509/x_val.c \ |
| 546 | third_party/boringssl/crypto/x509/x_x509.c \ |
| 547 | third_party/boringssl/crypto/x509/x_x509a.c \ |
| 548 | third_party/boringssl/crypto/x509v3/pcy_cache.c \ |
| 549 | third_party/boringssl/crypto/x509v3/pcy_data.c \ |
| 550 | third_party/boringssl/crypto/x509v3/pcy_lib.c \ |
| 551 | third_party/boringssl/crypto/x509v3/pcy_map.c \ |
| 552 | third_party/boringssl/crypto/x509v3/pcy_node.c \ |
| 553 | third_party/boringssl/crypto/x509v3/pcy_tree.c \ |
| 554 | third_party/boringssl/crypto/x509v3/v3_akey.c \ |
| 555 | third_party/boringssl/crypto/x509v3/v3_akeya.c \ |
| 556 | third_party/boringssl/crypto/x509v3/v3_alt.c \ |
| 557 | third_party/boringssl/crypto/x509v3/v3_bcons.c \ |
| 558 | third_party/boringssl/crypto/x509v3/v3_bitst.c \ |
| 559 | third_party/boringssl/crypto/x509v3/v3_conf.c \ |
| 560 | third_party/boringssl/crypto/x509v3/v3_cpols.c \ |
| 561 | third_party/boringssl/crypto/x509v3/v3_crld.c \ |
| 562 | third_party/boringssl/crypto/x509v3/v3_enum.c \ |
| 563 | third_party/boringssl/crypto/x509v3/v3_extku.c \ |
| 564 | third_party/boringssl/crypto/x509v3/v3_genn.c \ |
| 565 | third_party/boringssl/crypto/x509v3/v3_ia5.c \ |
| 566 | third_party/boringssl/crypto/x509v3/v3_info.c \ |
| 567 | third_party/boringssl/crypto/x509v3/v3_int.c \ |
| 568 | third_party/boringssl/crypto/x509v3/v3_lib.c \ |
| 569 | third_party/boringssl/crypto/x509v3/v3_ncons.c \ |
| 570 | third_party/boringssl/crypto/x509v3/v3_pci.c \ |
| 571 | third_party/boringssl/crypto/x509v3/v3_pcia.c \ |
| 572 | third_party/boringssl/crypto/x509v3/v3_pcons.c \ |
| 573 | third_party/boringssl/crypto/x509v3/v3_pku.c \ |
| 574 | third_party/boringssl/crypto/x509v3/v3_pmaps.c \ |
| 575 | third_party/boringssl/crypto/x509v3/v3_prn.c \ |
| 576 | third_party/boringssl/crypto/x509v3/v3_purp.c \ |
| 577 | third_party/boringssl/crypto/x509v3/v3_skey.c \ |
| 578 | third_party/boringssl/crypto/x509v3/v3_sxnet.c \ |
| 579 | third_party/boringssl/crypto/x509v3/v3_utl.c \ |
| 580 | third_party/boringssl/ssl/custom_extensions.c \ |
| 581 | third_party/boringssl/ssl/d1_both.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 582 | third_party/boringssl/ssl/d1_lib.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 583 | third_party/boringssl/ssl/d1_pkt.c \ |
| 584 | third_party/boringssl/ssl/d1_srtp.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 585 | third_party/boringssl/ssl/dtls_method.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 586 | third_party/boringssl/ssl/dtls_record.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 587 | third_party/boringssl/ssl/handshake_client.c \ |
| 588 | third_party/boringssl/ssl/handshake_server.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 589 | third_party/boringssl/ssl/s3_both.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 590 | third_party/boringssl/ssl/s3_enc.c \ |
| 591 | third_party/boringssl/ssl/s3_lib.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 592 | third_party/boringssl/ssl/s3_pkt.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 593 | third_party/boringssl/ssl/ssl_aead_ctx.c \ |
| 594 | third_party/boringssl/ssl/ssl_asn1.c \ |
| 595 | third_party/boringssl/ssl/ssl_buffer.c \ |
| 596 | third_party/boringssl/ssl/ssl_cert.c \ |
| 597 | third_party/boringssl/ssl/ssl_cipher.c \ |
itessier | 2a52203 | 2016-04-19 17:38:51 -0700 | [diff] [blame] | 598 | third_party/boringssl/ssl/ssl_ecdh.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 599 | third_party/boringssl/ssl/ssl_file.c \ |
| 600 | third_party/boringssl/ssl/ssl_lib.c \ |
| 601 | third_party/boringssl/ssl/ssl_rsa.c \ |
| 602 | third_party/boringssl/ssl/ssl_session.c \ |
| 603 | third_party/boringssl/ssl/ssl_stat.c \ |
| 604 | third_party/boringssl/ssl/t1_enc.c \ |
| 605 | third_party/boringssl/ssl/t1_lib.c \ |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 606 | third_party/boringssl/ssl/tls13_both.c \ |
| 607 | third_party/boringssl/ssl/tls13_client.c \ |
| 608 | third_party/boringssl/ssl/tls13_enc.c \ |
| 609 | third_party/boringssl/ssl/tls13_server.c \ |
| 610 | third_party/boringssl/ssl/tls_method.c \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 611 | third_party/boringssl/ssl/tls_record.c \ |
Stanley Cheung | 5ade2d4 | 2016-02-25 13:44:05 -0800 | [diff] [blame] | 612 | , $ext_shared, , -Wall -Werror \ |
| 613 | -Wno-parentheses-equality -Wno-unused-value -std=c11 \ |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 614 | -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN \ |
| 615 | -D_HAS_EXCEPTIONS=0 -DNOMINMAX) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 616 | |
| 617 | PHP_ADD_BUILD_DIR($ext_builddir/src/php/ext/grpc) |
| 618 | |
| 619 | PHP_ADD_BUILD_DIR($ext_builddir/src/boringssl) |
Craig Tiller | 8f8e9f9 | 2016-03-29 09:41:28 -0700 | [diff] [blame] | 620 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/census) |
Alistair Veitch | 30fe632 | 2016-05-23 10:11:28 -0700 | [diff] [blame] | 621 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/census/gen) |
Mark D. Roth | 2137cd8 | 2016-09-14 09:04:00 -0700 | [diff] [blame] | 622 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/client_channel) |
Craig Tiller | 023caf1 | 2016-03-29 08:00:30 -0700 | [diff] [blame] | 623 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/lb_policy/grpclb) |
David Garcia Quintas | 7f0793a | 2016-04-25 12:35:58 -0700 | [diff] [blame] | 624 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1) |
Craig Tiller | 023caf1 | 2016-03-29 08:00:30 -0700 | [diff] [blame] | 625 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/lb_policy/pick_first) |
| 626 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/lb_policy/round_robin) |
David Garcia Quintas | 862c8e9 | 2016-04-06 16:30:51 -0700 | [diff] [blame] | 627 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/load_reporting) |
Craig Tiller | 65938df | 2016-03-31 13:08:49 -0700 | [diff] [blame] | 628 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/resolver/dns/native) |
| 629 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/resolver/sockaddr) |
Craig Tiller | f82ddc4 | 2016-04-05 17:15:07 -0700 | [diff] [blame] | 630 | 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] | 631 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/client) |
Craig Tiller | c7762a8 | 2016-03-28 10:13:08 -0700 | [diff] [blame] | 632 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/client/insecure) |
| 633 | 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] | 634 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/server) |
Craig Tiller | c7762a8 | 2016-03-28 10:13:08 -0700 | [diff] [blame] | 635 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/server/insecure) |
| 636 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/server/secure) |
| 637 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/ext/transport/chttp2/transport) |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 638 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/channel) |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 639 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/compression) |
| 640 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/debug) |
| 641 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/http) |
| 642 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/iomgr) |
| 643 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/json) |
| 644 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/profiling) |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 645 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/context) |
| 646 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials) |
| 647 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/composite) |
| 648 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/fake) |
| 649 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/google_default) |
| 650 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/iam) |
| 651 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/jwt) |
| 652 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/oauth2) |
| 653 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/plugin) |
| 654 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/credentials/ssl) |
| 655 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/transport) |
| 656 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/security/util) |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 657 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/slice) |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 658 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/support) |
| 659 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/surface) |
| 660 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/transport) |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 661 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/tsi) |
Craig Tiller | fb43385 | 2016-03-29 08:51:07 -0700 | [diff] [blame] | 662 | PHP_ADD_BUILD_DIR($ext_builddir/src/core/plugin_registry) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 663 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto) |
| 664 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/aes) |
| 665 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/asn1) |
| 666 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/base64) |
| 667 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/bio) |
| 668 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/bn) |
| 669 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/bn/asm) |
| 670 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/buf) |
| 671 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/bytestring) |
| 672 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/chacha) |
| 673 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/cipher) |
| 674 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/cmac) |
| 675 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/conf) |
| 676 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/curve25519) |
| 677 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/des) |
| 678 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/dh) |
| 679 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/digest) |
| 680 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/dsa) |
| 681 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/ec) |
| 682 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/ecdh) |
| 683 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/ecdsa) |
| 684 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/engine) |
| 685 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/err) |
| 686 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/evp) |
| 687 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/hkdf) |
| 688 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/hmac) |
| 689 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/lhash) |
| 690 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/md4) |
| 691 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/md5) |
| 692 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/modes) |
Stanley Cheung | b39942f | 2017-01-12 21:31:07 -0800 | [diff] [blame] | 693 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/newhope) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 694 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/obj) |
| 695 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/pem) |
| 696 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/pkcs8) |
| 697 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/poly1305) |
| 698 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rand) |
| 699 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rc4) |
| 700 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/rsa) |
| 701 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/sha) |
| 702 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/stack) |
| 703 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/x509) |
| 704 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/crypto/x509v3) |
| 705 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/boringssl/ssl) |
Stanley Cheung | 80db5be | 2016-02-24 21:35:56 -0800 | [diff] [blame] | 706 | PHP_ADD_BUILD_DIR($ext_builddir/third_party/nanopb) |
Stanley Cheung | 5adb71f | 2016-02-13 00:03:02 -0800 | [diff] [blame] | 707 | fi |