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