Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # GRPC Chromium BUILD.gn file. | 1 # GRPC Chromium BUILD.gn file. |
| 2 # This file has been automatically generated from a template file. | 2 # This file has been automatically generated from a template file. |
| 3 # Please look at the templates directory instead. | 3 # Please look at the templates directory instead. |
| 4 # This file can be regenerated from the template by running | 4 # This file can be regenerated from the template by running |
| 5 # tools/buildgen/generate_projects.sh | 5 # tools/buildgen/generate_projects.sh |
| 6 if (is_android) { | |
| 7 import("//build/config/android/config.gni") | |
| 8 import("//build/config/android/rules.gni") | |
| 9 } | |
| 10 | |
| 6 config("grpc_config") { | 11 config("grpc_config") { |
| 7 include_dirs = [ | 12 include_dirs = [ |
| 8 ".", | 13 ".", |
| 9 "include/", | 14 "include/", |
| 10 ] | 15 ] |
| 11 | 16 |
| 12 defines = [ | 17 defines = [ |
| 13 "GRPC_USE_PROTO_LITE", | 18 "GRPC_USE_PROTO_LITE", |
| 14 # TODO(xyzzyz): the <condition_variable> header in libstdc++-4.6 we're using | 19 # TODO(xyzzyz): the <condition_variable> header in libstdc++-4.6 we're using |
| 15 # in Chromium has a bug, which causes a compilation error on Clang. | 20 # in Chromium has a bug, which causes a compilation error on Clang. |
| 16 # Therefore, we need to make gRPC not use standard library threading | 21 # Therefore, we need to make gRPC not use standard library threading |
| 17 # support. | 22 # support. |
| 18 # https://crbug.com/593874 | 23 # https://crbug.com/593874 |
| 19 "GRPC_CXX0X_NO_THREAD", | 24 "GRPC_CXX0X_NO_THREAD", |
| 20 ] | 25 ] |
| 26 | |
| 27 cflags_c = [ | |
| 28 "-std=c99", | |
| 29 "-Wimplicit-function-declaration", | |
|
xyzzyz
2016/10/21 22:41:04
Please regenerate the BUILD.gn file -- you removed
| |
| 30 ] | |
| 31 | |
| 32 if (is_android) { | |
| 33 libs = [ "log" ] # For __android_log_write | |
| 34 } | |
| 21 } | 35 } |
| 22 | 36 |
| 23 | 37 |
| 24 | 38 |
| 25 | 39 |
| 26 | 40 |
| 27 source_set("gpr") { | 41 source_set("gpr") { |
| 28 sources = [ | 42 sources = [ |
| 29 "include/grpc/support/alloc.h", | 43 "include/grpc/support/alloc.h", |
| 30 "include/grpc/support/atm.h", | 44 "include/grpc/support/atm.h", |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 47 "include/grpc/support/sync_generic.h", | 61 "include/grpc/support/sync_generic.h", |
| 48 "include/grpc/support/sync_posix.h", | 62 "include/grpc/support/sync_posix.h", |
| 49 "include/grpc/support/sync_windows.h", | 63 "include/grpc/support/sync_windows.h", |
| 50 "include/grpc/support/thd.h", | 64 "include/grpc/support/thd.h", |
| 51 "include/grpc/support/time.h", | 65 "include/grpc/support/time.h", |
| 52 "include/grpc/support/tls.h", | 66 "include/grpc/support/tls.h", |
| 53 "include/grpc/support/tls_gcc.h", | 67 "include/grpc/support/tls_gcc.h", |
| 54 "include/grpc/support/tls_msvc.h", | 68 "include/grpc/support/tls_msvc.h", |
| 55 "include/grpc/support/tls_pthread.h", | 69 "include/grpc/support/tls_pthread.h", |
| 56 "include/grpc/support/useful.h", | 70 "include/grpc/support/useful.h", |
| 57 "include/grpc/impl/codegen/alloc.h", | |
| 58 "include/grpc/impl/codegen/atm.h", | 71 "include/grpc/impl/codegen/atm.h", |
| 59 "include/grpc/impl/codegen/atm_gcc_atomic.h", | 72 "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 60 "include/grpc/impl/codegen/atm_gcc_sync.h", | 73 "include/grpc/impl/codegen/atm_gcc_sync.h", |
| 61 "include/grpc/impl/codegen/atm_windows.h", | 74 "include/grpc/impl/codegen/atm_windows.h", |
| 62 "include/grpc/impl/codegen/log.h", | 75 "include/grpc/impl/codegen/gpr_types.h", |
| 63 "include/grpc/impl/codegen/port_platform.h", | 76 "include/grpc/impl/codegen/port_platform.h", |
| 64 "include/grpc/impl/codegen/slice.h", | 77 "include/grpc/impl/codegen/slice.h", |
| 65 "include/grpc/impl/codegen/slice_buffer.h", | |
| 66 "include/grpc/impl/codegen/sync.h", | 78 "include/grpc/impl/codegen/sync.h", |
| 67 "include/grpc/impl/codegen/sync_generic.h", | 79 "include/grpc/impl/codegen/sync_generic.h", |
| 68 "include/grpc/impl/codegen/sync_posix.h", | 80 "include/grpc/impl/codegen/sync_posix.h", |
| 69 "include/grpc/impl/codegen/sync_windows.h", | 81 "include/grpc/impl/codegen/sync_windows.h", |
| 70 "include/grpc/impl/codegen/time.h", | |
| 71 "src/core/lib/profiling/timers.h", | 82 "src/core/lib/profiling/timers.h", |
| 72 "src/core/lib/support/backoff.h", | 83 "src/core/lib/support/backoff.h", |
| 73 "src/core/lib/support/block_annotate.h", | 84 "src/core/lib/support/block_annotate.h", |
| 74 "src/core/lib/support/env.h", | 85 "src/core/lib/support/env.h", |
| 75 "src/core/lib/support/mpscq.h", | 86 "src/core/lib/support/mpscq.h", |
| 76 "src/core/lib/support/murmur_hash.h", | 87 "src/core/lib/support/murmur_hash.h", |
| 77 "src/core/lib/support/percent_encoding.h", | 88 "src/core/lib/support/percent_encoding.h", |
| 78 "src/core/lib/support/stack_lockfree.h", | 89 "src/core/lib/support/stack_lockfree.h", |
| 79 "src/core/lib/support/string.h", | 90 "src/core/lib/support/string.h", |
| 80 "src/core/lib/support/string_windows.h", | 91 "src/core/lib/support/string_windows.h", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 144 | 155 |
| 145 source_set("grpc") { | 156 source_set("grpc") { |
| 146 sources = [ | 157 sources = [ |
| 147 "include/grpc/byte_buffer.h", | 158 "include/grpc/byte_buffer.h", |
| 148 "include/grpc/byte_buffer_reader.h", | 159 "include/grpc/byte_buffer_reader.h", |
| 149 "include/grpc/compression.h", | 160 "include/grpc/compression.h", |
| 150 "include/grpc/grpc.h", | 161 "include/grpc/grpc.h", |
| 151 "include/grpc/grpc_posix.h", | 162 "include/grpc/grpc_posix.h", |
| 152 "include/grpc/grpc_security_constants.h", | 163 "include/grpc/grpc_security_constants.h", |
| 153 "include/grpc/status.h", | 164 "include/grpc/status.h", |
| 154 "include/grpc/impl/codegen/byte_buffer.h", | |
| 155 "include/grpc/impl/codegen/byte_buffer_reader.h", | 165 "include/grpc/impl/codegen/byte_buffer_reader.h", |
| 156 "include/grpc/impl/codegen/compression_types.h", | 166 "include/grpc/impl/codegen/compression_types.h", |
| 157 "include/grpc/impl/codegen/connectivity_state.h", | 167 "include/grpc/impl/codegen/connectivity_state.h", |
| 158 "include/grpc/impl/codegen/grpc_types.h", | 168 "include/grpc/impl/codegen/grpc_types.h", |
| 159 "include/grpc/impl/codegen/propagation_bits.h", | 169 "include/grpc/impl/codegen/propagation_bits.h", |
| 160 "include/grpc/impl/codegen/status.h", | 170 "include/grpc/impl/codegen/status.h", |
| 161 "include/grpc/impl/codegen/alloc.h", | |
| 162 "include/grpc/impl/codegen/atm.h", | 171 "include/grpc/impl/codegen/atm.h", |
| 163 "include/grpc/impl/codegen/atm_gcc_atomic.h", | 172 "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 164 "include/grpc/impl/codegen/atm_gcc_sync.h", | 173 "include/grpc/impl/codegen/atm_gcc_sync.h", |
| 165 "include/grpc/impl/codegen/atm_windows.h", | 174 "include/grpc/impl/codegen/atm_windows.h", |
| 166 "include/grpc/impl/codegen/log.h", | 175 "include/grpc/impl/codegen/gpr_types.h", |
| 167 "include/grpc/impl/codegen/port_platform.h", | 176 "include/grpc/impl/codegen/port_platform.h", |
| 168 "include/grpc/impl/codegen/slice.h", | 177 "include/grpc/impl/codegen/slice.h", |
| 169 "include/grpc/impl/codegen/slice_buffer.h", | |
| 170 "include/grpc/impl/codegen/sync.h", | 178 "include/grpc/impl/codegen/sync.h", |
| 171 "include/grpc/impl/codegen/sync_generic.h", | 179 "include/grpc/impl/codegen/sync_generic.h", |
| 172 "include/grpc/impl/codegen/sync_posix.h", | 180 "include/grpc/impl/codegen/sync_posix.h", |
| 173 "include/grpc/impl/codegen/sync_windows.h", | 181 "include/grpc/impl/codegen/sync_windows.h", |
| 174 "include/grpc/impl/codegen/time.h", | |
| 175 "include/grpc/grpc_security.h", | 182 "include/grpc/grpc_security.h", |
| 176 "include/grpc/census.h", | |
| 177 "src/core/lib/channel/channel_args.h", | 183 "src/core/lib/channel/channel_args.h", |
| 178 "src/core/lib/channel/channel_stack.h", | 184 "src/core/lib/channel/channel_stack.h", |
| 179 "src/core/lib/channel/channel_stack_builder.h", | 185 "src/core/lib/channel/channel_stack_builder.h", |
| 180 "src/core/lib/channel/compress_filter.h", | 186 "src/core/lib/channel/compress_filter.h", |
| 181 "src/core/lib/channel/connected_channel.h", | 187 "src/core/lib/channel/connected_channel.h", |
| 182 "src/core/lib/channel/context.h", | 188 "src/core/lib/channel/context.h", |
| 189 "src/core/lib/channel/deadline_filter.h", | |
| 183 "src/core/lib/channel/handshaker.h", | 190 "src/core/lib/channel/handshaker.h", |
| 184 "src/core/lib/channel/http_client_filter.h", | 191 "src/core/lib/channel/http_client_filter.h", |
| 185 "src/core/lib/channel/http_server_filter.h", | 192 "src/core/lib/channel/http_server_filter.h", |
| 193 "src/core/lib/channel/message_size_filter.h", | |
| 186 "src/core/lib/compression/algorithm_metadata.h", | 194 "src/core/lib/compression/algorithm_metadata.h", |
| 187 "src/core/lib/compression/message_compress.h", | 195 "src/core/lib/compression/message_compress.h", |
| 188 "src/core/lib/debug/trace.h", | 196 "src/core/lib/debug/trace.h", |
| 189 "src/core/lib/http/format_request.h", | 197 "src/core/lib/http/format_request.h", |
| 190 "src/core/lib/http/httpcli.h", | 198 "src/core/lib/http/httpcli.h", |
| 191 "src/core/lib/http/parser.h", | 199 "src/core/lib/http/parser.h", |
| 192 "src/core/lib/iomgr/closure.h", | 200 "src/core/lib/iomgr/closure.h", |
| 193 "src/core/lib/iomgr/combiner.h", | 201 "src/core/lib/iomgr/combiner.h", |
| 194 "src/core/lib/iomgr/endpoint.h", | 202 "src/core/lib/iomgr/endpoint.h", |
| 195 "src/core/lib/iomgr/endpoint_pair.h", | 203 "src/core/lib/iomgr/endpoint_pair.h", |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 220 "src/core/lib/iomgr/socket_windows.h", | 228 "src/core/lib/iomgr/socket_windows.h", |
| 221 "src/core/lib/iomgr/tcp_client.h", | 229 "src/core/lib/iomgr/tcp_client.h", |
| 222 "src/core/lib/iomgr/tcp_posix.h", | 230 "src/core/lib/iomgr/tcp_posix.h", |
| 223 "src/core/lib/iomgr/tcp_server.h", | 231 "src/core/lib/iomgr/tcp_server.h", |
| 224 "src/core/lib/iomgr/tcp_windows.h", | 232 "src/core/lib/iomgr/tcp_windows.h", |
| 225 "src/core/lib/iomgr/time_averaged_stats.h", | 233 "src/core/lib/iomgr/time_averaged_stats.h", |
| 226 "src/core/lib/iomgr/timer.h", | 234 "src/core/lib/iomgr/timer.h", |
| 227 "src/core/lib/iomgr/timer_heap.h", | 235 "src/core/lib/iomgr/timer_heap.h", |
| 228 "src/core/lib/iomgr/udp_server.h", | 236 "src/core/lib/iomgr/udp_server.h", |
| 229 "src/core/lib/iomgr/unix_sockets_posix.h", | 237 "src/core/lib/iomgr/unix_sockets_posix.h", |
| 238 "src/core/lib/iomgr/wakeup_fd_cv.h", | |
| 230 "src/core/lib/iomgr/wakeup_fd_pipe.h", | 239 "src/core/lib/iomgr/wakeup_fd_pipe.h", |
| 231 "src/core/lib/iomgr/wakeup_fd_posix.h", | 240 "src/core/lib/iomgr/wakeup_fd_posix.h", |
| 232 "src/core/lib/iomgr/workqueue.h", | 241 "src/core/lib/iomgr/workqueue.h", |
| 233 "src/core/lib/iomgr/workqueue_posix.h", | |
| 234 "src/core/lib/iomgr/workqueue_windows.h", | 242 "src/core/lib/iomgr/workqueue_windows.h", |
| 235 "src/core/lib/json/json.h", | 243 "src/core/lib/json/json.h", |
| 236 "src/core/lib/json/json_common.h", | 244 "src/core/lib/json/json_common.h", |
| 237 "src/core/lib/json/json_reader.h", | 245 "src/core/lib/json/json_reader.h", |
| 238 "src/core/lib/json/json_writer.h", | 246 "src/core/lib/json/json_writer.h", |
| 239 "src/core/lib/surface/api_trace.h", | 247 "src/core/lib/surface/api_trace.h", |
| 240 "src/core/lib/surface/call.h", | 248 "src/core/lib/surface/call.h", |
| 241 "src/core/lib/surface/call_test_only.h", | 249 "src/core/lib/surface/call_test_only.h", |
| 242 "src/core/lib/surface/channel.h", | 250 "src/core/lib/surface/channel.h", |
| 243 "src/core/lib/surface/channel_init.h", | 251 "src/core/lib/surface/channel_init.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 296 "src/core/lib/security/util/b64.h", | 304 "src/core/lib/security/util/b64.h", |
| 297 "src/core/lib/security/util/json_util.h", | 305 "src/core/lib/security/util/json_util.h", |
| 298 "src/core/lib/tsi/fake_transport_security.h", | 306 "src/core/lib/tsi/fake_transport_security.h", |
| 299 "src/core/lib/tsi/ssl_transport_security.h", | 307 "src/core/lib/tsi/ssl_transport_security.h", |
| 300 "src/core/lib/tsi/ssl_types.h", | 308 "src/core/lib/tsi/ssl_types.h", |
| 301 "src/core/lib/tsi/transport_security.h", | 309 "src/core/lib/tsi/transport_security.h", |
| 302 "src/core/lib/tsi/transport_security_interface.h", | 310 "src/core/lib/tsi/transport_security_interface.h", |
| 303 "src/core/ext/client_config/client_channel.h", | 311 "src/core/ext/client_config/client_channel.h", |
| 304 "src/core/ext/client_config/client_channel_factory.h", | 312 "src/core/ext/client_config/client_channel_factory.h", |
| 305 "src/core/ext/client_config/connector.h", | 313 "src/core/ext/client_config/connector.h", |
| 314 "src/core/ext/client_config/http_connect_handshaker.h", | |
| 306 "src/core/ext/client_config/initial_connect_string.h", | 315 "src/core/ext/client_config/initial_connect_string.h", |
| 307 "src/core/ext/client_config/lb_policy.h", | 316 "src/core/ext/client_config/lb_policy.h", |
| 308 "src/core/ext/client_config/lb_policy_factory.h", | 317 "src/core/ext/client_config/lb_policy_factory.h", |
| 309 "src/core/ext/client_config/lb_policy_registry.h", | 318 "src/core/ext/client_config/lb_policy_registry.h", |
| 310 "src/core/ext/client_config/parse_address.h", | 319 "src/core/ext/client_config/parse_address.h", |
| 311 "src/core/ext/client_config/resolver.h", | 320 "src/core/ext/client_config/resolver.h", |
| 312 "src/core/ext/client_config/resolver_factory.h", | 321 "src/core/ext/client_config/resolver_factory.h", |
| 313 "src/core/ext/client_config/resolver_registry.h", | 322 "src/core/ext/client_config/resolver_registry.h", |
| 314 "src/core/ext/client_config/resolver_result.h", | 323 "src/core/ext/client_config/resolver_result.h", |
| 315 "src/core/ext/client_config/subchannel.h", | 324 "src/core/ext/client_config/subchannel.h", |
| 316 "src/core/ext/client_config/subchannel_index.h", | 325 "src/core/ext/client_config/subchannel_index.h", |
| 317 "src/core/ext/client_config/uri_parser.h", | 326 "src/core/ext/client_config/uri_parser.h", |
| 318 "src/core/ext/load_reporting/load_reporting.h", | 327 "src/core/ext/load_reporting/load_reporting.h", |
| 319 "src/core/ext/load_reporting/load_reporting_filter.h", | 328 "src/core/ext/load_reporting/load_reporting_filter.h", |
| 320 "src/core/lib/surface/init.c", | 329 "src/core/lib/surface/init.c", |
| 321 "src/core/lib/channel/channel_args.c", | 330 "src/core/lib/channel/channel_args.c", |
| 322 "src/core/lib/channel/channel_stack.c", | 331 "src/core/lib/channel/channel_stack.c", |
| 323 "src/core/lib/channel/channel_stack_builder.c", | 332 "src/core/lib/channel/channel_stack_builder.c", |
| 324 "src/core/lib/channel/compress_filter.c", | 333 "src/core/lib/channel/compress_filter.c", |
| 325 "src/core/lib/channel/connected_channel.c", | 334 "src/core/lib/channel/connected_channel.c", |
| 335 "src/core/lib/channel/deadline_filter.c", | |
| 326 "src/core/lib/channel/handshaker.c", | 336 "src/core/lib/channel/handshaker.c", |
| 327 "src/core/lib/channel/http_client_filter.c", | 337 "src/core/lib/channel/http_client_filter.c", |
| 328 "src/core/lib/channel/http_server_filter.c", | 338 "src/core/lib/channel/http_server_filter.c", |
| 339 "src/core/lib/channel/message_size_filter.c", | |
| 329 "src/core/lib/compression/compression.c", | 340 "src/core/lib/compression/compression.c", |
| 330 "src/core/lib/compression/message_compress.c", | 341 "src/core/lib/compression/message_compress.c", |
| 331 "src/core/lib/debug/trace.c", | 342 "src/core/lib/debug/trace.c", |
| 332 "src/core/lib/http/format_request.c", | 343 "src/core/lib/http/format_request.c", |
| 333 "src/core/lib/http/httpcli.c", | 344 "src/core/lib/http/httpcli.c", |
| 334 "src/core/lib/http/parser.c", | 345 "src/core/lib/http/parser.c", |
| 335 "src/core/lib/iomgr/closure.c", | 346 "src/core/lib/iomgr/closure.c", |
| 336 "src/core/lib/iomgr/combiner.c", | 347 "src/core/lib/iomgr/combiner.c", |
| 337 "src/core/lib/iomgr/endpoint.c", | 348 "src/core/lib/iomgr/endpoint.c", |
| 338 "src/core/lib/iomgr/endpoint_pair_posix.c", | 349 "src/core/lib/iomgr/endpoint_pair_posix.c", |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 365 "src/core/lib/iomgr/tcp_posix.c", | 376 "src/core/lib/iomgr/tcp_posix.c", |
| 366 "src/core/lib/iomgr/tcp_server_posix.c", | 377 "src/core/lib/iomgr/tcp_server_posix.c", |
| 367 "src/core/lib/iomgr/tcp_server_windows.c", | 378 "src/core/lib/iomgr/tcp_server_windows.c", |
| 368 "src/core/lib/iomgr/tcp_windows.c", | 379 "src/core/lib/iomgr/tcp_windows.c", |
| 369 "src/core/lib/iomgr/time_averaged_stats.c", | 380 "src/core/lib/iomgr/time_averaged_stats.c", |
| 370 "src/core/lib/iomgr/timer.c", | 381 "src/core/lib/iomgr/timer.c", |
| 371 "src/core/lib/iomgr/timer_heap.c", | 382 "src/core/lib/iomgr/timer_heap.c", |
| 372 "src/core/lib/iomgr/udp_server.c", | 383 "src/core/lib/iomgr/udp_server.c", |
| 373 "src/core/lib/iomgr/unix_sockets_posix.c", | 384 "src/core/lib/iomgr/unix_sockets_posix.c", |
| 374 "src/core/lib/iomgr/unix_sockets_posix_noop.c", | 385 "src/core/lib/iomgr/unix_sockets_posix_noop.c", |
| 386 "src/core/lib/iomgr/wakeup_fd_cv.c", | |
| 375 "src/core/lib/iomgr/wakeup_fd_eventfd.c", | 387 "src/core/lib/iomgr/wakeup_fd_eventfd.c", |
| 376 "src/core/lib/iomgr/wakeup_fd_nospecial.c", | 388 "src/core/lib/iomgr/wakeup_fd_nospecial.c", |
| 377 "src/core/lib/iomgr/wakeup_fd_pipe.c", | 389 "src/core/lib/iomgr/wakeup_fd_pipe.c", |
| 378 "src/core/lib/iomgr/wakeup_fd_posix.c", | 390 "src/core/lib/iomgr/wakeup_fd_posix.c", |
| 379 "src/core/lib/iomgr/workqueue_posix.c", | |
| 380 "src/core/lib/iomgr/workqueue_windows.c", | 391 "src/core/lib/iomgr/workqueue_windows.c", |
| 381 "src/core/lib/json/json.c", | 392 "src/core/lib/json/json.c", |
| 382 "src/core/lib/json/json_reader.c", | 393 "src/core/lib/json/json_reader.c", |
| 383 "src/core/lib/json/json_string.c", | 394 "src/core/lib/json/json_string.c", |
| 384 "src/core/lib/json/json_writer.c", | 395 "src/core/lib/json/json_writer.c", |
| 385 "src/core/lib/surface/alarm.c", | 396 "src/core/lib/surface/alarm.c", |
| 386 "src/core/lib/surface/api_trace.c", | 397 "src/core/lib/surface/api_trace.c", |
| 387 "src/core/lib/surface/byte_buffer.c", | 398 "src/core/lib/surface/byte_buffer.c", |
| 388 "src/core/lib/surface/byte_buffer_reader.c", | 399 "src/core/lib/surface/byte_buffer_reader.c", |
| 389 "src/core/lib/surface/call.c", | 400 "src/core/lib/surface/call.c", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 459 "src/core/lib/tsi/fake_transport_security.c", | 470 "src/core/lib/tsi/fake_transport_security.c", |
| 460 "src/core/lib/tsi/ssl_transport_security.c", | 471 "src/core/lib/tsi/ssl_transport_security.c", |
| 461 "src/core/lib/tsi/transport_security.c", | 472 "src/core/lib/tsi/transport_security.c", |
| 462 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c", | 473 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c", |
| 463 "src/core/ext/client_config/channel_connectivity.c", | 474 "src/core/ext/client_config/channel_connectivity.c", |
| 464 "src/core/ext/client_config/client_channel.c", | 475 "src/core/ext/client_config/client_channel.c", |
| 465 "src/core/ext/client_config/client_channel_factory.c", | 476 "src/core/ext/client_config/client_channel_factory.c", |
| 466 "src/core/ext/client_config/client_config_plugin.c", | 477 "src/core/ext/client_config/client_config_plugin.c", |
| 467 "src/core/ext/client_config/connector.c", | 478 "src/core/ext/client_config/connector.c", |
| 468 "src/core/ext/client_config/default_initial_connect_string.c", | 479 "src/core/ext/client_config/default_initial_connect_string.c", |
| 480 "src/core/ext/client_config/http_connect_handshaker.c", | |
| 469 "src/core/ext/client_config/initial_connect_string.c", | 481 "src/core/ext/client_config/initial_connect_string.c", |
| 470 "src/core/ext/client_config/lb_policy.c", | 482 "src/core/ext/client_config/lb_policy.c", |
| 471 "src/core/ext/client_config/lb_policy_factory.c", | 483 "src/core/ext/client_config/lb_policy_factory.c", |
| 472 "src/core/ext/client_config/lb_policy_registry.c", | 484 "src/core/ext/client_config/lb_policy_registry.c", |
| 473 "src/core/ext/client_config/parse_address.c", | 485 "src/core/ext/client_config/parse_address.c", |
| 474 "src/core/ext/client_config/resolver.c", | 486 "src/core/ext/client_config/resolver.c", |
| 475 "src/core/ext/client_config/resolver_factory.c", | 487 "src/core/ext/client_config/resolver_factory.c", |
| 476 "src/core/ext/client_config/resolver_registry.c", | 488 "src/core/ext/client_config/resolver_registry.c", |
| 477 "src/core/ext/client_config/resolver_result.c", | 489 "src/core/ext/client_config/resolver_result.c", |
| 478 "src/core/ext/client_config/subchannel.c", | 490 "src/core/ext/client_config/subchannel.c", |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 508 | 520 |
| 509 source_set("grpc_cronet") { | 521 source_set("grpc_cronet") { |
| 510 sources = [ | 522 sources = [ |
| 511 "include/grpc/byte_buffer.h", | 523 "include/grpc/byte_buffer.h", |
| 512 "include/grpc/byte_buffer_reader.h", | 524 "include/grpc/byte_buffer_reader.h", |
| 513 "include/grpc/compression.h", | 525 "include/grpc/compression.h", |
| 514 "include/grpc/grpc.h", | 526 "include/grpc/grpc.h", |
| 515 "include/grpc/grpc_posix.h", | 527 "include/grpc/grpc_posix.h", |
| 516 "include/grpc/grpc_security_constants.h", | 528 "include/grpc/grpc_security_constants.h", |
| 517 "include/grpc/status.h", | 529 "include/grpc/status.h", |
| 518 "include/grpc/impl/codegen/byte_buffer.h", | |
| 519 "include/grpc/impl/codegen/byte_buffer_reader.h", | 530 "include/grpc/impl/codegen/byte_buffer_reader.h", |
| 520 "include/grpc/impl/codegen/compression_types.h", | 531 "include/grpc/impl/codegen/compression_types.h", |
| 521 "include/grpc/impl/codegen/connectivity_state.h", | 532 "include/grpc/impl/codegen/connectivity_state.h", |
| 522 "include/grpc/impl/codegen/grpc_types.h", | 533 "include/grpc/impl/codegen/grpc_types.h", |
| 523 "include/grpc/impl/codegen/propagation_bits.h", | 534 "include/grpc/impl/codegen/propagation_bits.h", |
| 524 "include/grpc/impl/codegen/status.h", | 535 "include/grpc/impl/codegen/status.h", |
| 525 "include/grpc/impl/codegen/alloc.h", | |
| 526 "include/grpc/impl/codegen/atm.h", | 536 "include/grpc/impl/codegen/atm.h", |
| 527 "include/grpc/impl/codegen/atm_gcc_atomic.h", | 537 "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 528 "include/grpc/impl/codegen/atm_gcc_sync.h", | 538 "include/grpc/impl/codegen/atm_gcc_sync.h", |
| 529 "include/grpc/impl/codegen/atm_windows.h", | 539 "include/grpc/impl/codegen/atm_windows.h", |
| 530 "include/grpc/impl/codegen/log.h", | 540 "include/grpc/impl/codegen/gpr_types.h", |
| 531 "include/grpc/impl/codegen/port_platform.h", | 541 "include/grpc/impl/codegen/port_platform.h", |
| 532 "include/grpc/impl/codegen/slice.h", | 542 "include/grpc/impl/codegen/slice.h", |
| 533 "include/grpc/impl/codegen/slice_buffer.h", | |
| 534 "include/grpc/impl/codegen/sync.h", | 543 "include/grpc/impl/codegen/sync.h", |
| 535 "include/grpc/impl/codegen/sync_generic.h", | 544 "include/grpc/impl/codegen/sync_generic.h", |
| 536 "include/grpc/impl/codegen/sync_posix.h", | 545 "include/grpc/impl/codegen/sync_posix.h", |
| 537 "include/grpc/impl/codegen/sync_windows.h", | 546 "include/grpc/impl/codegen/sync_windows.h", |
| 538 "include/grpc/impl/codegen/time.h", | |
| 539 "include/grpc/grpc_cronet.h", | 547 "include/grpc/grpc_cronet.h", |
| 540 "include/grpc/grpc_security.h", | 548 "include/grpc/grpc_security.h", |
| 541 "src/core/lib/channel/channel_args.h", | 549 "src/core/lib/channel/channel_args.h", |
| 542 "src/core/lib/channel/channel_stack.h", | 550 "src/core/lib/channel/channel_stack.h", |
| 543 "src/core/lib/channel/channel_stack_builder.h", | 551 "src/core/lib/channel/channel_stack_builder.h", |
| 544 "src/core/lib/channel/compress_filter.h", | 552 "src/core/lib/channel/compress_filter.h", |
| 545 "src/core/lib/channel/connected_channel.h", | 553 "src/core/lib/channel/connected_channel.h", |
| 546 "src/core/lib/channel/context.h", | 554 "src/core/lib/channel/context.h", |
| 555 "src/core/lib/channel/deadline_filter.h", | |
| 547 "src/core/lib/channel/handshaker.h", | 556 "src/core/lib/channel/handshaker.h", |
| 548 "src/core/lib/channel/http_client_filter.h", | 557 "src/core/lib/channel/http_client_filter.h", |
| 549 "src/core/lib/channel/http_server_filter.h", | 558 "src/core/lib/channel/http_server_filter.h", |
| 559 "src/core/lib/channel/message_size_filter.h", | |
| 550 "src/core/lib/compression/algorithm_metadata.h", | 560 "src/core/lib/compression/algorithm_metadata.h", |
| 551 "src/core/lib/compression/message_compress.h", | 561 "src/core/lib/compression/message_compress.h", |
| 552 "src/core/lib/debug/trace.h", | 562 "src/core/lib/debug/trace.h", |
| 553 "src/core/lib/http/format_request.h", | 563 "src/core/lib/http/format_request.h", |
| 554 "src/core/lib/http/httpcli.h", | 564 "src/core/lib/http/httpcli.h", |
| 555 "src/core/lib/http/parser.h", | 565 "src/core/lib/http/parser.h", |
| 556 "src/core/lib/iomgr/closure.h", | 566 "src/core/lib/iomgr/closure.h", |
| 557 "src/core/lib/iomgr/combiner.h", | 567 "src/core/lib/iomgr/combiner.h", |
| 558 "src/core/lib/iomgr/endpoint.h", | 568 "src/core/lib/iomgr/endpoint.h", |
| 559 "src/core/lib/iomgr/endpoint_pair.h", | 569 "src/core/lib/iomgr/endpoint_pair.h", |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 584 "src/core/lib/iomgr/socket_windows.h", | 594 "src/core/lib/iomgr/socket_windows.h", |
| 585 "src/core/lib/iomgr/tcp_client.h", | 595 "src/core/lib/iomgr/tcp_client.h", |
| 586 "src/core/lib/iomgr/tcp_posix.h", | 596 "src/core/lib/iomgr/tcp_posix.h", |
| 587 "src/core/lib/iomgr/tcp_server.h", | 597 "src/core/lib/iomgr/tcp_server.h", |
| 588 "src/core/lib/iomgr/tcp_windows.h", | 598 "src/core/lib/iomgr/tcp_windows.h", |
| 589 "src/core/lib/iomgr/time_averaged_stats.h", | 599 "src/core/lib/iomgr/time_averaged_stats.h", |
| 590 "src/core/lib/iomgr/timer.h", | 600 "src/core/lib/iomgr/timer.h", |
| 591 "src/core/lib/iomgr/timer_heap.h", | 601 "src/core/lib/iomgr/timer_heap.h", |
| 592 "src/core/lib/iomgr/udp_server.h", | 602 "src/core/lib/iomgr/udp_server.h", |
| 593 "src/core/lib/iomgr/unix_sockets_posix.h", | 603 "src/core/lib/iomgr/unix_sockets_posix.h", |
| 604 "src/core/lib/iomgr/wakeup_fd_cv.h", | |
| 594 "src/core/lib/iomgr/wakeup_fd_pipe.h", | 605 "src/core/lib/iomgr/wakeup_fd_pipe.h", |
| 595 "src/core/lib/iomgr/wakeup_fd_posix.h", | 606 "src/core/lib/iomgr/wakeup_fd_posix.h", |
| 596 "src/core/lib/iomgr/workqueue.h", | 607 "src/core/lib/iomgr/workqueue.h", |
| 597 "src/core/lib/iomgr/workqueue_posix.h", | |
| 598 "src/core/lib/iomgr/workqueue_windows.h", | 608 "src/core/lib/iomgr/workqueue_windows.h", |
| 599 "src/core/lib/json/json.h", | 609 "src/core/lib/json/json.h", |
| 600 "src/core/lib/json/json_common.h", | 610 "src/core/lib/json/json_common.h", |
| 601 "src/core/lib/json/json_reader.h", | 611 "src/core/lib/json/json_reader.h", |
| 602 "src/core/lib/json/json_writer.h", | 612 "src/core/lib/json/json_writer.h", |
| 603 "src/core/lib/surface/api_trace.h", | 613 "src/core/lib/surface/api_trace.h", |
| 604 "src/core/lib/surface/call.h", | 614 "src/core/lib/surface/call.h", |
| 605 "src/core/lib/surface/call_test_only.h", | 615 "src/core/lib/surface/call_test_only.h", |
| 606 "src/core/lib/surface/channel.h", | 616 "src/core/lib/surface/channel.h", |
| 607 "src/core/lib/surface/channel_init.h", | 617 "src/core/lib/surface/channel_init.h", |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 637 "src/core/ext/transport/chttp2/transport/huffsyms.h", | 647 "src/core/ext/transport/chttp2/transport/huffsyms.h", |
| 638 "src/core/ext/transport/chttp2/transport/incoming_metadata.h", | 648 "src/core/ext/transport/chttp2/transport/incoming_metadata.h", |
| 639 "src/core/ext/transport/chttp2/transport/internal.h", | 649 "src/core/ext/transport/chttp2/transport/internal.h", |
| 640 "src/core/ext/transport/chttp2/transport/status_conversion.h", | 650 "src/core/ext/transport/chttp2/transport/status_conversion.h", |
| 641 "src/core/ext/transport/chttp2/transport/stream_map.h", | 651 "src/core/ext/transport/chttp2/transport/stream_map.h", |
| 642 "src/core/ext/transport/chttp2/transport/varint.h", | 652 "src/core/ext/transport/chttp2/transport/varint.h", |
| 643 "src/core/ext/transport/chttp2/alpn/alpn.h", | 653 "src/core/ext/transport/chttp2/alpn/alpn.h", |
| 644 "src/core/ext/client_config/client_channel.h", | 654 "src/core/ext/client_config/client_channel.h", |
| 645 "src/core/ext/client_config/client_channel_factory.h", | 655 "src/core/ext/client_config/client_channel_factory.h", |
| 646 "src/core/ext/client_config/connector.h", | 656 "src/core/ext/client_config/connector.h", |
| 657 "src/core/ext/client_config/http_connect_handshaker.h", | |
| 647 "src/core/ext/client_config/initial_connect_string.h", | 658 "src/core/ext/client_config/initial_connect_string.h", |
| 648 "src/core/ext/client_config/lb_policy.h", | 659 "src/core/ext/client_config/lb_policy.h", |
| 649 "src/core/ext/client_config/lb_policy_factory.h", | 660 "src/core/ext/client_config/lb_policy_factory.h", |
| 650 "src/core/ext/client_config/lb_policy_registry.h", | 661 "src/core/ext/client_config/lb_policy_registry.h", |
| 651 "src/core/ext/client_config/parse_address.h", | 662 "src/core/ext/client_config/parse_address.h", |
| 652 "src/core/ext/client_config/resolver.h", | 663 "src/core/ext/client_config/resolver.h", |
| 653 "src/core/ext/client_config/resolver_factory.h", | 664 "src/core/ext/client_config/resolver_factory.h", |
| 654 "src/core/ext/client_config/resolver_registry.h", | 665 "src/core/ext/client_config/resolver_registry.h", |
| 655 "src/core/ext/client_config/resolver_result.h", | 666 "src/core/ext/client_config/resolver_result.h", |
| 656 "src/core/ext/client_config/subchannel.h", | 667 "src/core/ext/client_config/subchannel.h", |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 679 "src/core/lib/tsi/ssl_transport_security.h", | 690 "src/core/lib/tsi/ssl_transport_security.h", |
| 680 "src/core/lib/tsi/ssl_types.h", | 691 "src/core/lib/tsi/ssl_types.h", |
| 681 "src/core/lib/tsi/transport_security.h", | 692 "src/core/lib/tsi/transport_security.h", |
| 682 "src/core/lib/tsi/transport_security_interface.h", | 693 "src/core/lib/tsi/transport_security_interface.h", |
| 683 "src/core/lib/surface/init.c", | 694 "src/core/lib/surface/init.c", |
| 684 "src/core/lib/channel/channel_args.c", | 695 "src/core/lib/channel/channel_args.c", |
| 685 "src/core/lib/channel/channel_stack.c", | 696 "src/core/lib/channel/channel_stack.c", |
| 686 "src/core/lib/channel/channel_stack_builder.c", | 697 "src/core/lib/channel/channel_stack_builder.c", |
| 687 "src/core/lib/channel/compress_filter.c", | 698 "src/core/lib/channel/compress_filter.c", |
| 688 "src/core/lib/channel/connected_channel.c", | 699 "src/core/lib/channel/connected_channel.c", |
| 700 "src/core/lib/channel/deadline_filter.c", | |
| 689 "src/core/lib/channel/handshaker.c", | 701 "src/core/lib/channel/handshaker.c", |
| 690 "src/core/lib/channel/http_client_filter.c", | 702 "src/core/lib/channel/http_client_filter.c", |
| 691 "src/core/lib/channel/http_server_filter.c", | 703 "src/core/lib/channel/http_server_filter.c", |
| 704 "src/core/lib/channel/message_size_filter.c", | |
| 692 "src/core/lib/compression/compression.c", | 705 "src/core/lib/compression/compression.c", |
| 693 "src/core/lib/compression/message_compress.c", | 706 "src/core/lib/compression/message_compress.c", |
| 694 "src/core/lib/debug/trace.c", | 707 "src/core/lib/debug/trace.c", |
| 695 "src/core/lib/http/format_request.c", | 708 "src/core/lib/http/format_request.c", |
| 696 "src/core/lib/http/httpcli.c", | 709 "src/core/lib/http/httpcli.c", |
| 697 "src/core/lib/http/parser.c", | 710 "src/core/lib/http/parser.c", |
| 698 "src/core/lib/iomgr/closure.c", | 711 "src/core/lib/iomgr/closure.c", |
| 699 "src/core/lib/iomgr/combiner.c", | 712 "src/core/lib/iomgr/combiner.c", |
| 700 "src/core/lib/iomgr/endpoint.c", | 713 "src/core/lib/iomgr/endpoint.c", |
| 701 "src/core/lib/iomgr/endpoint_pair_posix.c", | 714 "src/core/lib/iomgr/endpoint_pair_posix.c", |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 728 "src/core/lib/iomgr/tcp_posix.c", | 741 "src/core/lib/iomgr/tcp_posix.c", |
| 729 "src/core/lib/iomgr/tcp_server_posix.c", | 742 "src/core/lib/iomgr/tcp_server_posix.c", |
| 730 "src/core/lib/iomgr/tcp_server_windows.c", | 743 "src/core/lib/iomgr/tcp_server_windows.c", |
| 731 "src/core/lib/iomgr/tcp_windows.c", | 744 "src/core/lib/iomgr/tcp_windows.c", |
| 732 "src/core/lib/iomgr/time_averaged_stats.c", | 745 "src/core/lib/iomgr/time_averaged_stats.c", |
| 733 "src/core/lib/iomgr/timer.c", | 746 "src/core/lib/iomgr/timer.c", |
| 734 "src/core/lib/iomgr/timer_heap.c", | 747 "src/core/lib/iomgr/timer_heap.c", |
| 735 "src/core/lib/iomgr/udp_server.c", | 748 "src/core/lib/iomgr/udp_server.c", |
| 736 "src/core/lib/iomgr/unix_sockets_posix.c", | 749 "src/core/lib/iomgr/unix_sockets_posix.c", |
| 737 "src/core/lib/iomgr/unix_sockets_posix_noop.c", | 750 "src/core/lib/iomgr/unix_sockets_posix_noop.c", |
| 751 "src/core/lib/iomgr/wakeup_fd_cv.c", | |
| 738 "src/core/lib/iomgr/wakeup_fd_eventfd.c", | 752 "src/core/lib/iomgr/wakeup_fd_eventfd.c", |
| 739 "src/core/lib/iomgr/wakeup_fd_nospecial.c", | 753 "src/core/lib/iomgr/wakeup_fd_nospecial.c", |
| 740 "src/core/lib/iomgr/wakeup_fd_pipe.c", | 754 "src/core/lib/iomgr/wakeup_fd_pipe.c", |
| 741 "src/core/lib/iomgr/wakeup_fd_posix.c", | 755 "src/core/lib/iomgr/wakeup_fd_posix.c", |
| 742 "src/core/lib/iomgr/workqueue_posix.c", | |
| 743 "src/core/lib/iomgr/workqueue_windows.c", | 756 "src/core/lib/iomgr/workqueue_windows.c", |
| 744 "src/core/lib/json/json.c", | 757 "src/core/lib/json/json.c", |
| 745 "src/core/lib/json/json_reader.c", | 758 "src/core/lib/json/json_reader.c", |
| 746 "src/core/lib/json/json_string.c", | 759 "src/core/lib/json/json_string.c", |
| 747 "src/core/lib/json/json_writer.c", | 760 "src/core/lib/json/json_writer.c", |
| 748 "src/core/lib/surface/alarm.c", | 761 "src/core/lib/surface/alarm.c", |
| 749 "src/core/lib/surface/api_trace.c", | 762 "src/core/lib/surface/api_trace.c", |
| 750 "src/core/lib/surface/byte_buffer.c", | 763 "src/core/lib/surface/byte_buffer.c", |
| 751 "src/core/lib/surface/byte_buffer_reader.c", | 764 "src/core/lib/surface/byte_buffer_reader.c", |
| 752 "src/core/lib/surface/call.c", | 765 "src/core/lib/surface/call.c", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 796 "src/core/ext/transport/chttp2/transport/stream_map.c", | 809 "src/core/ext/transport/chttp2/transport/stream_map.c", |
| 797 "src/core/ext/transport/chttp2/transport/varint.c", | 810 "src/core/ext/transport/chttp2/transport/varint.c", |
| 798 "src/core/ext/transport/chttp2/transport/writing.c", | 811 "src/core/ext/transport/chttp2/transport/writing.c", |
| 799 "src/core/ext/transport/chttp2/alpn/alpn.c", | 812 "src/core/ext/transport/chttp2/alpn/alpn.c", |
| 800 "src/core/ext/client_config/channel_connectivity.c", | 813 "src/core/ext/client_config/channel_connectivity.c", |
| 801 "src/core/ext/client_config/client_channel.c", | 814 "src/core/ext/client_config/client_channel.c", |
| 802 "src/core/ext/client_config/client_channel_factory.c", | 815 "src/core/ext/client_config/client_channel_factory.c", |
| 803 "src/core/ext/client_config/client_config_plugin.c", | 816 "src/core/ext/client_config/client_config_plugin.c", |
| 804 "src/core/ext/client_config/connector.c", | 817 "src/core/ext/client_config/connector.c", |
| 805 "src/core/ext/client_config/default_initial_connect_string.c", | 818 "src/core/ext/client_config/default_initial_connect_string.c", |
| 819 "src/core/ext/client_config/http_connect_handshaker.c", | |
| 806 "src/core/ext/client_config/initial_connect_string.c", | 820 "src/core/ext/client_config/initial_connect_string.c", |
| 807 "src/core/ext/client_config/lb_policy.c", | 821 "src/core/ext/client_config/lb_policy.c", |
| 808 "src/core/ext/client_config/lb_policy_factory.c", | 822 "src/core/ext/client_config/lb_policy_factory.c", |
| 809 "src/core/ext/client_config/lb_policy_registry.c", | 823 "src/core/ext/client_config/lb_policy_registry.c", |
| 810 "src/core/ext/client_config/parse_address.c", | 824 "src/core/ext/client_config/parse_address.c", |
| 811 "src/core/ext/client_config/resolver.c", | 825 "src/core/ext/client_config/resolver.c", |
| 812 "src/core/ext/client_config/resolver_factory.c", | 826 "src/core/ext/client_config/resolver_factory.c", |
| 813 "src/core/ext/client_config/resolver_registry.c", | 827 "src/core/ext/client_config/resolver_registry.c", |
| 814 "src/core/ext/client_config/resolver_result.c", | 828 "src/core/ext/client_config/resolver_result.c", |
| 815 "src/core/ext/client_config/subchannel.c", | 829 "src/core/ext/client_config/subchannel.c", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 862 | 876 |
| 863 source_set("grpc_unsecure") { | 877 source_set("grpc_unsecure") { |
| 864 sources = [ | 878 sources = [ |
| 865 "include/grpc/byte_buffer.h", | 879 "include/grpc/byte_buffer.h", |
| 866 "include/grpc/byte_buffer_reader.h", | 880 "include/grpc/byte_buffer_reader.h", |
| 867 "include/grpc/compression.h", | 881 "include/grpc/compression.h", |
| 868 "include/grpc/grpc.h", | 882 "include/grpc/grpc.h", |
| 869 "include/grpc/grpc_posix.h", | 883 "include/grpc/grpc_posix.h", |
| 870 "include/grpc/grpc_security_constants.h", | 884 "include/grpc/grpc_security_constants.h", |
| 871 "include/grpc/status.h", | 885 "include/grpc/status.h", |
| 872 "include/grpc/impl/codegen/byte_buffer.h", | |
| 873 "include/grpc/impl/codegen/byte_buffer_reader.h", | 886 "include/grpc/impl/codegen/byte_buffer_reader.h", |
| 874 "include/grpc/impl/codegen/compression_types.h", | 887 "include/grpc/impl/codegen/compression_types.h", |
| 875 "include/grpc/impl/codegen/connectivity_state.h", | 888 "include/grpc/impl/codegen/connectivity_state.h", |
| 876 "include/grpc/impl/codegen/grpc_types.h", | 889 "include/grpc/impl/codegen/grpc_types.h", |
| 877 "include/grpc/impl/codegen/propagation_bits.h", | 890 "include/grpc/impl/codegen/propagation_bits.h", |
| 878 "include/grpc/impl/codegen/status.h", | 891 "include/grpc/impl/codegen/status.h", |
| 879 "include/grpc/impl/codegen/alloc.h", | |
| 880 "include/grpc/impl/codegen/atm.h", | 892 "include/grpc/impl/codegen/atm.h", |
| 881 "include/grpc/impl/codegen/atm_gcc_atomic.h", | 893 "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 882 "include/grpc/impl/codegen/atm_gcc_sync.h", | 894 "include/grpc/impl/codegen/atm_gcc_sync.h", |
| 883 "include/grpc/impl/codegen/atm_windows.h", | 895 "include/grpc/impl/codegen/atm_windows.h", |
| 884 "include/grpc/impl/codegen/log.h", | 896 "include/grpc/impl/codegen/gpr_types.h", |
| 885 "include/grpc/impl/codegen/port_platform.h", | 897 "include/grpc/impl/codegen/port_platform.h", |
| 886 "include/grpc/impl/codegen/slice.h", | 898 "include/grpc/impl/codegen/slice.h", |
| 887 "include/grpc/impl/codegen/slice_buffer.h", | |
| 888 "include/grpc/impl/codegen/sync.h", | 899 "include/grpc/impl/codegen/sync.h", |
| 889 "include/grpc/impl/codegen/sync_generic.h", | 900 "include/grpc/impl/codegen/sync_generic.h", |
| 890 "include/grpc/impl/codegen/sync_posix.h", | 901 "include/grpc/impl/codegen/sync_posix.h", |
| 891 "include/grpc/impl/codegen/sync_windows.h", | 902 "include/grpc/impl/codegen/sync_windows.h", |
| 892 "include/grpc/impl/codegen/time.h", | |
| 893 "include/grpc/census.h", | |
| 894 "src/core/lib/channel/channel_args.h", | 903 "src/core/lib/channel/channel_args.h", |
| 895 "src/core/lib/channel/channel_stack.h", | 904 "src/core/lib/channel/channel_stack.h", |
| 896 "src/core/lib/channel/channel_stack_builder.h", | 905 "src/core/lib/channel/channel_stack_builder.h", |
| 897 "src/core/lib/channel/compress_filter.h", | 906 "src/core/lib/channel/compress_filter.h", |
| 898 "src/core/lib/channel/connected_channel.h", | 907 "src/core/lib/channel/connected_channel.h", |
| 899 "src/core/lib/channel/context.h", | 908 "src/core/lib/channel/context.h", |
| 909 "src/core/lib/channel/deadline_filter.h", | |
| 900 "src/core/lib/channel/handshaker.h", | 910 "src/core/lib/channel/handshaker.h", |
| 901 "src/core/lib/channel/http_client_filter.h", | 911 "src/core/lib/channel/http_client_filter.h", |
| 902 "src/core/lib/channel/http_server_filter.h", | 912 "src/core/lib/channel/http_server_filter.h", |
| 913 "src/core/lib/channel/message_size_filter.h", | |
| 903 "src/core/lib/compression/algorithm_metadata.h", | 914 "src/core/lib/compression/algorithm_metadata.h", |
| 904 "src/core/lib/compression/message_compress.h", | 915 "src/core/lib/compression/message_compress.h", |
| 905 "src/core/lib/debug/trace.h", | 916 "src/core/lib/debug/trace.h", |
| 906 "src/core/lib/http/format_request.h", | 917 "src/core/lib/http/format_request.h", |
| 907 "src/core/lib/http/httpcli.h", | 918 "src/core/lib/http/httpcli.h", |
| 908 "src/core/lib/http/parser.h", | 919 "src/core/lib/http/parser.h", |
| 909 "src/core/lib/iomgr/closure.h", | 920 "src/core/lib/iomgr/closure.h", |
| 910 "src/core/lib/iomgr/combiner.h", | 921 "src/core/lib/iomgr/combiner.h", |
| 911 "src/core/lib/iomgr/endpoint.h", | 922 "src/core/lib/iomgr/endpoint.h", |
| 912 "src/core/lib/iomgr/endpoint_pair.h", | 923 "src/core/lib/iomgr/endpoint_pair.h", |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 937 "src/core/lib/iomgr/socket_windows.h", | 948 "src/core/lib/iomgr/socket_windows.h", |
| 938 "src/core/lib/iomgr/tcp_client.h", | 949 "src/core/lib/iomgr/tcp_client.h", |
| 939 "src/core/lib/iomgr/tcp_posix.h", | 950 "src/core/lib/iomgr/tcp_posix.h", |
| 940 "src/core/lib/iomgr/tcp_server.h", | 951 "src/core/lib/iomgr/tcp_server.h", |
| 941 "src/core/lib/iomgr/tcp_windows.h", | 952 "src/core/lib/iomgr/tcp_windows.h", |
| 942 "src/core/lib/iomgr/time_averaged_stats.h", | 953 "src/core/lib/iomgr/time_averaged_stats.h", |
| 943 "src/core/lib/iomgr/timer.h", | 954 "src/core/lib/iomgr/timer.h", |
| 944 "src/core/lib/iomgr/timer_heap.h", | 955 "src/core/lib/iomgr/timer_heap.h", |
| 945 "src/core/lib/iomgr/udp_server.h", | 956 "src/core/lib/iomgr/udp_server.h", |
| 946 "src/core/lib/iomgr/unix_sockets_posix.h", | 957 "src/core/lib/iomgr/unix_sockets_posix.h", |
| 958 "src/core/lib/iomgr/wakeup_fd_cv.h", | |
| 947 "src/core/lib/iomgr/wakeup_fd_pipe.h", | 959 "src/core/lib/iomgr/wakeup_fd_pipe.h", |
| 948 "src/core/lib/iomgr/wakeup_fd_posix.h", | 960 "src/core/lib/iomgr/wakeup_fd_posix.h", |
| 949 "src/core/lib/iomgr/workqueue.h", | 961 "src/core/lib/iomgr/workqueue.h", |
| 950 "src/core/lib/iomgr/workqueue_posix.h", | |
| 951 "src/core/lib/iomgr/workqueue_windows.h", | 962 "src/core/lib/iomgr/workqueue_windows.h", |
| 952 "src/core/lib/json/json.h", | 963 "src/core/lib/json/json.h", |
| 953 "src/core/lib/json/json_common.h", | 964 "src/core/lib/json/json_common.h", |
| 954 "src/core/lib/json/json_reader.h", | 965 "src/core/lib/json/json_reader.h", |
| 955 "src/core/lib/json/json_writer.h", | 966 "src/core/lib/json/json_writer.h", |
| 956 "src/core/lib/surface/api_trace.h", | 967 "src/core/lib/surface/api_trace.h", |
| 957 "src/core/lib/surface/call.h", | 968 "src/core/lib/surface/call.h", |
| 958 "src/core/lib/surface/call_test_only.h", | 969 "src/core/lib/surface/call_test_only.h", |
| 959 "src/core/lib/surface/channel.h", | 970 "src/core/lib/surface/channel.h", |
| 960 "src/core/lib/surface/channel_init.h", | 971 "src/core/lib/surface/channel_init.h", |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 989 "src/core/ext/transport/chttp2/transport/huffsyms.h", | 1000 "src/core/ext/transport/chttp2/transport/huffsyms.h", |
| 990 "src/core/ext/transport/chttp2/transport/incoming_metadata.h", | 1001 "src/core/ext/transport/chttp2/transport/incoming_metadata.h", |
| 991 "src/core/ext/transport/chttp2/transport/internal.h", | 1002 "src/core/ext/transport/chttp2/transport/internal.h", |
| 992 "src/core/ext/transport/chttp2/transport/status_conversion.h", | 1003 "src/core/ext/transport/chttp2/transport/status_conversion.h", |
| 993 "src/core/ext/transport/chttp2/transport/stream_map.h", | 1004 "src/core/ext/transport/chttp2/transport/stream_map.h", |
| 994 "src/core/ext/transport/chttp2/transport/varint.h", | 1005 "src/core/ext/transport/chttp2/transport/varint.h", |
| 995 "src/core/ext/transport/chttp2/alpn/alpn.h", | 1006 "src/core/ext/transport/chttp2/alpn/alpn.h", |
| 996 "src/core/ext/client_config/client_channel.h", | 1007 "src/core/ext/client_config/client_channel.h", |
| 997 "src/core/ext/client_config/client_channel_factory.h", | 1008 "src/core/ext/client_config/client_channel_factory.h", |
| 998 "src/core/ext/client_config/connector.h", | 1009 "src/core/ext/client_config/connector.h", |
| 1010 "src/core/ext/client_config/http_connect_handshaker.h", | |
| 999 "src/core/ext/client_config/initial_connect_string.h", | 1011 "src/core/ext/client_config/initial_connect_string.h", |
| 1000 "src/core/ext/client_config/lb_policy.h", | 1012 "src/core/ext/client_config/lb_policy.h", |
| 1001 "src/core/ext/client_config/lb_policy_factory.h", | 1013 "src/core/ext/client_config/lb_policy_factory.h", |
| 1002 "src/core/ext/client_config/lb_policy_registry.h", | 1014 "src/core/ext/client_config/lb_policy_registry.h", |
| 1003 "src/core/ext/client_config/parse_address.h", | 1015 "src/core/ext/client_config/parse_address.h", |
| 1004 "src/core/ext/client_config/resolver.h", | 1016 "src/core/ext/client_config/resolver.h", |
| 1005 "src/core/ext/client_config/resolver_factory.h", | 1017 "src/core/ext/client_config/resolver_factory.h", |
| 1006 "src/core/ext/client_config/resolver_registry.h", | 1018 "src/core/ext/client_config/resolver_registry.h", |
| 1007 "src/core/ext/client_config/resolver_result.h", | 1019 "src/core/ext/client_config/resolver_result.h", |
| 1008 "src/core/ext/client_config/subchannel.h", | 1020 "src/core/ext/client_config/subchannel.h", |
| 1009 "src/core/ext/client_config/subchannel_index.h", | 1021 "src/core/ext/client_config/subchannel_index.h", |
| 1010 "src/core/ext/client_config/uri_parser.h", | 1022 "src/core/ext/client_config/uri_parser.h", |
| 1011 "src/core/ext/load_reporting/load_reporting.h", | 1023 "src/core/ext/load_reporting/load_reporting.h", |
| 1012 "src/core/ext/load_reporting/load_reporting_filter.h", | 1024 "src/core/ext/load_reporting/load_reporting_filter.h", |
| 1013 "src/core/lib/surface/init.c", | 1025 "src/core/lib/surface/init.c", |
| 1014 "src/core/lib/surface/init_unsecure.c", | 1026 "src/core/lib/surface/init_unsecure.c", |
| 1015 "src/core/lib/channel/channel_args.c", | 1027 "src/core/lib/channel/channel_args.c", |
| 1016 "src/core/lib/channel/channel_stack.c", | 1028 "src/core/lib/channel/channel_stack.c", |
| 1017 "src/core/lib/channel/channel_stack_builder.c", | 1029 "src/core/lib/channel/channel_stack_builder.c", |
| 1018 "src/core/lib/channel/compress_filter.c", | 1030 "src/core/lib/channel/compress_filter.c", |
| 1019 "src/core/lib/channel/connected_channel.c", | 1031 "src/core/lib/channel/connected_channel.c", |
| 1032 "src/core/lib/channel/deadline_filter.c", | |
| 1020 "src/core/lib/channel/handshaker.c", | 1033 "src/core/lib/channel/handshaker.c", |
| 1021 "src/core/lib/channel/http_client_filter.c", | 1034 "src/core/lib/channel/http_client_filter.c", |
| 1022 "src/core/lib/channel/http_server_filter.c", | 1035 "src/core/lib/channel/http_server_filter.c", |
| 1036 "src/core/lib/channel/message_size_filter.c", | |
| 1023 "src/core/lib/compression/compression.c", | 1037 "src/core/lib/compression/compression.c", |
| 1024 "src/core/lib/compression/message_compress.c", | 1038 "src/core/lib/compression/message_compress.c", |
| 1025 "src/core/lib/debug/trace.c", | 1039 "src/core/lib/debug/trace.c", |
| 1026 "src/core/lib/http/format_request.c", | 1040 "src/core/lib/http/format_request.c", |
| 1027 "src/core/lib/http/httpcli.c", | 1041 "src/core/lib/http/httpcli.c", |
| 1028 "src/core/lib/http/parser.c", | 1042 "src/core/lib/http/parser.c", |
| 1029 "src/core/lib/iomgr/closure.c", | 1043 "src/core/lib/iomgr/closure.c", |
| 1030 "src/core/lib/iomgr/combiner.c", | 1044 "src/core/lib/iomgr/combiner.c", |
| 1031 "src/core/lib/iomgr/endpoint.c", | 1045 "src/core/lib/iomgr/endpoint.c", |
| 1032 "src/core/lib/iomgr/endpoint_pair_posix.c", | 1046 "src/core/lib/iomgr/endpoint_pair_posix.c", |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 1059 "src/core/lib/iomgr/tcp_posix.c", | 1073 "src/core/lib/iomgr/tcp_posix.c", |
| 1060 "src/core/lib/iomgr/tcp_server_posix.c", | 1074 "src/core/lib/iomgr/tcp_server_posix.c", |
| 1061 "src/core/lib/iomgr/tcp_server_windows.c", | 1075 "src/core/lib/iomgr/tcp_server_windows.c", |
| 1062 "src/core/lib/iomgr/tcp_windows.c", | 1076 "src/core/lib/iomgr/tcp_windows.c", |
| 1063 "src/core/lib/iomgr/time_averaged_stats.c", | 1077 "src/core/lib/iomgr/time_averaged_stats.c", |
| 1064 "src/core/lib/iomgr/timer.c", | 1078 "src/core/lib/iomgr/timer.c", |
| 1065 "src/core/lib/iomgr/timer_heap.c", | 1079 "src/core/lib/iomgr/timer_heap.c", |
| 1066 "src/core/lib/iomgr/udp_server.c", | 1080 "src/core/lib/iomgr/udp_server.c", |
| 1067 "src/core/lib/iomgr/unix_sockets_posix.c", | 1081 "src/core/lib/iomgr/unix_sockets_posix.c", |
| 1068 "src/core/lib/iomgr/unix_sockets_posix_noop.c", | 1082 "src/core/lib/iomgr/unix_sockets_posix_noop.c", |
| 1083 "src/core/lib/iomgr/wakeup_fd_cv.c", | |
| 1069 "src/core/lib/iomgr/wakeup_fd_eventfd.c", | 1084 "src/core/lib/iomgr/wakeup_fd_eventfd.c", |
| 1070 "src/core/lib/iomgr/wakeup_fd_nospecial.c", | 1085 "src/core/lib/iomgr/wakeup_fd_nospecial.c", |
| 1071 "src/core/lib/iomgr/wakeup_fd_pipe.c", | 1086 "src/core/lib/iomgr/wakeup_fd_pipe.c", |
| 1072 "src/core/lib/iomgr/wakeup_fd_posix.c", | 1087 "src/core/lib/iomgr/wakeup_fd_posix.c", |
| 1073 "src/core/lib/iomgr/workqueue_posix.c", | |
| 1074 "src/core/lib/iomgr/workqueue_windows.c", | 1088 "src/core/lib/iomgr/workqueue_windows.c", |
| 1075 "src/core/lib/json/json.c", | 1089 "src/core/lib/json/json.c", |
| 1076 "src/core/lib/json/json_reader.c", | 1090 "src/core/lib/json/json_reader.c", |
| 1077 "src/core/lib/json/json_string.c", | 1091 "src/core/lib/json/json_string.c", |
| 1078 "src/core/lib/json/json_writer.c", | 1092 "src/core/lib/json/json_writer.c", |
| 1079 "src/core/lib/surface/alarm.c", | 1093 "src/core/lib/surface/alarm.c", |
| 1080 "src/core/lib/surface/api_trace.c", | 1094 "src/core/lib/surface/api_trace.c", |
| 1081 "src/core/lib/surface/byte_buffer.c", | 1095 "src/core/lib/surface/byte_buffer.c", |
| 1082 "src/core/lib/surface/byte_buffer_reader.c", | 1096 "src/core/lib/surface/byte_buffer_reader.c", |
| 1083 "src/core/lib/surface/call.c", | 1097 "src/core/lib/surface/call.c", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1127 "src/core/ext/transport/chttp2/transport/writing.c", | 1141 "src/core/ext/transport/chttp2/transport/writing.c", |
| 1128 "src/core/ext/transport/chttp2/alpn/alpn.c", | 1142 "src/core/ext/transport/chttp2/alpn/alpn.c", |
| 1129 "src/core/ext/transport/chttp2/client/insecure/channel_create.c", | 1143 "src/core/ext/transport/chttp2/client/insecure/channel_create.c", |
| 1130 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c", | 1144 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c", |
| 1131 "src/core/ext/client_config/channel_connectivity.c", | 1145 "src/core/ext/client_config/channel_connectivity.c", |
| 1132 "src/core/ext/client_config/client_channel.c", | 1146 "src/core/ext/client_config/client_channel.c", |
| 1133 "src/core/ext/client_config/client_channel_factory.c", | 1147 "src/core/ext/client_config/client_channel_factory.c", |
| 1134 "src/core/ext/client_config/client_config_plugin.c", | 1148 "src/core/ext/client_config/client_config_plugin.c", |
| 1135 "src/core/ext/client_config/connector.c", | 1149 "src/core/ext/client_config/connector.c", |
| 1136 "src/core/ext/client_config/default_initial_connect_string.c", | 1150 "src/core/ext/client_config/default_initial_connect_string.c", |
| 1151 "src/core/ext/client_config/http_connect_handshaker.c", | |
| 1137 "src/core/ext/client_config/initial_connect_string.c", | 1152 "src/core/ext/client_config/initial_connect_string.c", |
| 1138 "src/core/ext/client_config/lb_policy.c", | 1153 "src/core/ext/client_config/lb_policy.c", |
| 1139 "src/core/ext/client_config/lb_policy_factory.c", | 1154 "src/core/ext/client_config/lb_policy_factory.c", |
| 1140 "src/core/ext/client_config/lb_policy_registry.c", | 1155 "src/core/ext/client_config/lb_policy_registry.c", |
| 1141 "src/core/ext/client_config/parse_address.c", | 1156 "src/core/ext/client_config/parse_address.c", |
| 1142 "src/core/ext/client_config/resolver.c", | 1157 "src/core/ext/client_config/resolver.c", |
| 1143 "src/core/ext/client_config/resolver_factory.c", | 1158 "src/core/ext/client_config/resolver_factory.c", |
| 1144 "src/core/ext/client_config/resolver_registry.c", | 1159 "src/core/ext/client_config/resolver_registry.c", |
| 1145 "src/core/ext/client_config/resolver_result.c", | 1160 "src/core/ext/client_config/resolver_result.c", |
| 1146 "src/core/ext/client_config/subchannel.c", | 1161 "src/core/ext/client_config/subchannel.c", |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1234 "include/grpc++/impl/codegen/method_handler_impl.h", | 1249 "include/grpc++/impl/codegen/method_handler_impl.h", |
| 1235 "include/grpc++/impl/codegen/rpc_method.h", | 1250 "include/grpc++/impl/codegen/rpc_method.h", |
| 1236 "include/grpc++/impl/codegen/rpc_service_method.h", | 1251 "include/grpc++/impl/codegen/rpc_service_method.h", |
| 1237 "include/grpc++/impl/codegen/security/auth_context.h", | 1252 "include/grpc++/impl/codegen/security/auth_context.h", |
| 1238 "include/grpc++/impl/codegen/serialization_traits.h", | 1253 "include/grpc++/impl/codegen/serialization_traits.h", |
| 1239 "include/grpc++/impl/codegen/server_context.h", | 1254 "include/grpc++/impl/codegen/server_context.h", |
| 1240 "include/grpc++/impl/codegen/server_interface.h", | 1255 "include/grpc++/impl/codegen/server_interface.h", |
| 1241 "include/grpc++/impl/codegen/service_type.h", | 1256 "include/grpc++/impl/codegen/service_type.h", |
| 1242 "include/grpc++/impl/codegen/status.h", | 1257 "include/grpc++/impl/codegen/status.h", |
| 1243 "include/grpc++/impl/codegen/status_code_enum.h", | 1258 "include/grpc++/impl/codegen/status_code_enum.h", |
| 1259 "include/grpc++/impl/codegen/status_helper.h", | |
| 1244 "include/grpc++/impl/codegen/string_ref.h", | 1260 "include/grpc++/impl/codegen/string_ref.h", |
| 1245 "include/grpc++/impl/codegen/stub_options.h", | 1261 "include/grpc++/impl/codegen/stub_options.h", |
| 1246 "include/grpc++/impl/codegen/sync.h", | 1262 "include/grpc++/impl/codegen/sync.h", |
| 1247 "include/grpc++/impl/codegen/sync_cxx11.h", | 1263 "include/grpc++/impl/codegen/sync_cxx11.h", |
| 1248 "include/grpc++/impl/codegen/sync_no_cxx11.h", | 1264 "include/grpc++/impl/codegen/sync_no_cxx11.h", |
| 1249 "include/grpc++/impl/codegen/sync_stream.h", | 1265 "include/grpc++/impl/codegen/sync_stream.h", |
| 1250 "include/grpc++/impl/codegen/time.h", | 1266 "include/grpc++/impl/codegen/time.h", |
| 1251 "include/grpc/impl/codegen/byte_buffer.h", | |
| 1252 "include/grpc/impl/codegen/byte_buffer_reader.h", | 1267 "include/grpc/impl/codegen/byte_buffer_reader.h", |
| 1253 "include/grpc/impl/codegen/compression_types.h", | 1268 "include/grpc/impl/codegen/compression_types.h", |
| 1254 "include/grpc/impl/codegen/connectivity_state.h", | 1269 "include/grpc/impl/codegen/connectivity_state.h", |
| 1255 "include/grpc/impl/codegen/grpc_types.h", | 1270 "include/grpc/impl/codegen/grpc_types.h", |
| 1256 "include/grpc/impl/codegen/propagation_bits.h", | 1271 "include/grpc/impl/codegen/propagation_bits.h", |
| 1257 "include/grpc/impl/codegen/status.h", | 1272 "include/grpc/impl/codegen/status.h", |
| 1258 "include/grpc/impl/codegen/alloc.h", | |
| 1259 "include/grpc/impl/codegen/atm.h", | 1273 "include/grpc/impl/codegen/atm.h", |
| 1260 "include/grpc/impl/codegen/atm_gcc_atomic.h", | 1274 "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 1261 "include/grpc/impl/codegen/atm_gcc_sync.h", | 1275 "include/grpc/impl/codegen/atm_gcc_sync.h", |
| 1262 "include/grpc/impl/codegen/atm_windows.h", | 1276 "include/grpc/impl/codegen/atm_windows.h", |
| 1263 "include/grpc/impl/codegen/log.h", | 1277 "include/grpc/impl/codegen/gpr_types.h", |
| 1264 "include/grpc/impl/codegen/port_platform.h", | 1278 "include/grpc/impl/codegen/port_platform.h", |
| 1265 "include/grpc/impl/codegen/slice.h", | 1279 "include/grpc/impl/codegen/slice.h", |
| 1266 "include/grpc/impl/codegen/slice_buffer.h", | |
| 1267 "include/grpc/impl/codegen/sync.h", | 1280 "include/grpc/impl/codegen/sync.h", |
| 1268 "include/grpc/impl/codegen/sync_generic.h", | 1281 "include/grpc/impl/codegen/sync_generic.h", |
| 1269 "include/grpc/impl/codegen/sync_posix.h", | 1282 "include/grpc/impl/codegen/sync_posix.h", |
| 1270 "include/grpc/impl/codegen/sync_windows.h", | 1283 "include/grpc/impl/codegen/sync_windows.h", |
| 1271 "include/grpc/impl/codegen/time.h", | |
| 1272 "include/grpc++/impl/codegen/core_codegen.h", | 1284 "include/grpc++/impl/codegen/core_codegen.h", |
| 1273 "src/cpp/client/secure_credentials.h", | 1285 "src/cpp/client/secure_credentials.h", |
| 1274 "src/cpp/common/secure_auth_context.h", | 1286 "src/cpp/common/secure_auth_context.h", |
| 1275 "src/cpp/server/secure_server_credentials.h", | 1287 "src/cpp/server/secure_server_credentials.h", |
| 1276 "src/cpp/client/create_channel_internal.h", | 1288 "src/cpp/client/create_channel_internal.h", |
| 1277 "src/cpp/common/channel_filter.h", | 1289 "src/cpp/common/channel_filter.h", |
| 1278 "src/cpp/server/dynamic_thread_pool.h", | 1290 "src/cpp/server/dynamic_thread_pool.h", |
| 1279 "src/cpp/server/thread_pool_interface.h", | 1291 "src/cpp/server/thread_pool_interface.h", |
| 1280 "src/cpp/client/insecure_credentials.cc", | 1292 "src/cpp/client/insecure_credentials.cc", |
| 1281 "src/cpp/client/secure_credentials.cc", | 1293 "src/cpp/client/secure_credentials.cc", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1393 "include/grpc++/impl/codegen/method_handler_impl.h", | 1405 "include/grpc++/impl/codegen/method_handler_impl.h", |
| 1394 "include/grpc++/impl/codegen/rpc_method.h", | 1406 "include/grpc++/impl/codegen/rpc_method.h", |
| 1395 "include/grpc++/impl/codegen/rpc_service_method.h", | 1407 "include/grpc++/impl/codegen/rpc_service_method.h", |
| 1396 "include/grpc++/impl/codegen/security/auth_context.h", | 1408 "include/grpc++/impl/codegen/security/auth_context.h", |
| 1397 "include/grpc++/impl/codegen/serialization_traits.h", | 1409 "include/grpc++/impl/codegen/serialization_traits.h", |
| 1398 "include/grpc++/impl/codegen/server_context.h", | 1410 "include/grpc++/impl/codegen/server_context.h", |
| 1399 "include/grpc++/impl/codegen/server_interface.h", | 1411 "include/grpc++/impl/codegen/server_interface.h", |
| 1400 "include/grpc++/impl/codegen/service_type.h", | 1412 "include/grpc++/impl/codegen/service_type.h", |
| 1401 "include/grpc++/impl/codegen/status.h", | 1413 "include/grpc++/impl/codegen/status.h", |
| 1402 "include/grpc++/impl/codegen/status_code_enum.h", | 1414 "include/grpc++/impl/codegen/status_code_enum.h", |
| 1415 "include/grpc++/impl/codegen/status_helper.h", | |
| 1403 "include/grpc++/impl/codegen/string_ref.h", | 1416 "include/grpc++/impl/codegen/string_ref.h", |
| 1404 "include/grpc++/impl/codegen/stub_options.h", | 1417 "include/grpc++/impl/codegen/stub_options.h", |
| 1405 "include/grpc++/impl/codegen/sync.h", | 1418 "include/grpc++/impl/codegen/sync.h", |
| 1406 "include/grpc++/impl/codegen/sync_cxx11.h", | 1419 "include/grpc++/impl/codegen/sync_cxx11.h", |
| 1407 "include/grpc++/impl/codegen/sync_no_cxx11.h", | 1420 "include/grpc++/impl/codegen/sync_no_cxx11.h", |
| 1408 "include/grpc++/impl/codegen/sync_stream.h", | 1421 "include/grpc++/impl/codegen/sync_stream.h", |
| 1409 "include/grpc++/impl/codegen/time.h", | 1422 "include/grpc++/impl/codegen/time.h", |
| 1410 "include/grpc/impl/codegen/byte_buffer.h", | |
| 1411 "include/grpc/impl/codegen/byte_buffer_reader.h", | 1423 "include/grpc/impl/codegen/byte_buffer_reader.h", |
| 1412 "include/grpc/impl/codegen/compression_types.h", | 1424 "include/grpc/impl/codegen/compression_types.h", |
| 1413 "include/grpc/impl/codegen/connectivity_state.h", | 1425 "include/grpc/impl/codegen/connectivity_state.h", |
| 1414 "include/grpc/impl/codegen/grpc_types.h", | 1426 "include/grpc/impl/codegen/grpc_types.h", |
| 1415 "include/grpc/impl/codegen/propagation_bits.h", | 1427 "include/grpc/impl/codegen/propagation_bits.h", |
| 1416 "include/grpc/impl/codegen/status.h", | 1428 "include/grpc/impl/codegen/status.h", |
| 1417 "include/grpc/impl/codegen/alloc.h", | |
| 1418 "include/grpc/impl/codegen/atm.h", | 1429 "include/grpc/impl/codegen/atm.h", |
| 1419 "include/grpc/impl/codegen/atm_gcc_atomic.h", | 1430 "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 1420 "include/grpc/impl/codegen/atm_gcc_sync.h", | 1431 "include/grpc/impl/codegen/atm_gcc_sync.h", |
| 1421 "include/grpc/impl/codegen/atm_windows.h", | 1432 "include/grpc/impl/codegen/atm_windows.h", |
| 1422 "include/grpc/impl/codegen/log.h", | 1433 "include/grpc/impl/codegen/gpr_types.h", |
| 1423 "include/grpc/impl/codegen/port_platform.h", | 1434 "include/grpc/impl/codegen/port_platform.h", |
| 1424 "include/grpc/impl/codegen/slice.h", | 1435 "include/grpc/impl/codegen/slice.h", |
| 1425 "include/grpc/impl/codegen/slice_buffer.h", | |
| 1426 "include/grpc/impl/codegen/sync.h", | 1436 "include/grpc/impl/codegen/sync.h", |
| 1427 "include/grpc/impl/codegen/sync_generic.h", | 1437 "include/grpc/impl/codegen/sync_generic.h", |
| 1428 "include/grpc/impl/codegen/sync_posix.h", | 1438 "include/grpc/impl/codegen/sync_posix.h", |
| 1429 "include/grpc/impl/codegen/sync_windows.h", | 1439 "include/grpc/impl/codegen/sync_windows.h", |
| 1430 "include/grpc/impl/codegen/time.h", | |
| 1431 "src/cpp/client/create_channel_internal.h", | 1440 "src/cpp/client/create_channel_internal.h", |
| 1432 "src/cpp/common/channel_filter.h", | 1441 "src/cpp/common/channel_filter.h", |
| 1433 "src/cpp/server/dynamic_thread_pool.h", | 1442 "src/cpp/server/dynamic_thread_pool.h", |
| 1434 "src/cpp/server/thread_pool_interface.h", | 1443 "src/cpp/server/thread_pool_interface.h", |
| 1435 "src/cpp/client/insecure_credentials.cc", | 1444 "src/cpp/client/insecure_credentials.cc", |
| 1436 "src/cpp/common/insecure_create_auth_context.cc", | 1445 "src/cpp/common/insecure_create_auth_context.cc", |
| 1437 "src/cpp/server/insecure_server_credentials.cc", | 1446 "src/cpp/server/insecure_server_credentials.cc", |
| 1438 "src/cpp/client/channel_cc.cc", | 1447 "src/cpp/client/channel_cc.cc", |
| 1439 "src/cpp/client/client_context.cc", | 1448 "src/cpp/client/client_context.cc", |
| 1440 "src/cpp/client/create_channel.cc", | 1449 "src/cpp/client/create_channel.cc", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1486 "src/compiler/config.h", | 1495 "src/compiler/config.h", |
| 1487 "src/compiler/cpp_generator.h", | 1496 "src/compiler/cpp_generator.h", |
| 1488 "src/compiler/cpp_generator_helpers.h", | 1497 "src/compiler/cpp_generator_helpers.h", |
| 1489 "src/compiler/csharp_generator.h", | 1498 "src/compiler/csharp_generator.h", |
| 1490 "src/compiler/csharp_generator_helpers.h", | 1499 "src/compiler/csharp_generator_helpers.h", |
| 1491 "src/compiler/generator_helpers.h", | 1500 "src/compiler/generator_helpers.h", |
| 1492 "src/compiler/node_generator.h", | 1501 "src/compiler/node_generator.h", |
| 1493 "src/compiler/node_generator_helpers.h", | 1502 "src/compiler/node_generator_helpers.h", |
| 1494 "src/compiler/objective_c_generator.h", | 1503 "src/compiler/objective_c_generator.h", |
| 1495 "src/compiler/objective_c_generator_helpers.h", | 1504 "src/compiler/objective_c_generator_helpers.h", |
| 1505 "src/compiler/php_generator.h", | |
| 1506 "src/compiler/php_generator_helpers.h", | |
| 1496 "src/compiler/python_generator.h", | 1507 "src/compiler/python_generator.h", |
| 1497 "src/compiler/ruby_generator.h", | 1508 "src/compiler/ruby_generator.h", |
| 1498 "src/compiler/ruby_generator_helpers-inl.h", | 1509 "src/compiler/ruby_generator_helpers-inl.h", |
| 1499 "src/compiler/ruby_generator_map-inl.h", | 1510 "src/compiler/ruby_generator_map-inl.h", |
| 1500 "src/compiler/ruby_generator_string-inl.h", | 1511 "src/compiler/ruby_generator_string-inl.h", |
| 1501 "src/compiler/cpp_generator.cc", | 1512 "src/compiler/cpp_generator.cc", |
| 1502 "src/compiler/csharp_generator.cc", | 1513 "src/compiler/csharp_generator.cc", |
| 1503 "src/compiler/node_generator.cc", | 1514 "src/compiler/node_generator.cc", |
| 1504 "src/compiler/objective_c_generator.cc", | 1515 "src/compiler/objective_c_generator.cc", |
| 1516 "src/compiler/php_generator.cc", | |
| 1505 "src/compiler/python_generator.cc", | 1517 "src/compiler/python_generator.cc", |
| 1506 "src/compiler/ruby_generator.cc", | 1518 "src/compiler/ruby_generator.cc", |
| 1507 ] | 1519 ] |
| 1508 deps = [ | 1520 deps = [ |
| 1509 "//third_party/protobuf:protoc_lib", | 1521 "//third_party/protobuf:protoc_lib", |
| 1510 ] | 1522 ] |
| 1511 configs -= [ "//build/config/compiler:chromium_code" ] | 1523 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1512 configs += [ | 1524 configs += [ |
| 1513 "//build/config/compiler:no_chromium_code", | 1525 "//build/config/compiler:no_chromium_code", |
| 1514 ] | 1526 ] |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 1537 "//third_party/protobuf:protobuf_config", | 1549 "//third_party/protobuf:protobuf_config", |
| 1538 ] | 1550 ] |
| 1539 public_configs = [ ":grpc_config" ] | 1551 public_configs = [ ":grpc_config" ] |
| 1540 } | 1552 } |
| 1541 | 1553 |
| 1542 } | 1554 } |
| 1543 | 1555 |
| 1544 | 1556 |
| 1545 | 1557 |
| 1546 | 1558 |
| OLD | NEW |