Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 1 | # GRPC Bazel BUILD file. |
Jorge Canizales | 3beb240 | 2015-07-02 01:30:33 -0700 | [diff] [blame] | 2 | # This currently builds C, C++ and Objective-C code. |
Nicolas "Pixel" Noble | d49893d | 2015-04-21 04:57:45 +0200 | [diff] [blame] | 3 | # This file has been automatically generated from a template file. |
| 4 | # Please look at the templates directory instead. |
murgatroid99 | f680af0 | 2015-06-22 11:20:24 -0700 | [diff] [blame] | 5 | # This file can be regenerated from the template by running |
| 6 | # tools/buildgen/generate_projects.sh |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 7 | |
| 8 | # Copyright 2015, Google Inc. |
| 9 | # All rights reserved. |
| 10 | # |
| 11 | # Redistribution and use in source and binary forms, with or without |
| 12 | # modification, are permitted provided that the following conditions are |
| 13 | # met: |
| 14 | # |
| 15 | # * Redistributions of source code must retain the above copyright |
| 16 | # notice, this list of conditions and the following disclaimer. |
| 17 | # * Redistributions in binary form must reproduce the above |
| 18 | # copyright notice, this list of conditions and the following disclaimer |
| 19 | # in the documentation and/or other materials provided with the |
| 20 | # distribution. |
| 21 | # * Neither the name of Google Inc. nor the names of its |
| 22 | # contributors may be used to endorse or promote products derived from |
| 23 | # this software without specific prior written permission. |
| 24 | # |
| 25 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 26 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 27 | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 28 | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 29 | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 30 | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 31 | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 32 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 33 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 34 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 35 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 36 | |
| 37 | licenses(["notice"]) # 3-clause BSD |
| 38 | |
Piotr Sikora | 12e26a7 | 2016-08-04 15:32:10 -0700 | [diff] [blame] | 39 | exports_files(["LICENSE"]) |
| 40 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 41 | package(default_visibility = ["//visibility:public"]) |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 42 | |
| 43 | |
| 44 | |
| 45 | |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 46 | |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 47 | cc_library( |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 48 | name = "gpr", |
| 49 | srcs = [ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 50 | "src/core/lib/profiling/timers.h", |
| 51 | "src/core/lib/support/backoff.h", |
| 52 | "src/core/lib/support/block_annotate.h", |
| 53 | "src/core/lib/support/env.h", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 54 | "src/core/lib/support/mpscq.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 55 | "src/core/lib/support/murmur_hash.h", |
Craig Tiller | 17ed6b1 | 2016-08-18 09:33:33 -0700 | [diff] [blame] | 56 | "src/core/lib/support/percent_encoding.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 57 | "src/core/lib/support/stack_lockfree.h", |
| 58 | "src/core/lib/support/string.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 59 | "src/core/lib/support/string_windows.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 60 | "src/core/lib/support/thd_internal.h", |
| 61 | "src/core/lib/support/time_precise.h", |
| 62 | "src/core/lib/support/tmpfile.h", |
| 63 | "src/core/lib/profiling/basic_timers.c", |
| 64 | "src/core/lib/profiling/stap_timers.c", |
| 65 | "src/core/lib/support/alloc.c", |
| 66 | "src/core/lib/support/avl.c", |
| 67 | "src/core/lib/support/backoff.c", |
| 68 | "src/core/lib/support/cmdline.c", |
| 69 | "src/core/lib/support/cpu_iphone.c", |
| 70 | "src/core/lib/support/cpu_linux.c", |
| 71 | "src/core/lib/support/cpu_posix.c", |
| 72 | "src/core/lib/support/cpu_windows.c", |
| 73 | "src/core/lib/support/env_linux.c", |
| 74 | "src/core/lib/support/env_posix.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 75 | "src/core/lib/support/env_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 76 | "src/core/lib/support/histogram.c", |
| 77 | "src/core/lib/support/host_port.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 78 | "src/core/lib/support/log.c", |
| 79 | "src/core/lib/support/log_android.c", |
| 80 | "src/core/lib/support/log_linux.c", |
| 81 | "src/core/lib/support/log_posix.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 82 | "src/core/lib/support/log_windows.c", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 83 | "src/core/lib/support/mpscq.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 84 | "src/core/lib/support/murmur_hash.c", |
Craig Tiller | 17ed6b1 | 2016-08-18 09:33:33 -0700 | [diff] [blame] | 85 | "src/core/lib/support/percent_encoding.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 86 | "src/core/lib/support/slice.c", |
| 87 | "src/core/lib/support/slice_buffer.c", |
| 88 | "src/core/lib/support/stack_lockfree.c", |
| 89 | "src/core/lib/support/string.c", |
| 90 | "src/core/lib/support/string_posix.c", |
Yuchen Zeng | 4594bd9 | 2016-05-31 14:06:01 -0700 | [diff] [blame] | 91 | "src/core/lib/support/string_util_windows.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 92 | "src/core/lib/support/string_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 93 | "src/core/lib/support/subprocess_posix.c", |
| 94 | "src/core/lib/support/subprocess_windows.c", |
| 95 | "src/core/lib/support/sync.c", |
| 96 | "src/core/lib/support/sync_posix.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 97 | "src/core/lib/support/sync_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 98 | "src/core/lib/support/thd.c", |
| 99 | "src/core/lib/support/thd_posix.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 100 | "src/core/lib/support/thd_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 101 | "src/core/lib/support/time.c", |
| 102 | "src/core/lib/support/time_posix.c", |
| 103 | "src/core/lib/support/time_precise.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 104 | "src/core/lib/support/time_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 105 | "src/core/lib/support/tls_pthread.c", |
Nicolas "Pixel" Noble | c4b18a5 | 2016-04-15 04:53:54 +0200 | [diff] [blame] | 106 | "src/core/lib/support/tmpfile_msys.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 107 | "src/core/lib/support/tmpfile_posix.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 108 | "src/core/lib/support/tmpfile_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 109 | "src/core/lib/support/wrap_memcpy.c", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 110 | ], |
| 111 | hdrs = [ |
| 112 | "include/grpc/support/alloc.h", |
| 113 | "include/grpc/support/atm.h", |
| 114 | "include/grpc/support/atm_gcc_atomic.h", |
| 115 | "include/grpc/support/atm_gcc_sync.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 116 | "include/grpc/support/atm_windows.h", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 117 | "include/grpc/support/avl.h", |
| 118 | "include/grpc/support/cmdline.h", |
| 119 | "include/grpc/support/cpu.h", |
| 120 | "include/grpc/support/histogram.h", |
| 121 | "include/grpc/support/host_port.h", |
| 122 | "include/grpc/support/log.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 123 | "include/grpc/support/log_windows.h", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 124 | "include/grpc/support/port_platform.h", |
| 125 | "include/grpc/support/slice.h", |
| 126 | "include/grpc/support/slice_buffer.h", |
| 127 | "include/grpc/support/string_util.h", |
| 128 | "include/grpc/support/subprocess.h", |
| 129 | "include/grpc/support/sync.h", |
| 130 | "include/grpc/support/sync_generic.h", |
| 131 | "include/grpc/support/sync_posix.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 132 | "include/grpc/support/sync_windows.h", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 133 | "include/grpc/support/thd.h", |
| 134 | "include/grpc/support/time.h", |
| 135 | "include/grpc/support/tls.h", |
| 136 | "include/grpc/support/tls_gcc.h", |
| 137 | "include/grpc/support/tls_msvc.h", |
| 138 | "include/grpc/support/tls_pthread.h", |
| 139 | "include/grpc/support/useful.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 140 | "include/grpc/impl/codegen/atm.h", |
| 141 | "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 142 | "include/grpc/impl/codegen/atm_gcc_sync.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 143 | "include/grpc/impl/codegen/atm_windows.h", |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 144 | "include/grpc/impl/codegen/gpr_types.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 145 | "include/grpc/impl/codegen/port_platform.h", |
| 146 | "include/grpc/impl/codegen/slice.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 147 | "include/grpc/impl/codegen/sync.h", |
| 148 | "include/grpc/impl/codegen/sync_generic.h", |
| 149 | "include/grpc/impl/codegen/sync_posix.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 150 | "include/grpc/impl/codegen/sync_windows.h", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 151 | ], |
| 152 | includes = [ |
| 153 | "include", |
| 154 | ".", |
| 155 | ], |
| 156 | deps = [ |
| 157 | ], |
| 158 | ) |
| 159 | |
| 160 | |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 161 | |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 162 | cc_library( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 163 | name = "grpc", |
| 164 | srcs = [ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 165 | "src/core/lib/channel/channel_args.h", |
| 166 | "src/core/lib/channel/channel_stack.h", |
| 167 | "src/core/lib/channel/channel_stack_builder.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 168 | "src/core/lib/channel/compress_filter.h", |
| 169 | "src/core/lib/channel/connected_channel.h", |
| 170 | "src/core/lib/channel/context.h", |
Mark D. Roth | 14c072c | 2016-08-26 08:31:34 -0700 | [diff] [blame] | 171 | "src/core/lib/channel/deadline_filter.h", |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 172 | "src/core/lib/channel/handshaker.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 173 | "src/core/lib/channel/http_client_filter.h", |
| 174 | "src/core/lib/channel/http_server_filter.h", |
Mark D. Roth | af00d8b | 2016-08-23 12:48:16 -0700 | [diff] [blame] | 175 | "src/core/lib/channel/message_size_filter.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 176 | "src/core/lib/compression/algorithm_metadata.h", |
| 177 | "src/core/lib/compression/message_compress.h", |
| 178 | "src/core/lib/debug/trace.h", |
| 179 | "src/core/lib/http/format_request.h", |
| 180 | "src/core/lib/http/httpcli.h", |
| 181 | "src/core/lib/http/parser.h", |
| 182 | "src/core/lib/iomgr/closure.h", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 183 | "src/core/lib/iomgr/combiner.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 184 | "src/core/lib/iomgr/endpoint.h", |
| 185 | "src/core/lib/iomgr/endpoint_pair.h", |
Craig Tiller | 27f59af | 2016-04-28 14:19:48 -0700 | [diff] [blame] | 186 | "src/core/lib/iomgr/error.h", |
Sree Kuchibhotla | f448c34 | 2016-05-19 10:51:24 -0700 | [diff] [blame] | 187 | "src/core/lib/iomgr/ev_epoll_linux.h", |
Craig Tiller | 69f3e2b | 2016-05-31 13:45:24 -0700 | [diff] [blame] | 188 | "src/core/lib/iomgr/ev_poll_and_epoll_posix.h", |
Craig Tiller | d9a60bb | 2016-03-28 23:13:19 -0700 | [diff] [blame] | 189 | "src/core/lib/iomgr/ev_poll_posix.h", |
Craig Tiller | 8a03448 | 2016-03-28 16:09:04 -0700 | [diff] [blame] | 190 | "src/core/lib/iomgr/ev_posix.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 191 | "src/core/lib/iomgr/exec_ctx.h", |
| 192 | "src/core/lib/iomgr/executor.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 193 | "src/core/lib/iomgr/iocp_windows.h", |
| 194 | "src/core/lib/iomgr/iomgr.h", |
| 195 | "src/core/lib/iomgr/iomgr_internal.h", |
| 196 | "src/core/lib/iomgr/iomgr_posix.h", |
Craig Tiller | 8517886 | 2016-05-18 16:09:16 -0700 | [diff] [blame] | 197 | "src/core/lib/iomgr/load_file.h", |
Makarand Dharmapurikar | 0579cfc | 2016-06-20 15:45:24 -0700 | [diff] [blame] | 198 | "src/core/lib/iomgr/network_status_tracker.h", |
David Garcia Quintas | 2a50dfe | 2016-05-31 15:09:12 -0700 | [diff] [blame] | 199 | "src/core/lib/iomgr/polling_entity.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 200 | "src/core/lib/iomgr/pollset.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 201 | "src/core/lib/iomgr/pollset_set.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 202 | "src/core/lib/iomgr/pollset_set_windows.h", |
| 203 | "src/core/lib/iomgr/pollset_windows.h", |
| 204 | "src/core/lib/iomgr/resolve_address.h", |
| 205 | "src/core/lib/iomgr/sockaddr.h", |
| 206 | "src/core/lib/iomgr/sockaddr_posix.h", |
| 207 | "src/core/lib/iomgr/sockaddr_utils.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 208 | "src/core/lib/iomgr/sockaddr_windows.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 209 | "src/core/lib/iomgr/socket_utils_posix.h", |
| 210 | "src/core/lib/iomgr/socket_windows.h", |
| 211 | "src/core/lib/iomgr/tcp_client.h", |
| 212 | "src/core/lib/iomgr/tcp_posix.h", |
| 213 | "src/core/lib/iomgr/tcp_server.h", |
| 214 | "src/core/lib/iomgr/tcp_windows.h", |
| 215 | "src/core/lib/iomgr/time_averaged_stats.h", |
| 216 | "src/core/lib/iomgr/timer.h", |
| 217 | "src/core/lib/iomgr/timer_heap.h", |
| 218 | "src/core/lib/iomgr/udp_server.h", |
| 219 | "src/core/lib/iomgr/unix_sockets_posix.h", |
kpayson64 | d195cf5 | 2016-10-09 18:04:00 -0700 | [diff] [blame] | 220 | "src/core/lib/iomgr/wakeup_fd_cv.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 221 | "src/core/lib/iomgr/wakeup_fd_pipe.h", |
| 222 | "src/core/lib/iomgr/wakeup_fd_posix.h", |
| 223 | "src/core/lib/iomgr/workqueue.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 224 | "src/core/lib/iomgr/workqueue_windows.h", |
| 225 | "src/core/lib/json/json.h", |
| 226 | "src/core/lib/json/json_common.h", |
| 227 | "src/core/lib/json/json_reader.h", |
| 228 | "src/core/lib/json/json_writer.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 229 | "src/core/lib/surface/api_trace.h", |
| 230 | "src/core/lib/surface/call.h", |
| 231 | "src/core/lib/surface/call_test_only.h", |
| 232 | "src/core/lib/surface/channel.h", |
| 233 | "src/core/lib/surface/channel_init.h", |
| 234 | "src/core/lib/surface/channel_stack_type.h", |
| 235 | "src/core/lib/surface/completion_queue.h", |
| 236 | "src/core/lib/surface/event_string.h", |
| 237 | "src/core/lib/surface/init.h", |
| 238 | "src/core/lib/surface/lame_client.h", |
| 239 | "src/core/lib/surface/server.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 240 | "src/core/lib/transport/byte_stream.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 241 | "src/core/lib/transport/connectivity_state.h", |
Mark D. Roth | 6a721b5 | 2016-10-14 12:43:34 -0700 | [diff] [blame] | 242 | "src/core/lib/transport/mdstr_hash_table.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 243 | "src/core/lib/transport/metadata.h", |
| 244 | "src/core/lib/transport/metadata_batch.h", |
| 245 | "src/core/lib/transport/static_metadata.h", |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 246 | "src/core/lib/transport/timeout_encoding.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 247 | "src/core/lib/transport/transport.h", |
| 248 | "src/core/lib/transport/transport_impl.h", |
Yuchen Zeng | d982bba | 2016-05-12 18:53:52 -0700 | [diff] [blame] | 249 | "src/core/ext/transport/chttp2/transport/bin_decoder.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 250 | "src/core/ext/transport/chttp2/transport/bin_encoder.h", |
| 251 | "src/core/ext/transport/chttp2/transport/chttp2_transport.h", |
| 252 | "src/core/ext/transport/chttp2/transport/frame.h", |
| 253 | "src/core/ext/transport/chttp2/transport/frame_data.h", |
| 254 | "src/core/ext/transport/chttp2/transport/frame_goaway.h", |
| 255 | "src/core/ext/transport/chttp2/transport/frame_ping.h", |
| 256 | "src/core/ext/transport/chttp2/transport/frame_rst_stream.h", |
| 257 | "src/core/ext/transport/chttp2/transport/frame_settings.h", |
| 258 | "src/core/ext/transport/chttp2/transport/frame_window_update.h", |
| 259 | "src/core/ext/transport/chttp2/transport/hpack_encoder.h", |
| 260 | "src/core/ext/transport/chttp2/transport/hpack_parser.h", |
| 261 | "src/core/ext/transport/chttp2/transport/hpack_table.h", |
| 262 | "src/core/ext/transport/chttp2/transport/http2_errors.h", |
| 263 | "src/core/ext/transport/chttp2/transport/huffsyms.h", |
| 264 | "src/core/ext/transport/chttp2/transport/incoming_metadata.h", |
| 265 | "src/core/ext/transport/chttp2/transport/internal.h", |
| 266 | "src/core/ext/transport/chttp2/transport/status_conversion.h", |
| 267 | "src/core/ext/transport/chttp2/transport/stream_map.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 268 | "src/core/ext/transport/chttp2/transport/varint.h", |
| 269 | "src/core/ext/transport/chttp2/alpn/alpn.h", |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 270 | "src/core/lib/security/context/security_context.h", |
| 271 | "src/core/lib/security/credentials/composite/composite_credentials.h", |
| 272 | "src/core/lib/security/credentials/credentials.h", |
| 273 | "src/core/lib/security/credentials/fake/fake_credentials.h", |
| 274 | "src/core/lib/security/credentials/google_default/google_default_credentials.h", |
| 275 | "src/core/lib/security/credentials/iam/iam_credentials.h", |
| 276 | "src/core/lib/security/credentials/jwt/json_token.h", |
| 277 | "src/core/lib/security/credentials/jwt/jwt_credentials.h", |
| 278 | "src/core/lib/security/credentials/jwt/jwt_verifier.h", |
| 279 | "src/core/lib/security/credentials/oauth2/oauth2_credentials.h", |
| 280 | "src/core/lib/security/credentials/plugin/plugin_credentials.h", |
| 281 | "src/core/lib/security/credentials/ssl/ssl_credentials.h", |
| 282 | "src/core/lib/security/transport/auth_filters.h", |
| 283 | "src/core/lib/security/transport/handshake.h", |
| 284 | "src/core/lib/security/transport/secure_endpoint.h", |
| 285 | "src/core/lib/security/transport/security_connector.h", |
Craig Tiller | ddad978 | 2016-05-05 17:11:31 -0700 | [diff] [blame] | 286 | "src/core/lib/security/transport/tsi_error.h", |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 287 | "src/core/lib/security/util/b64.h", |
| 288 | "src/core/lib/security/util/json_util.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 289 | "src/core/lib/tsi/fake_transport_security.h", |
| 290 | "src/core/lib/tsi/ssl_transport_security.h", |
| 291 | "src/core/lib/tsi/ssl_types.h", |
| 292 | "src/core/lib/tsi/transport_security.h", |
| 293 | "src/core/lib/tsi/transport_security_interface.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 294 | "src/core/ext/client_config/client_channel.h", |
| 295 | "src/core/ext/client_config/client_channel_factory.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 296 | "src/core/ext/client_config/connector.h", |
Mark D. Roth | 1102a9e | 2016-07-22 09:10:01 -0700 | [diff] [blame] | 297 | "src/core/ext/client_config/http_connect_handshaker.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 298 | "src/core/ext/client_config/initial_connect_string.h", |
| 299 | "src/core/ext/client_config/lb_policy.h", |
| 300 | "src/core/ext/client_config/lb_policy_factory.h", |
| 301 | "src/core/ext/client_config/lb_policy_registry.h", |
Mark D. Roth | 4c3a468 | 2016-09-23 15:19:26 -0700 | [diff] [blame] | 302 | "src/core/ext/client_config/method_config.h", |
David Garcia Quintas | 9885bff | 2016-04-07 17:31:29 -0700 | [diff] [blame] | 303 | "src/core/ext/client_config/parse_address.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 304 | "src/core/ext/client_config/resolver.h", |
| 305 | "src/core/ext/client_config/resolver_factory.h", |
| 306 | "src/core/ext/client_config/resolver_registry.h", |
Mark D. Roth | ff4df06 | 2016-08-22 15:02:49 -0700 | [diff] [blame] | 307 | "src/core/ext/client_config/resolver_result.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 308 | "src/core/ext/client_config/subchannel.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 309 | "src/core/ext/client_config/subchannel_index.h", |
| 310 | "src/core/ext/client_config/uri_parser.h", |
David Garcia Quintas | b2e986b | 2016-06-15 23:55:50 -0700 | [diff] [blame] | 311 | "src/core/ext/lb_policy/grpclb/grpclb.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 312 | "src/core/ext/lb_policy/grpclb/load_balancer_api.h", |
David Garcia Quintas | 7f0793a | 2016-04-25 12:35:58 -0700 | [diff] [blame] | 313 | "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h", |
David Garcia Quintas | b41363e | 2016-04-29 00:41:21 -0700 | [diff] [blame] | 314 | "src/core/ext/load_reporting/load_reporting.h", |
| 315 | "src/core/ext/load_reporting/load_reporting_filter.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 316 | "src/core/ext/census/aggregation.h", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 317 | "src/core/ext/census/base_resources.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 318 | "src/core/ext/census/census_interface.h", |
| 319 | "src/core/ext/census/census_rpc_stats.h", |
Alistair Veitch | 30fe632 | 2016-05-23 10:11:28 -0700 | [diff] [blame] | 320 | "src/core/ext/census/gen/census.pb.h", |
Alistair Veitch | a0c69f9 | 2016-08-31 12:01:27 -0700 | [diff] [blame] | 321 | "src/core/ext/census/gen/trace_context.pb.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 322 | "src/core/ext/census/grpc_filter.h", |
| 323 | "src/core/ext/census/mlog.h", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 324 | "src/core/ext/census/resource.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 325 | "src/core/ext/census/rpc_metric_id.h", |
Vizerai | 12d1fc6 | 2016-09-09 14:22:19 -0700 | [diff] [blame] | 326 | "src/core/ext/census/trace_context.h", |
Craig Tiller | 3ab2fe0 | 2016-04-11 20:11:18 -0700 | [diff] [blame] | 327 | "src/core/lib/surface/init.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 328 | "src/core/lib/channel/channel_args.c", |
| 329 | "src/core/lib/channel/channel_stack.c", |
| 330 | "src/core/lib/channel/channel_stack_builder.c", |
| 331 | "src/core/lib/channel/compress_filter.c", |
| 332 | "src/core/lib/channel/connected_channel.c", |
Mark D. Roth | 14c072c | 2016-08-26 08:31:34 -0700 | [diff] [blame] | 333 | "src/core/lib/channel/deadline_filter.c", |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 334 | "src/core/lib/channel/handshaker.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 335 | "src/core/lib/channel/http_client_filter.c", |
| 336 | "src/core/lib/channel/http_server_filter.c", |
Mark D. Roth | af00d8b | 2016-08-23 12:48:16 -0700 | [diff] [blame] | 337 | "src/core/lib/channel/message_size_filter.c", |
David Garcia Quintas | ac09447 | 2016-05-18 20:25:57 -0700 | [diff] [blame] | 338 | "src/core/lib/compression/compression.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 339 | "src/core/lib/compression/message_compress.c", |
| 340 | "src/core/lib/debug/trace.c", |
| 341 | "src/core/lib/http/format_request.c", |
| 342 | "src/core/lib/http/httpcli.c", |
| 343 | "src/core/lib/http/parser.c", |
| 344 | "src/core/lib/iomgr/closure.c", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 345 | "src/core/lib/iomgr/combiner.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 346 | "src/core/lib/iomgr/endpoint.c", |
| 347 | "src/core/lib/iomgr/endpoint_pair_posix.c", |
| 348 | "src/core/lib/iomgr/endpoint_pair_windows.c", |
Craig Tiller | 27f59af | 2016-04-28 14:19:48 -0700 | [diff] [blame] | 349 | "src/core/lib/iomgr/error.c", |
Sree Kuchibhotla | f448c34 | 2016-05-19 10:51:24 -0700 | [diff] [blame] | 350 | "src/core/lib/iomgr/ev_epoll_linux.c", |
Craig Tiller | 69f3e2b | 2016-05-31 13:45:24 -0700 | [diff] [blame] | 351 | "src/core/lib/iomgr/ev_poll_and_epoll_posix.c", |
Craig Tiller | d9a60bb | 2016-03-28 23:13:19 -0700 | [diff] [blame] | 352 | "src/core/lib/iomgr/ev_poll_posix.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 353 | "src/core/lib/iomgr/ev_posix.c", |
| 354 | "src/core/lib/iomgr/exec_ctx.c", |
| 355 | "src/core/lib/iomgr/executor.c", |
| 356 | "src/core/lib/iomgr/iocp_windows.c", |
| 357 | "src/core/lib/iomgr/iomgr.c", |
| 358 | "src/core/lib/iomgr/iomgr_posix.c", |
| 359 | "src/core/lib/iomgr/iomgr_windows.c", |
Craig Tiller | 8517886 | 2016-05-18 16:09:16 -0700 | [diff] [blame] | 360 | "src/core/lib/iomgr/load_file.c", |
Makarand Dharmapurikar | 0579cfc | 2016-06-20 15:45:24 -0700 | [diff] [blame] | 361 | "src/core/lib/iomgr/network_status_tracker.c", |
David Garcia Quintas | 2a50dfe | 2016-05-31 15:09:12 -0700 | [diff] [blame] | 362 | "src/core/lib/iomgr/polling_entity.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 363 | "src/core/lib/iomgr/pollset_set_windows.c", |
| 364 | "src/core/lib/iomgr/pollset_windows.c", |
| 365 | "src/core/lib/iomgr/resolve_address_posix.c", |
| 366 | "src/core/lib/iomgr/resolve_address_windows.c", |
| 367 | "src/core/lib/iomgr/sockaddr_utils.c", |
| 368 | "src/core/lib/iomgr/socket_utils_common_posix.c", |
| 369 | "src/core/lib/iomgr/socket_utils_linux.c", |
| 370 | "src/core/lib/iomgr/socket_utils_posix.c", |
| 371 | "src/core/lib/iomgr/socket_windows.c", |
| 372 | "src/core/lib/iomgr/tcp_client_posix.c", |
| 373 | "src/core/lib/iomgr/tcp_client_windows.c", |
| 374 | "src/core/lib/iomgr/tcp_posix.c", |
| 375 | "src/core/lib/iomgr/tcp_server_posix.c", |
| 376 | "src/core/lib/iomgr/tcp_server_windows.c", |
| 377 | "src/core/lib/iomgr/tcp_windows.c", |
| 378 | "src/core/lib/iomgr/time_averaged_stats.c", |
| 379 | "src/core/lib/iomgr/timer.c", |
| 380 | "src/core/lib/iomgr/timer_heap.c", |
| 381 | "src/core/lib/iomgr/udp_server.c", |
| 382 | "src/core/lib/iomgr/unix_sockets_posix.c", |
| 383 | "src/core/lib/iomgr/unix_sockets_posix_noop.c", |
kpayson64 | d195cf5 | 2016-10-09 18:04:00 -0700 | [diff] [blame] | 384 | "src/core/lib/iomgr/wakeup_fd_cv.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 385 | "src/core/lib/iomgr/wakeup_fd_eventfd.c", |
| 386 | "src/core/lib/iomgr/wakeup_fd_nospecial.c", |
| 387 | "src/core/lib/iomgr/wakeup_fd_pipe.c", |
| 388 | "src/core/lib/iomgr/wakeup_fd_posix.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 389 | "src/core/lib/iomgr/workqueue_windows.c", |
| 390 | "src/core/lib/json/json.c", |
| 391 | "src/core/lib/json/json_reader.c", |
| 392 | "src/core/lib/json/json_string.c", |
| 393 | "src/core/lib/json/json_writer.c", |
| 394 | "src/core/lib/surface/alarm.c", |
| 395 | "src/core/lib/surface/api_trace.c", |
| 396 | "src/core/lib/surface/byte_buffer.c", |
| 397 | "src/core/lib/surface/byte_buffer_reader.c", |
| 398 | "src/core/lib/surface/call.c", |
| 399 | "src/core/lib/surface/call_details.c", |
| 400 | "src/core/lib/surface/call_log_batch.c", |
| 401 | "src/core/lib/surface/channel.c", |
| 402 | "src/core/lib/surface/channel_init.c", |
| 403 | "src/core/lib/surface/channel_ping.c", |
| 404 | "src/core/lib/surface/channel_stack_type.c", |
| 405 | "src/core/lib/surface/completion_queue.c", |
| 406 | "src/core/lib/surface/event_string.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 407 | "src/core/lib/surface/lame_client.c", |
| 408 | "src/core/lib/surface/metadata_array.c", |
| 409 | "src/core/lib/surface/server.c", |
| 410 | "src/core/lib/surface/validate_metadata.c", |
| 411 | "src/core/lib/surface/version.c", |
| 412 | "src/core/lib/transport/byte_stream.c", |
| 413 | "src/core/lib/transport/connectivity_state.c", |
Mark D. Roth | 6a721b5 | 2016-10-14 12:43:34 -0700 | [diff] [blame] | 414 | "src/core/lib/transport/mdstr_hash_table.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 415 | "src/core/lib/transport/metadata.c", |
| 416 | "src/core/lib/transport/metadata_batch.c", |
| 417 | "src/core/lib/transport/static_metadata.c", |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 418 | "src/core/lib/transport/timeout_encoding.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 419 | "src/core/lib/transport/transport.c", |
| 420 | "src/core/lib/transport/transport_op_string.c", |
Craig Tiller | 44cc10b | 2016-03-28 10:45:29 -0700 | [diff] [blame] | 421 | "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c", |
Yuchen Zeng | d982bba | 2016-05-12 18:53:52 -0700 | [diff] [blame] | 422 | "src/core/ext/transport/chttp2/transport/bin_decoder.c", |
Craig Tiller | f82ddc4 | 2016-04-05 17:15:07 -0700 | [diff] [blame] | 423 | "src/core/ext/transport/chttp2/transport/bin_encoder.c", |
| 424 | "src/core/ext/transport/chttp2/transport/chttp2_plugin.c", |
Craig Tiller | 44cc10b | 2016-03-28 10:45:29 -0700 | [diff] [blame] | 425 | "src/core/ext/transport/chttp2/transport/chttp2_transport.c", |
| 426 | "src/core/ext/transport/chttp2/transport/frame_data.c", |
| 427 | "src/core/ext/transport/chttp2/transport/frame_goaway.c", |
| 428 | "src/core/ext/transport/chttp2/transport/frame_ping.c", |
| 429 | "src/core/ext/transport/chttp2/transport/frame_rst_stream.c", |
| 430 | "src/core/ext/transport/chttp2/transport/frame_settings.c", |
| 431 | "src/core/ext/transport/chttp2/transport/frame_window_update.c", |
| 432 | "src/core/ext/transport/chttp2/transport/hpack_encoder.c", |
| 433 | "src/core/ext/transport/chttp2/transport/hpack_parser.c", |
| 434 | "src/core/ext/transport/chttp2/transport/hpack_table.c", |
| 435 | "src/core/ext/transport/chttp2/transport/huffsyms.c", |
| 436 | "src/core/ext/transport/chttp2/transport/incoming_metadata.c", |
| 437 | "src/core/ext/transport/chttp2/transport/parsing.c", |
| 438 | "src/core/ext/transport/chttp2/transport/status_conversion.c", |
| 439 | "src/core/ext/transport/chttp2/transport/stream_lists.c", |
| 440 | "src/core/ext/transport/chttp2/transport/stream_map.c", |
Craig Tiller | 44cc10b | 2016-03-28 10:45:29 -0700 | [diff] [blame] | 441 | "src/core/ext/transport/chttp2/transport/varint.c", |
| 442 | "src/core/ext/transport/chttp2/transport/writing.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 443 | "src/core/ext/transport/chttp2/alpn/alpn.c", |
Craig Tiller | 44cc10b | 2016-03-28 10:45:29 -0700 | [diff] [blame] | 444 | "src/core/lib/http/httpcli_security_connector.c", |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 445 | "src/core/lib/security/context/security_context.c", |
| 446 | "src/core/lib/security/credentials/composite/composite_credentials.c", |
| 447 | "src/core/lib/security/credentials/credentials.c", |
| 448 | "src/core/lib/security/credentials/credentials_metadata.c", |
| 449 | "src/core/lib/security/credentials/fake/fake_credentials.c", |
| 450 | "src/core/lib/security/credentials/google_default/credentials_posix.c", |
Yuchen Zeng | 4594bd9 | 2016-05-31 14:06:01 -0700 | [diff] [blame] | 451 | "src/core/lib/security/credentials/google_default/credentials_windows.c", |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 452 | "src/core/lib/security/credentials/google_default/google_default_credentials.c", |
| 453 | "src/core/lib/security/credentials/iam/iam_credentials.c", |
| 454 | "src/core/lib/security/credentials/jwt/json_token.c", |
| 455 | "src/core/lib/security/credentials/jwt/jwt_credentials.c", |
| 456 | "src/core/lib/security/credentials/jwt/jwt_verifier.c", |
| 457 | "src/core/lib/security/credentials/oauth2/oauth2_credentials.c", |
| 458 | "src/core/lib/security/credentials/plugin/plugin_credentials.c", |
| 459 | "src/core/lib/security/credentials/ssl/ssl_credentials.c", |
| 460 | "src/core/lib/security/transport/client_auth_filter.c", |
| 461 | "src/core/lib/security/transport/handshake.c", |
| 462 | "src/core/lib/security/transport/secure_endpoint.c", |
| 463 | "src/core/lib/security/transport/security_connector.c", |
| 464 | "src/core/lib/security/transport/server_auth_filter.c", |
Craig Tiller | ddad978 | 2016-05-05 17:11:31 -0700 | [diff] [blame] | 465 | "src/core/lib/security/transport/tsi_error.c", |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 466 | "src/core/lib/security/util/b64.c", |
| 467 | "src/core/lib/security/util/json_util.c", |
Craig Tiller | 44cc10b | 2016-03-28 10:45:29 -0700 | [diff] [blame] | 468 | "src/core/lib/surface/init_secure.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 469 | "src/core/lib/tsi/fake_transport_security.c", |
| 470 | "src/core/lib/tsi/ssl_transport_security.c", |
| 471 | "src/core/lib/tsi/transport_security.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 472 | "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c", |
| 473 | "src/core/ext/client_config/channel_connectivity.c", |
| 474 | "src/core/ext/client_config/client_channel.c", |
| 475 | "src/core/ext/client_config/client_channel_factory.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 476 | "src/core/ext/client_config/client_config_plugin.c", |
| 477 | "src/core/ext/client_config/connector.c", |
| 478 | "src/core/ext/client_config/default_initial_connect_string.c", |
Mark D. Roth | 1102a9e | 2016-07-22 09:10:01 -0700 | [diff] [blame] | 479 | "src/core/ext/client_config/http_connect_handshaker.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 480 | "src/core/ext/client_config/initial_connect_string.c", |
| 481 | "src/core/ext/client_config/lb_policy.c", |
| 482 | "src/core/ext/client_config/lb_policy_factory.c", |
| 483 | "src/core/ext/client_config/lb_policy_registry.c", |
Mark D. Roth | 4c3a468 | 2016-09-23 15:19:26 -0700 | [diff] [blame] | 484 | "src/core/ext/client_config/method_config.c", |
David Garcia Quintas | 9885bff | 2016-04-07 17:31:29 -0700 | [diff] [blame] | 485 | "src/core/ext/client_config/parse_address.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 486 | "src/core/ext/client_config/resolver.c", |
| 487 | "src/core/ext/client_config/resolver_factory.c", |
| 488 | "src/core/ext/client_config/resolver_registry.c", |
Mark D. Roth | ff4df06 | 2016-08-22 15:02:49 -0700 | [diff] [blame] | 489 | "src/core/ext/client_config/resolver_result.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 490 | "src/core/ext/client_config/subchannel.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 491 | "src/core/ext/client_config/subchannel_index.c", |
| 492 | "src/core/ext/client_config/uri_parser.c", |
| 493 | "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c", |
Adam Michalik | bf10c82 | 2016-05-20 16:13:32 -0700 | [diff] [blame] | 494 | "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 495 | "src/core/ext/transport/chttp2/client/insecure/channel_create.c", |
Adam Michalik | 321b1fb | 2016-05-16 15:42:36 -0700 | [diff] [blame] | 496 | "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c", |
David Garcia Quintas | 3fb8f73 | 2016-06-15 22:53:08 -0700 | [diff] [blame] | 497 | "src/core/ext/lb_policy/grpclb/grpclb.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 498 | "src/core/ext/lb_policy/grpclb/load_balancer_api.c", |
David Garcia Quintas | 7f0793a | 2016-04-25 12:35:58 -0700 | [diff] [blame] | 499 | "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 500 | "src/core/ext/lb_policy/pick_first/pick_first.c", |
| 501 | "src/core/ext/lb_policy/round_robin/round_robin.c", |
| 502 | "src/core/ext/resolver/dns/native/dns_resolver.c", |
| 503 | "src/core/ext/resolver/sockaddr/sockaddr_resolver.c", |
David Garcia Quintas | b41363e | 2016-04-29 00:41:21 -0700 | [diff] [blame] | 504 | "src/core/ext/load_reporting/load_reporting.c", |
| 505 | "src/core/ext/load_reporting/load_reporting_filter.c", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 506 | "src/core/ext/census/base_resources.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 507 | "src/core/ext/census/context.c", |
Alistair Veitch | 30fe632 | 2016-05-23 10:11:28 -0700 | [diff] [blame] | 508 | "src/core/ext/census/gen/census.pb.c", |
Alistair Veitch | a0c69f9 | 2016-08-31 12:01:27 -0700 | [diff] [blame] | 509 | "src/core/ext/census/gen/trace_context.pb.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 510 | "src/core/ext/census/grpc_context.c", |
| 511 | "src/core/ext/census/grpc_filter.c", |
| 512 | "src/core/ext/census/grpc_plugin.c", |
| 513 | "src/core/ext/census/initialize.c", |
| 514 | "src/core/ext/census/mlog.c", |
| 515 | "src/core/ext/census/operation.c", |
| 516 | "src/core/ext/census/placeholders.c", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 517 | "src/core/ext/census/resource.c", |
Vizerai | 12d1fc6 | 2016-09-09 14:22:19 -0700 | [diff] [blame] | 518 | "src/core/ext/census/trace_context.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 519 | "src/core/ext/census/tracing.c", |
Craig Tiller | fb43385 | 2016-03-29 08:51:07 -0700 | [diff] [blame] | 520 | "src/core/plugin_registry/grpc_plugin_registry.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 521 | ], |
| 522 | hdrs = [ |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 523 | "include/grpc/byte_buffer.h", |
| 524 | "include/grpc/byte_buffer_reader.h", |
David Garcia Quintas | 59f905d | 2015-06-08 16:31:19 -0700 | [diff] [blame] | 525 | "include/grpc/compression.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 526 | "include/grpc/grpc.h", |
Adam Michalik | 321b1fb | 2016-05-16 15:42:36 -0700 | [diff] [blame] | 527 | "include/grpc/grpc_posix.h", |
Nicolas "Pixel" Noble | a469e5d | 2016-08-16 22:09:27 +0200 | [diff] [blame] | 528 | "include/grpc/grpc_security_constants.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 529 | "include/grpc/status.h", |
David Garcia Quintas | 1b2db63 | 2016-04-27 15:06:54 -0700 | [diff] [blame] | 530 | "include/grpc/impl/codegen/byte_buffer_reader.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 531 | "include/grpc/impl/codegen/compression_types.h", |
| 532 | "include/grpc/impl/codegen/connectivity_state.h", |
| 533 | "include/grpc/impl/codegen/grpc_types.h", |
| 534 | "include/grpc/impl/codegen/propagation_bits.h", |
| 535 | "include/grpc/impl/codegen/status.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 536 | "include/grpc/impl/codegen/atm.h", |
| 537 | "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 538 | "include/grpc/impl/codegen/atm_gcc_sync.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 539 | "include/grpc/impl/codegen/atm_windows.h", |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 540 | "include/grpc/impl/codegen/gpr_types.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 541 | "include/grpc/impl/codegen/port_platform.h", |
| 542 | "include/grpc/impl/codegen/slice.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 543 | "include/grpc/impl/codegen/sync.h", |
| 544 | "include/grpc/impl/codegen/sync_generic.h", |
| 545 | "include/grpc/impl/codegen/sync_posix.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 546 | "include/grpc/impl/codegen/sync_windows.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 547 | "include/grpc/grpc_security.h", |
| 548 | "include/grpc/census.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 549 | ], |
| 550 | includes = [ |
| 551 | "include", |
| 552 | ".", |
| 553 | ], |
| 554 | deps = [ |
| 555 | "//external:libssl", |
Ming Zhao | f2f24e2 | 2015-08-13 12:38:35 -0700 | [diff] [blame] | 556 | "//external:zlib", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 557 | ":gpr", |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 558 | "//external:nanopb", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 559 | ], |
Rob Earhart | af379b2 | 2016-01-21 13:43:09 -0800 | [diff] [blame] | 560 | copts = [ |
| 561 | "-std=gnu99", |
| 562 | ], |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 563 | ) |
| 564 | |
| 565 | |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 566 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 567 | cc_library( |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 568 | name = "grpc_cronet", |
| 569 | srcs = [ |
| 570 | "src/core/lib/channel/channel_args.h", |
| 571 | "src/core/lib/channel/channel_stack.h", |
| 572 | "src/core/lib/channel/channel_stack_builder.h", |
| 573 | "src/core/lib/channel/compress_filter.h", |
| 574 | "src/core/lib/channel/connected_channel.h", |
| 575 | "src/core/lib/channel/context.h", |
Mark D. Roth | 14c072c | 2016-08-26 08:31:34 -0700 | [diff] [blame] | 576 | "src/core/lib/channel/deadline_filter.h", |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 577 | "src/core/lib/channel/handshaker.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 578 | "src/core/lib/channel/http_client_filter.h", |
| 579 | "src/core/lib/channel/http_server_filter.h", |
Mark D. Roth | af00d8b | 2016-08-23 12:48:16 -0700 | [diff] [blame] | 580 | "src/core/lib/channel/message_size_filter.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 581 | "src/core/lib/compression/algorithm_metadata.h", |
| 582 | "src/core/lib/compression/message_compress.h", |
| 583 | "src/core/lib/debug/trace.h", |
| 584 | "src/core/lib/http/format_request.h", |
| 585 | "src/core/lib/http/httpcli.h", |
| 586 | "src/core/lib/http/parser.h", |
| 587 | "src/core/lib/iomgr/closure.h", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 588 | "src/core/lib/iomgr/combiner.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 589 | "src/core/lib/iomgr/endpoint.h", |
| 590 | "src/core/lib/iomgr/endpoint_pair.h", |
Craig Tiller | 2888bd5 | 2016-06-07 11:00:42 -0700 | [diff] [blame] | 591 | "src/core/lib/iomgr/error.h", |
Sree Kuchibhotla | 492fd96 | 2016-06-10 09:03:34 -0700 | [diff] [blame] | 592 | "src/core/lib/iomgr/ev_epoll_linux.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 593 | "src/core/lib/iomgr/ev_poll_and_epoll_posix.h", |
| 594 | "src/core/lib/iomgr/ev_poll_posix.h", |
| 595 | "src/core/lib/iomgr/ev_posix.h", |
| 596 | "src/core/lib/iomgr/exec_ctx.h", |
| 597 | "src/core/lib/iomgr/executor.h", |
| 598 | "src/core/lib/iomgr/iocp_windows.h", |
| 599 | "src/core/lib/iomgr/iomgr.h", |
| 600 | "src/core/lib/iomgr/iomgr_internal.h", |
| 601 | "src/core/lib/iomgr/iomgr_posix.h", |
Craig Tiller | 2888bd5 | 2016-06-07 11:00:42 -0700 | [diff] [blame] | 602 | "src/core/lib/iomgr/load_file.h", |
Makarand Dharmapurikar | 0579cfc | 2016-06-20 15:45:24 -0700 | [diff] [blame] | 603 | "src/core/lib/iomgr/network_status_tracker.h", |
David Garcia Quintas | 4461da7 | 2016-06-06 16:45:01 -0700 | [diff] [blame] | 604 | "src/core/lib/iomgr/polling_entity.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 605 | "src/core/lib/iomgr/pollset.h", |
| 606 | "src/core/lib/iomgr/pollset_set.h", |
| 607 | "src/core/lib/iomgr/pollset_set_windows.h", |
| 608 | "src/core/lib/iomgr/pollset_windows.h", |
| 609 | "src/core/lib/iomgr/resolve_address.h", |
| 610 | "src/core/lib/iomgr/sockaddr.h", |
| 611 | "src/core/lib/iomgr/sockaddr_posix.h", |
| 612 | "src/core/lib/iomgr/sockaddr_utils.h", |
Jan Tattermusch | 2f7f856 | 2016-06-06 13:34:56 -0700 | [diff] [blame] | 613 | "src/core/lib/iomgr/sockaddr_windows.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 614 | "src/core/lib/iomgr/socket_utils_posix.h", |
| 615 | "src/core/lib/iomgr/socket_windows.h", |
| 616 | "src/core/lib/iomgr/tcp_client.h", |
| 617 | "src/core/lib/iomgr/tcp_posix.h", |
| 618 | "src/core/lib/iomgr/tcp_server.h", |
| 619 | "src/core/lib/iomgr/tcp_windows.h", |
| 620 | "src/core/lib/iomgr/time_averaged_stats.h", |
| 621 | "src/core/lib/iomgr/timer.h", |
| 622 | "src/core/lib/iomgr/timer_heap.h", |
| 623 | "src/core/lib/iomgr/udp_server.h", |
| 624 | "src/core/lib/iomgr/unix_sockets_posix.h", |
kpayson64 | d195cf5 | 2016-10-09 18:04:00 -0700 | [diff] [blame] | 625 | "src/core/lib/iomgr/wakeup_fd_cv.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 626 | "src/core/lib/iomgr/wakeup_fd_pipe.h", |
| 627 | "src/core/lib/iomgr/wakeup_fd_posix.h", |
| 628 | "src/core/lib/iomgr/workqueue.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 629 | "src/core/lib/iomgr/workqueue_windows.h", |
| 630 | "src/core/lib/json/json.h", |
| 631 | "src/core/lib/json/json_common.h", |
| 632 | "src/core/lib/json/json_reader.h", |
| 633 | "src/core/lib/json/json_writer.h", |
| 634 | "src/core/lib/surface/api_trace.h", |
| 635 | "src/core/lib/surface/call.h", |
| 636 | "src/core/lib/surface/call_test_only.h", |
| 637 | "src/core/lib/surface/channel.h", |
| 638 | "src/core/lib/surface/channel_init.h", |
| 639 | "src/core/lib/surface/channel_stack_type.h", |
| 640 | "src/core/lib/surface/completion_queue.h", |
| 641 | "src/core/lib/surface/event_string.h", |
| 642 | "src/core/lib/surface/init.h", |
| 643 | "src/core/lib/surface/lame_client.h", |
| 644 | "src/core/lib/surface/server.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 645 | "src/core/lib/transport/byte_stream.h", |
| 646 | "src/core/lib/transport/connectivity_state.h", |
Mark D. Roth | 6a721b5 | 2016-10-14 12:43:34 -0700 | [diff] [blame] | 647 | "src/core/lib/transport/mdstr_hash_table.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 648 | "src/core/lib/transport/metadata.h", |
| 649 | "src/core/lib/transport/metadata_batch.h", |
| 650 | "src/core/lib/transport/static_metadata.h", |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 651 | "src/core/lib/transport/timeout_encoding.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 652 | "src/core/lib/transport/transport.h", |
| 653 | "src/core/lib/transport/transport_impl.h", |
| 654 | "third_party/objective_c/Cronet/cronet_c_for_grpc.h", |
Yuchen Zeng | 0a0c1b0 | 2016-06-08 17:52:05 -0700 | [diff] [blame] | 655 | "src/core/ext/transport/chttp2/transport/bin_decoder.h", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 656 | "src/core/ext/transport/chttp2/transport/bin_encoder.h", |
| 657 | "src/core/ext/transport/chttp2/transport/chttp2_transport.h", |
| 658 | "src/core/ext/transport/chttp2/transport/frame.h", |
| 659 | "src/core/ext/transport/chttp2/transport/frame_data.h", |
| 660 | "src/core/ext/transport/chttp2/transport/frame_goaway.h", |
| 661 | "src/core/ext/transport/chttp2/transport/frame_ping.h", |
| 662 | "src/core/ext/transport/chttp2/transport/frame_rst_stream.h", |
| 663 | "src/core/ext/transport/chttp2/transport/frame_settings.h", |
| 664 | "src/core/ext/transport/chttp2/transport/frame_window_update.h", |
| 665 | "src/core/ext/transport/chttp2/transport/hpack_encoder.h", |
| 666 | "src/core/ext/transport/chttp2/transport/hpack_parser.h", |
| 667 | "src/core/ext/transport/chttp2/transport/hpack_table.h", |
| 668 | "src/core/ext/transport/chttp2/transport/http2_errors.h", |
| 669 | "src/core/ext/transport/chttp2/transport/huffsyms.h", |
| 670 | "src/core/ext/transport/chttp2/transport/incoming_metadata.h", |
| 671 | "src/core/ext/transport/chttp2/transport/internal.h", |
| 672 | "src/core/ext/transport/chttp2/transport/status_conversion.h", |
| 673 | "src/core/ext/transport/chttp2/transport/stream_map.h", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 674 | "src/core/ext/transport/chttp2/transport/varint.h", |
| 675 | "src/core/ext/transport/chttp2/alpn/alpn.h", |
| 676 | "src/core/ext/client_config/client_channel.h", |
| 677 | "src/core/ext/client_config/client_channel_factory.h", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 678 | "src/core/ext/client_config/connector.h", |
Mark D. Roth | 1102a9e | 2016-07-22 09:10:01 -0700 | [diff] [blame] | 679 | "src/core/ext/client_config/http_connect_handshaker.h", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 680 | "src/core/ext/client_config/initial_connect_string.h", |
| 681 | "src/core/ext/client_config/lb_policy.h", |
| 682 | "src/core/ext/client_config/lb_policy_factory.h", |
| 683 | "src/core/ext/client_config/lb_policy_registry.h", |
Mark D. Roth | 4c3a468 | 2016-09-23 15:19:26 -0700 | [diff] [blame] | 684 | "src/core/ext/client_config/method_config.h", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 685 | "src/core/ext/client_config/parse_address.h", |
| 686 | "src/core/ext/client_config/resolver.h", |
| 687 | "src/core/ext/client_config/resolver_factory.h", |
| 688 | "src/core/ext/client_config/resolver_registry.h", |
Mark D. Roth | ff4df06 | 2016-08-22 15:02:49 -0700 | [diff] [blame] | 689 | "src/core/ext/client_config/resolver_result.h", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 690 | "src/core/ext/client_config/subchannel.h", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 691 | "src/core/ext/client_config/subchannel_index.h", |
| 692 | "src/core/ext/client_config/uri_parser.h", |
| 693 | "src/core/lib/security/context/security_context.h", |
| 694 | "src/core/lib/security/credentials/composite/composite_credentials.h", |
| 695 | "src/core/lib/security/credentials/credentials.h", |
| 696 | "src/core/lib/security/credentials/fake/fake_credentials.h", |
| 697 | "src/core/lib/security/credentials/google_default/google_default_credentials.h", |
| 698 | "src/core/lib/security/credentials/iam/iam_credentials.h", |
| 699 | "src/core/lib/security/credentials/jwt/json_token.h", |
| 700 | "src/core/lib/security/credentials/jwt/jwt_credentials.h", |
| 701 | "src/core/lib/security/credentials/jwt/jwt_verifier.h", |
| 702 | "src/core/lib/security/credentials/oauth2/oauth2_credentials.h", |
| 703 | "src/core/lib/security/credentials/plugin/plugin_credentials.h", |
| 704 | "src/core/lib/security/credentials/ssl/ssl_credentials.h", |
| 705 | "src/core/lib/security/transport/auth_filters.h", |
| 706 | "src/core/lib/security/transport/handshake.h", |
| 707 | "src/core/lib/security/transport/secure_endpoint.h", |
| 708 | "src/core/lib/security/transport/security_connector.h", |
Craig Tiller | 2888bd5 | 2016-06-07 11:00:42 -0700 | [diff] [blame] | 709 | "src/core/lib/security/transport/tsi_error.h", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 710 | "src/core/lib/security/util/b64.h", |
| 711 | "src/core/lib/security/util/json_util.h", |
| 712 | "src/core/lib/tsi/fake_transport_security.h", |
| 713 | "src/core/lib/tsi/ssl_transport_security.h", |
| 714 | "src/core/lib/tsi/ssl_types.h", |
| 715 | "src/core/lib/tsi/transport_security.h", |
| 716 | "src/core/lib/tsi/transport_security_interface.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 717 | "src/core/lib/surface/init.c", |
| 718 | "src/core/lib/channel/channel_args.c", |
| 719 | "src/core/lib/channel/channel_stack.c", |
| 720 | "src/core/lib/channel/channel_stack_builder.c", |
| 721 | "src/core/lib/channel/compress_filter.c", |
| 722 | "src/core/lib/channel/connected_channel.c", |
Mark D. Roth | 14c072c | 2016-08-26 08:31:34 -0700 | [diff] [blame] | 723 | "src/core/lib/channel/deadline_filter.c", |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 724 | "src/core/lib/channel/handshaker.c", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 725 | "src/core/lib/channel/http_client_filter.c", |
| 726 | "src/core/lib/channel/http_server_filter.c", |
Mark D. Roth | af00d8b | 2016-08-23 12:48:16 -0700 | [diff] [blame] | 727 | "src/core/lib/channel/message_size_filter.c", |
David Garcia Quintas | 37e516e | 2016-06-07 21:23:41 -0700 | [diff] [blame] | 728 | "src/core/lib/compression/compression.c", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 729 | "src/core/lib/compression/message_compress.c", |
| 730 | "src/core/lib/debug/trace.c", |
| 731 | "src/core/lib/http/format_request.c", |
| 732 | "src/core/lib/http/httpcli.c", |
| 733 | "src/core/lib/http/parser.c", |
| 734 | "src/core/lib/iomgr/closure.c", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 735 | "src/core/lib/iomgr/combiner.c", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 736 | "src/core/lib/iomgr/endpoint.c", |
| 737 | "src/core/lib/iomgr/endpoint_pair_posix.c", |
| 738 | "src/core/lib/iomgr/endpoint_pair_windows.c", |
Craig Tiller | 2888bd5 | 2016-06-07 11:00:42 -0700 | [diff] [blame] | 739 | "src/core/lib/iomgr/error.c", |
Sree Kuchibhotla | 492fd96 | 2016-06-10 09:03:34 -0700 | [diff] [blame] | 740 | "src/core/lib/iomgr/ev_epoll_linux.c", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 741 | "src/core/lib/iomgr/ev_poll_and_epoll_posix.c", |
| 742 | "src/core/lib/iomgr/ev_poll_posix.c", |
| 743 | "src/core/lib/iomgr/ev_posix.c", |
| 744 | "src/core/lib/iomgr/exec_ctx.c", |
| 745 | "src/core/lib/iomgr/executor.c", |
| 746 | "src/core/lib/iomgr/iocp_windows.c", |
| 747 | "src/core/lib/iomgr/iomgr.c", |
| 748 | "src/core/lib/iomgr/iomgr_posix.c", |
| 749 | "src/core/lib/iomgr/iomgr_windows.c", |
Craig Tiller | 2888bd5 | 2016-06-07 11:00:42 -0700 | [diff] [blame] | 750 | "src/core/lib/iomgr/load_file.c", |
Makarand Dharmapurikar | 0579cfc | 2016-06-20 15:45:24 -0700 | [diff] [blame] | 751 | "src/core/lib/iomgr/network_status_tracker.c", |
David Garcia Quintas | 4461da7 | 2016-06-06 16:45:01 -0700 | [diff] [blame] | 752 | "src/core/lib/iomgr/polling_entity.c", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 753 | "src/core/lib/iomgr/pollset_set_windows.c", |
| 754 | "src/core/lib/iomgr/pollset_windows.c", |
| 755 | "src/core/lib/iomgr/resolve_address_posix.c", |
| 756 | "src/core/lib/iomgr/resolve_address_windows.c", |
| 757 | "src/core/lib/iomgr/sockaddr_utils.c", |
| 758 | "src/core/lib/iomgr/socket_utils_common_posix.c", |
| 759 | "src/core/lib/iomgr/socket_utils_linux.c", |
| 760 | "src/core/lib/iomgr/socket_utils_posix.c", |
| 761 | "src/core/lib/iomgr/socket_windows.c", |
| 762 | "src/core/lib/iomgr/tcp_client_posix.c", |
| 763 | "src/core/lib/iomgr/tcp_client_windows.c", |
| 764 | "src/core/lib/iomgr/tcp_posix.c", |
| 765 | "src/core/lib/iomgr/tcp_server_posix.c", |
| 766 | "src/core/lib/iomgr/tcp_server_windows.c", |
| 767 | "src/core/lib/iomgr/tcp_windows.c", |
| 768 | "src/core/lib/iomgr/time_averaged_stats.c", |
| 769 | "src/core/lib/iomgr/timer.c", |
| 770 | "src/core/lib/iomgr/timer_heap.c", |
| 771 | "src/core/lib/iomgr/udp_server.c", |
| 772 | "src/core/lib/iomgr/unix_sockets_posix.c", |
| 773 | "src/core/lib/iomgr/unix_sockets_posix_noop.c", |
kpayson64 | d195cf5 | 2016-10-09 18:04:00 -0700 | [diff] [blame] | 774 | "src/core/lib/iomgr/wakeup_fd_cv.c", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 775 | "src/core/lib/iomgr/wakeup_fd_eventfd.c", |
| 776 | "src/core/lib/iomgr/wakeup_fd_nospecial.c", |
| 777 | "src/core/lib/iomgr/wakeup_fd_pipe.c", |
| 778 | "src/core/lib/iomgr/wakeup_fd_posix.c", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 779 | "src/core/lib/iomgr/workqueue_windows.c", |
| 780 | "src/core/lib/json/json.c", |
| 781 | "src/core/lib/json/json_reader.c", |
| 782 | "src/core/lib/json/json_string.c", |
| 783 | "src/core/lib/json/json_writer.c", |
| 784 | "src/core/lib/surface/alarm.c", |
| 785 | "src/core/lib/surface/api_trace.c", |
| 786 | "src/core/lib/surface/byte_buffer.c", |
| 787 | "src/core/lib/surface/byte_buffer_reader.c", |
| 788 | "src/core/lib/surface/call.c", |
| 789 | "src/core/lib/surface/call_details.c", |
| 790 | "src/core/lib/surface/call_log_batch.c", |
| 791 | "src/core/lib/surface/channel.c", |
| 792 | "src/core/lib/surface/channel_init.c", |
| 793 | "src/core/lib/surface/channel_ping.c", |
| 794 | "src/core/lib/surface/channel_stack_type.c", |
| 795 | "src/core/lib/surface/completion_queue.c", |
| 796 | "src/core/lib/surface/event_string.c", |
| 797 | "src/core/lib/surface/lame_client.c", |
| 798 | "src/core/lib/surface/metadata_array.c", |
| 799 | "src/core/lib/surface/server.c", |
| 800 | "src/core/lib/surface/validate_metadata.c", |
| 801 | "src/core/lib/surface/version.c", |
| 802 | "src/core/lib/transport/byte_stream.c", |
| 803 | "src/core/lib/transport/connectivity_state.c", |
Mark D. Roth | 6a721b5 | 2016-10-14 12:43:34 -0700 | [diff] [blame] | 804 | "src/core/lib/transport/mdstr_hash_table.c", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 805 | "src/core/lib/transport/metadata.c", |
| 806 | "src/core/lib/transport/metadata_batch.c", |
| 807 | "src/core/lib/transport/static_metadata.c", |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 808 | "src/core/lib/transport/timeout_encoding.c", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 809 | "src/core/lib/transport/transport.c", |
| 810 | "src/core/lib/transport/transport_op_string.c", |
| 811 | "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c", |
| 812 | "src/core/ext/transport/cronet/transport/cronet_api_dummy.c", |
| 813 | "src/core/ext/transport/cronet/transport/cronet_transport.c", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 814 | "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c", |
Yuchen Zeng | 0a0c1b0 | 2016-06-08 17:52:05 -0700 | [diff] [blame] | 815 | "src/core/ext/transport/chttp2/transport/bin_decoder.c", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 816 | "src/core/ext/transport/chttp2/transport/bin_encoder.c", |
| 817 | "src/core/ext/transport/chttp2/transport/chttp2_plugin.c", |
| 818 | "src/core/ext/transport/chttp2/transport/chttp2_transport.c", |
| 819 | "src/core/ext/transport/chttp2/transport/frame_data.c", |
| 820 | "src/core/ext/transport/chttp2/transport/frame_goaway.c", |
| 821 | "src/core/ext/transport/chttp2/transport/frame_ping.c", |
| 822 | "src/core/ext/transport/chttp2/transport/frame_rst_stream.c", |
| 823 | "src/core/ext/transport/chttp2/transport/frame_settings.c", |
| 824 | "src/core/ext/transport/chttp2/transport/frame_window_update.c", |
| 825 | "src/core/ext/transport/chttp2/transport/hpack_encoder.c", |
| 826 | "src/core/ext/transport/chttp2/transport/hpack_parser.c", |
| 827 | "src/core/ext/transport/chttp2/transport/hpack_table.c", |
| 828 | "src/core/ext/transport/chttp2/transport/huffsyms.c", |
| 829 | "src/core/ext/transport/chttp2/transport/incoming_metadata.c", |
| 830 | "src/core/ext/transport/chttp2/transport/parsing.c", |
| 831 | "src/core/ext/transport/chttp2/transport/status_conversion.c", |
| 832 | "src/core/ext/transport/chttp2/transport/stream_lists.c", |
| 833 | "src/core/ext/transport/chttp2/transport/stream_map.c", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 834 | "src/core/ext/transport/chttp2/transport/varint.c", |
| 835 | "src/core/ext/transport/chttp2/transport/writing.c", |
| 836 | "src/core/ext/transport/chttp2/alpn/alpn.c", |
| 837 | "src/core/ext/client_config/channel_connectivity.c", |
| 838 | "src/core/ext/client_config/client_channel.c", |
| 839 | "src/core/ext/client_config/client_channel_factory.c", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 840 | "src/core/ext/client_config/client_config_plugin.c", |
| 841 | "src/core/ext/client_config/connector.c", |
| 842 | "src/core/ext/client_config/default_initial_connect_string.c", |
Mark D. Roth | 1102a9e | 2016-07-22 09:10:01 -0700 | [diff] [blame] | 843 | "src/core/ext/client_config/http_connect_handshaker.c", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 844 | "src/core/ext/client_config/initial_connect_string.c", |
| 845 | "src/core/ext/client_config/lb_policy.c", |
| 846 | "src/core/ext/client_config/lb_policy_factory.c", |
| 847 | "src/core/ext/client_config/lb_policy_registry.c", |
Mark D. Roth | 4c3a468 | 2016-09-23 15:19:26 -0700 | [diff] [blame] | 848 | "src/core/ext/client_config/method_config.c", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 849 | "src/core/ext/client_config/parse_address.c", |
| 850 | "src/core/ext/client_config/resolver.c", |
| 851 | "src/core/ext/client_config/resolver_factory.c", |
| 852 | "src/core/ext/client_config/resolver_registry.c", |
Mark D. Roth | ff4df06 | 2016-08-22 15:02:49 -0700 | [diff] [blame] | 853 | "src/core/ext/client_config/resolver_result.c", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 854 | "src/core/ext/client_config/subchannel.c", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 855 | "src/core/ext/client_config/subchannel_index.c", |
| 856 | "src/core/ext/client_config/uri_parser.c", |
| 857 | "src/core/lib/http/httpcli_security_connector.c", |
| 858 | "src/core/lib/security/context/security_context.c", |
| 859 | "src/core/lib/security/credentials/composite/composite_credentials.c", |
| 860 | "src/core/lib/security/credentials/credentials.c", |
| 861 | "src/core/lib/security/credentials/credentials_metadata.c", |
| 862 | "src/core/lib/security/credentials/fake/fake_credentials.c", |
| 863 | "src/core/lib/security/credentials/google_default/credentials_posix.c", |
Jan Tattermusch | 2f7f856 | 2016-06-06 13:34:56 -0700 | [diff] [blame] | 864 | "src/core/lib/security/credentials/google_default/credentials_windows.c", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 865 | "src/core/lib/security/credentials/google_default/google_default_credentials.c", |
| 866 | "src/core/lib/security/credentials/iam/iam_credentials.c", |
| 867 | "src/core/lib/security/credentials/jwt/json_token.c", |
| 868 | "src/core/lib/security/credentials/jwt/jwt_credentials.c", |
| 869 | "src/core/lib/security/credentials/jwt/jwt_verifier.c", |
| 870 | "src/core/lib/security/credentials/oauth2/oauth2_credentials.c", |
| 871 | "src/core/lib/security/credentials/plugin/plugin_credentials.c", |
| 872 | "src/core/lib/security/credentials/ssl/ssl_credentials.c", |
| 873 | "src/core/lib/security/transport/client_auth_filter.c", |
| 874 | "src/core/lib/security/transport/handshake.c", |
| 875 | "src/core/lib/security/transport/secure_endpoint.c", |
| 876 | "src/core/lib/security/transport/security_connector.c", |
| 877 | "src/core/lib/security/transport/server_auth_filter.c", |
Craig Tiller | 2888bd5 | 2016-06-07 11:00:42 -0700 | [diff] [blame] | 878 | "src/core/lib/security/transport/tsi_error.c", |
Makarand Dharmapurikar | eaf5426 | 2016-06-01 18:32:42 -0700 | [diff] [blame] | 879 | "src/core/lib/security/util/b64.c", |
| 880 | "src/core/lib/security/util/json_util.c", |
| 881 | "src/core/lib/surface/init_secure.c", |
| 882 | "src/core/lib/tsi/fake_transport_security.c", |
| 883 | "src/core/lib/tsi/ssl_transport_security.c", |
| 884 | "src/core/lib/tsi/transport_security.c", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 885 | "src/core/plugin_registry/grpc_cronet_plugin_registry.c", |
| 886 | ], |
| 887 | hdrs = [ |
| 888 | "include/grpc/byte_buffer.h", |
| 889 | "include/grpc/byte_buffer_reader.h", |
| 890 | "include/grpc/compression.h", |
| 891 | "include/grpc/grpc.h", |
Adam Michalik | 321b1fb | 2016-05-16 15:42:36 -0700 | [diff] [blame] | 892 | "include/grpc/grpc_posix.h", |
Nicolas "Pixel" Noble | a469e5d | 2016-08-16 22:09:27 +0200 | [diff] [blame] | 893 | "include/grpc/grpc_security_constants.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 894 | "include/grpc/status.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 895 | "include/grpc/impl/codegen/byte_buffer_reader.h", |
| 896 | "include/grpc/impl/codegen/compression_types.h", |
| 897 | "include/grpc/impl/codegen/connectivity_state.h", |
| 898 | "include/grpc/impl/codegen/grpc_types.h", |
| 899 | "include/grpc/impl/codegen/propagation_bits.h", |
| 900 | "include/grpc/impl/codegen/status.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 901 | "include/grpc/impl/codegen/atm.h", |
| 902 | "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 903 | "include/grpc/impl/codegen/atm_gcc_sync.h", |
Jan Tattermusch | 2f7f856 | 2016-06-06 13:34:56 -0700 | [diff] [blame] | 904 | "include/grpc/impl/codegen/atm_windows.h", |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 905 | "include/grpc/impl/codegen/gpr_types.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 906 | "include/grpc/impl/codegen/port_platform.h", |
| 907 | "include/grpc/impl/codegen/slice.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 908 | "include/grpc/impl/codegen/sync.h", |
| 909 | "include/grpc/impl/codegen/sync_generic.h", |
| 910 | "include/grpc/impl/codegen/sync_posix.h", |
Jan Tattermusch | 2f7f856 | 2016-06-06 13:34:56 -0700 | [diff] [blame] | 911 | "include/grpc/impl/codegen/sync_windows.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 912 | "include/grpc/grpc_cronet.h", |
| 913 | "include/grpc/grpc_security.h", |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 914 | ], |
| 915 | includes = [ |
| 916 | "include", |
| 917 | ".", |
| 918 | ], |
| 919 | deps = [ |
| 920 | "//external:libssl", |
| 921 | ":gpr", |
| 922 | ], |
| 923 | ) |
| 924 | |
| 925 | |
| 926 | |
| 927 | cc_library( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 928 | name = "grpc_unsecure", |
| 929 | srcs = [ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 930 | "src/core/lib/channel/channel_args.h", |
| 931 | "src/core/lib/channel/channel_stack.h", |
| 932 | "src/core/lib/channel/channel_stack_builder.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 933 | "src/core/lib/channel/compress_filter.h", |
| 934 | "src/core/lib/channel/connected_channel.h", |
| 935 | "src/core/lib/channel/context.h", |
Mark D. Roth | 14c072c | 2016-08-26 08:31:34 -0700 | [diff] [blame] | 936 | "src/core/lib/channel/deadline_filter.h", |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 937 | "src/core/lib/channel/handshaker.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 938 | "src/core/lib/channel/http_client_filter.h", |
| 939 | "src/core/lib/channel/http_server_filter.h", |
Mark D. Roth | af00d8b | 2016-08-23 12:48:16 -0700 | [diff] [blame] | 940 | "src/core/lib/channel/message_size_filter.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 941 | "src/core/lib/compression/algorithm_metadata.h", |
| 942 | "src/core/lib/compression/message_compress.h", |
| 943 | "src/core/lib/debug/trace.h", |
| 944 | "src/core/lib/http/format_request.h", |
| 945 | "src/core/lib/http/httpcli.h", |
| 946 | "src/core/lib/http/parser.h", |
| 947 | "src/core/lib/iomgr/closure.h", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 948 | "src/core/lib/iomgr/combiner.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 949 | "src/core/lib/iomgr/endpoint.h", |
| 950 | "src/core/lib/iomgr/endpoint_pair.h", |
Craig Tiller | 27f59af | 2016-04-28 14:19:48 -0700 | [diff] [blame] | 951 | "src/core/lib/iomgr/error.h", |
Sree Kuchibhotla | f448c34 | 2016-05-19 10:51:24 -0700 | [diff] [blame] | 952 | "src/core/lib/iomgr/ev_epoll_linux.h", |
Craig Tiller | 69f3e2b | 2016-05-31 13:45:24 -0700 | [diff] [blame] | 953 | "src/core/lib/iomgr/ev_poll_and_epoll_posix.h", |
Craig Tiller | d9a60bb | 2016-03-28 23:13:19 -0700 | [diff] [blame] | 954 | "src/core/lib/iomgr/ev_poll_posix.h", |
Craig Tiller | 8a03448 | 2016-03-28 16:09:04 -0700 | [diff] [blame] | 955 | "src/core/lib/iomgr/ev_posix.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 956 | "src/core/lib/iomgr/exec_ctx.h", |
| 957 | "src/core/lib/iomgr/executor.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 958 | "src/core/lib/iomgr/iocp_windows.h", |
| 959 | "src/core/lib/iomgr/iomgr.h", |
| 960 | "src/core/lib/iomgr/iomgr_internal.h", |
| 961 | "src/core/lib/iomgr/iomgr_posix.h", |
Craig Tiller | 8517886 | 2016-05-18 16:09:16 -0700 | [diff] [blame] | 962 | "src/core/lib/iomgr/load_file.h", |
Makarand Dharmapurikar | 0579cfc | 2016-06-20 15:45:24 -0700 | [diff] [blame] | 963 | "src/core/lib/iomgr/network_status_tracker.h", |
David Garcia Quintas | 2a50dfe | 2016-05-31 15:09:12 -0700 | [diff] [blame] | 964 | "src/core/lib/iomgr/polling_entity.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 965 | "src/core/lib/iomgr/pollset.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 966 | "src/core/lib/iomgr/pollset_set.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 967 | "src/core/lib/iomgr/pollset_set_windows.h", |
| 968 | "src/core/lib/iomgr/pollset_windows.h", |
| 969 | "src/core/lib/iomgr/resolve_address.h", |
| 970 | "src/core/lib/iomgr/sockaddr.h", |
| 971 | "src/core/lib/iomgr/sockaddr_posix.h", |
| 972 | "src/core/lib/iomgr/sockaddr_utils.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 973 | "src/core/lib/iomgr/sockaddr_windows.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 974 | "src/core/lib/iomgr/socket_utils_posix.h", |
| 975 | "src/core/lib/iomgr/socket_windows.h", |
| 976 | "src/core/lib/iomgr/tcp_client.h", |
| 977 | "src/core/lib/iomgr/tcp_posix.h", |
| 978 | "src/core/lib/iomgr/tcp_server.h", |
| 979 | "src/core/lib/iomgr/tcp_windows.h", |
| 980 | "src/core/lib/iomgr/time_averaged_stats.h", |
| 981 | "src/core/lib/iomgr/timer.h", |
| 982 | "src/core/lib/iomgr/timer_heap.h", |
| 983 | "src/core/lib/iomgr/udp_server.h", |
| 984 | "src/core/lib/iomgr/unix_sockets_posix.h", |
kpayson64 | d195cf5 | 2016-10-09 18:04:00 -0700 | [diff] [blame] | 985 | "src/core/lib/iomgr/wakeup_fd_cv.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 986 | "src/core/lib/iomgr/wakeup_fd_pipe.h", |
| 987 | "src/core/lib/iomgr/wakeup_fd_posix.h", |
| 988 | "src/core/lib/iomgr/workqueue.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 989 | "src/core/lib/iomgr/workqueue_windows.h", |
| 990 | "src/core/lib/json/json.h", |
| 991 | "src/core/lib/json/json_common.h", |
| 992 | "src/core/lib/json/json_reader.h", |
| 993 | "src/core/lib/json/json_writer.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 994 | "src/core/lib/surface/api_trace.h", |
| 995 | "src/core/lib/surface/call.h", |
| 996 | "src/core/lib/surface/call_test_only.h", |
| 997 | "src/core/lib/surface/channel.h", |
| 998 | "src/core/lib/surface/channel_init.h", |
| 999 | "src/core/lib/surface/channel_stack_type.h", |
| 1000 | "src/core/lib/surface/completion_queue.h", |
| 1001 | "src/core/lib/surface/event_string.h", |
| 1002 | "src/core/lib/surface/init.h", |
| 1003 | "src/core/lib/surface/lame_client.h", |
| 1004 | "src/core/lib/surface/server.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1005 | "src/core/lib/transport/byte_stream.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1006 | "src/core/lib/transport/connectivity_state.h", |
Mark D. Roth | 6a721b5 | 2016-10-14 12:43:34 -0700 | [diff] [blame] | 1007 | "src/core/lib/transport/mdstr_hash_table.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1008 | "src/core/lib/transport/metadata.h", |
| 1009 | "src/core/lib/transport/metadata_batch.h", |
| 1010 | "src/core/lib/transport/static_metadata.h", |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 1011 | "src/core/lib/transport/timeout_encoding.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1012 | "src/core/lib/transport/transport.h", |
| 1013 | "src/core/lib/transport/transport_impl.h", |
Yuchen Zeng | d982bba | 2016-05-12 18:53:52 -0700 | [diff] [blame] | 1014 | "src/core/ext/transport/chttp2/transport/bin_decoder.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1015 | "src/core/ext/transport/chttp2/transport/bin_encoder.h", |
| 1016 | "src/core/ext/transport/chttp2/transport/chttp2_transport.h", |
| 1017 | "src/core/ext/transport/chttp2/transport/frame.h", |
| 1018 | "src/core/ext/transport/chttp2/transport/frame_data.h", |
| 1019 | "src/core/ext/transport/chttp2/transport/frame_goaway.h", |
| 1020 | "src/core/ext/transport/chttp2/transport/frame_ping.h", |
| 1021 | "src/core/ext/transport/chttp2/transport/frame_rst_stream.h", |
| 1022 | "src/core/ext/transport/chttp2/transport/frame_settings.h", |
| 1023 | "src/core/ext/transport/chttp2/transport/frame_window_update.h", |
| 1024 | "src/core/ext/transport/chttp2/transport/hpack_encoder.h", |
| 1025 | "src/core/ext/transport/chttp2/transport/hpack_parser.h", |
| 1026 | "src/core/ext/transport/chttp2/transport/hpack_table.h", |
| 1027 | "src/core/ext/transport/chttp2/transport/http2_errors.h", |
| 1028 | "src/core/ext/transport/chttp2/transport/huffsyms.h", |
| 1029 | "src/core/ext/transport/chttp2/transport/incoming_metadata.h", |
| 1030 | "src/core/ext/transport/chttp2/transport/internal.h", |
| 1031 | "src/core/ext/transport/chttp2/transport/status_conversion.h", |
| 1032 | "src/core/ext/transport/chttp2/transport/stream_map.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1033 | "src/core/ext/transport/chttp2/transport/varint.h", |
| 1034 | "src/core/ext/transport/chttp2/alpn/alpn.h", |
| 1035 | "src/core/ext/client_config/client_channel.h", |
| 1036 | "src/core/ext/client_config/client_channel_factory.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1037 | "src/core/ext/client_config/connector.h", |
Mark D. Roth | 1102a9e | 2016-07-22 09:10:01 -0700 | [diff] [blame] | 1038 | "src/core/ext/client_config/http_connect_handshaker.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1039 | "src/core/ext/client_config/initial_connect_string.h", |
| 1040 | "src/core/ext/client_config/lb_policy.h", |
| 1041 | "src/core/ext/client_config/lb_policy_factory.h", |
| 1042 | "src/core/ext/client_config/lb_policy_registry.h", |
Mark D. Roth | 4c3a468 | 2016-09-23 15:19:26 -0700 | [diff] [blame] | 1043 | "src/core/ext/client_config/method_config.h", |
David Garcia Quintas | 9885bff | 2016-04-07 17:31:29 -0700 | [diff] [blame] | 1044 | "src/core/ext/client_config/parse_address.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1045 | "src/core/ext/client_config/resolver.h", |
| 1046 | "src/core/ext/client_config/resolver_factory.h", |
| 1047 | "src/core/ext/client_config/resolver_registry.h", |
Mark D. Roth | ff4df06 | 2016-08-22 15:02:49 -0700 | [diff] [blame] | 1048 | "src/core/ext/client_config/resolver_result.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1049 | "src/core/ext/client_config/subchannel.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1050 | "src/core/ext/client_config/subchannel_index.h", |
| 1051 | "src/core/ext/client_config/uri_parser.h", |
David Garcia Quintas | 4bb11ac | 2016-05-02 09:20:21 -0700 | [diff] [blame] | 1052 | "src/core/ext/load_reporting/load_reporting.h", |
| 1053 | "src/core/ext/load_reporting/load_reporting_filter.h", |
David Garcia Quintas | b2e986b | 2016-06-15 23:55:50 -0700 | [diff] [blame] | 1054 | "src/core/ext/lb_policy/grpclb/grpclb.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1055 | "src/core/ext/lb_policy/grpclb/load_balancer_api.h", |
David Garcia Quintas | 7f0793a | 2016-04-25 12:35:58 -0700 | [diff] [blame] | 1056 | "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1057 | "src/core/ext/census/aggregation.h", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 1058 | "src/core/ext/census/base_resources.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1059 | "src/core/ext/census/census_interface.h", |
| 1060 | "src/core/ext/census/census_rpc_stats.h", |
Alistair Veitch | 30fe632 | 2016-05-23 10:11:28 -0700 | [diff] [blame] | 1061 | "src/core/ext/census/gen/census.pb.h", |
Alistair Veitch | a0c69f9 | 2016-08-31 12:01:27 -0700 | [diff] [blame] | 1062 | "src/core/ext/census/gen/trace_context.pb.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1063 | "src/core/ext/census/grpc_filter.h", |
| 1064 | "src/core/ext/census/mlog.h", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 1065 | "src/core/ext/census/resource.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1066 | "src/core/ext/census/rpc_metric_id.h", |
Vizerai | 12d1fc6 | 2016-09-09 14:22:19 -0700 | [diff] [blame] | 1067 | "src/core/ext/census/trace_context.h", |
Craig Tiller | 3ab2fe0 | 2016-04-11 20:11:18 -0700 | [diff] [blame] | 1068 | "src/core/lib/surface/init.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1069 | "src/core/lib/surface/init_unsecure.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1070 | "src/core/lib/channel/channel_args.c", |
| 1071 | "src/core/lib/channel/channel_stack.c", |
| 1072 | "src/core/lib/channel/channel_stack_builder.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1073 | "src/core/lib/channel/compress_filter.c", |
| 1074 | "src/core/lib/channel/connected_channel.c", |
Mark D. Roth | 14c072c | 2016-08-26 08:31:34 -0700 | [diff] [blame] | 1075 | "src/core/lib/channel/deadline_filter.c", |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 1076 | "src/core/lib/channel/handshaker.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1077 | "src/core/lib/channel/http_client_filter.c", |
| 1078 | "src/core/lib/channel/http_server_filter.c", |
Mark D. Roth | af00d8b | 2016-08-23 12:48:16 -0700 | [diff] [blame] | 1079 | "src/core/lib/channel/message_size_filter.c", |
David Garcia Quintas | ac09447 | 2016-05-18 20:25:57 -0700 | [diff] [blame] | 1080 | "src/core/lib/compression/compression.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1081 | "src/core/lib/compression/message_compress.c", |
| 1082 | "src/core/lib/debug/trace.c", |
| 1083 | "src/core/lib/http/format_request.c", |
| 1084 | "src/core/lib/http/httpcli.c", |
| 1085 | "src/core/lib/http/parser.c", |
| 1086 | "src/core/lib/iomgr/closure.c", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 1087 | "src/core/lib/iomgr/combiner.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1088 | "src/core/lib/iomgr/endpoint.c", |
| 1089 | "src/core/lib/iomgr/endpoint_pair_posix.c", |
| 1090 | "src/core/lib/iomgr/endpoint_pair_windows.c", |
Craig Tiller | 27f59af | 2016-04-28 14:19:48 -0700 | [diff] [blame] | 1091 | "src/core/lib/iomgr/error.c", |
Sree Kuchibhotla | f448c34 | 2016-05-19 10:51:24 -0700 | [diff] [blame] | 1092 | "src/core/lib/iomgr/ev_epoll_linux.c", |
Craig Tiller | 69f3e2b | 2016-05-31 13:45:24 -0700 | [diff] [blame] | 1093 | "src/core/lib/iomgr/ev_poll_and_epoll_posix.c", |
Craig Tiller | d9a60bb | 2016-03-28 23:13:19 -0700 | [diff] [blame] | 1094 | "src/core/lib/iomgr/ev_poll_posix.c", |
Craig Tiller | 8a03448 | 2016-03-28 16:09:04 -0700 | [diff] [blame] | 1095 | "src/core/lib/iomgr/ev_posix.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1096 | "src/core/lib/iomgr/exec_ctx.c", |
| 1097 | "src/core/lib/iomgr/executor.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1098 | "src/core/lib/iomgr/iocp_windows.c", |
| 1099 | "src/core/lib/iomgr/iomgr.c", |
| 1100 | "src/core/lib/iomgr/iomgr_posix.c", |
| 1101 | "src/core/lib/iomgr/iomgr_windows.c", |
Craig Tiller | 8517886 | 2016-05-18 16:09:16 -0700 | [diff] [blame] | 1102 | "src/core/lib/iomgr/load_file.c", |
Makarand Dharmapurikar | 0579cfc | 2016-06-20 15:45:24 -0700 | [diff] [blame] | 1103 | "src/core/lib/iomgr/network_status_tracker.c", |
David Garcia Quintas | 2a50dfe | 2016-05-31 15:09:12 -0700 | [diff] [blame] | 1104 | "src/core/lib/iomgr/polling_entity.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1105 | "src/core/lib/iomgr/pollset_set_windows.c", |
| 1106 | "src/core/lib/iomgr/pollset_windows.c", |
| 1107 | "src/core/lib/iomgr/resolve_address_posix.c", |
| 1108 | "src/core/lib/iomgr/resolve_address_windows.c", |
| 1109 | "src/core/lib/iomgr/sockaddr_utils.c", |
| 1110 | "src/core/lib/iomgr/socket_utils_common_posix.c", |
| 1111 | "src/core/lib/iomgr/socket_utils_linux.c", |
| 1112 | "src/core/lib/iomgr/socket_utils_posix.c", |
| 1113 | "src/core/lib/iomgr/socket_windows.c", |
| 1114 | "src/core/lib/iomgr/tcp_client_posix.c", |
| 1115 | "src/core/lib/iomgr/tcp_client_windows.c", |
| 1116 | "src/core/lib/iomgr/tcp_posix.c", |
| 1117 | "src/core/lib/iomgr/tcp_server_posix.c", |
| 1118 | "src/core/lib/iomgr/tcp_server_windows.c", |
| 1119 | "src/core/lib/iomgr/tcp_windows.c", |
| 1120 | "src/core/lib/iomgr/time_averaged_stats.c", |
| 1121 | "src/core/lib/iomgr/timer.c", |
| 1122 | "src/core/lib/iomgr/timer_heap.c", |
| 1123 | "src/core/lib/iomgr/udp_server.c", |
| 1124 | "src/core/lib/iomgr/unix_sockets_posix.c", |
| 1125 | "src/core/lib/iomgr/unix_sockets_posix_noop.c", |
kpayson64 | d195cf5 | 2016-10-09 18:04:00 -0700 | [diff] [blame] | 1126 | "src/core/lib/iomgr/wakeup_fd_cv.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1127 | "src/core/lib/iomgr/wakeup_fd_eventfd.c", |
| 1128 | "src/core/lib/iomgr/wakeup_fd_nospecial.c", |
| 1129 | "src/core/lib/iomgr/wakeup_fd_pipe.c", |
| 1130 | "src/core/lib/iomgr/wakeup_fd_posix.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1131 | "src/core/lib/iomgr/workqueue_windows.c", |
| 1132 | "src/core/lib/json/json.c", |
| 1133 | "src/core/lib/json/json_reader.c", |
| 1134 | "src/core/lib/json/json_string.c", |
| 1135 | "src/core/lib/json/json_writer.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1136 | "src/core/lib/surface/alarm.c", |
| 1137 | "src/core/lib/surface/api_trace.c", |
| 1138 | "src/core/lib/surface/byte_buffer.c", |
| 1139 | "src/core/lib/surface/byte_buffer_reader.c", |
| 1140 | "src/core/lib/surface/call.c", |
| 1141 | "src/core/lib/surface/call_details.c", |
| 1142 | "src/core/lib/surface/call_log_batch.c", |
| 1143 | "src/core/lib/surface/channel.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1144 | "src/core/lib/surface/channel_init.c", |
| 1145 | "src/core/lib/surface/channel_ping.c", |
| 1146 | "src/core/lib/surface/channel_stack_type.c", |
| 1147 | "src/core/lib/surface/completion_queue.c", |
| 1148 | "src/core/lib/surface/event_string.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1149 | "src/core/lib/surface/lame_client.c", |
| 1150 | "src/core/lib/surface/metadata_array.c", |
| 1151 | "src/core/lib/surface/server.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1152 | "src/core/lib/surface/validate_metadata.c", |
| 1153 | "src/core/lib/surface/version.c", |
| 1154 | "src/core/lib/transport/byte_stream.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1155 | "src/core/lib/transport/connectivity_state.c", |
Mark D. Roth | 6a721b5 | 2016-10-14 12:43:34 -0700 | [diff] [blame] | 1156 | "src/core/lib/transport/mdstr_hash_table.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1157 | "src/core/lib/transport/metadata.c", |
| 1158 | "src/core/lib/transport/metadata_batch.c", |
| 1159 | "src/core/lib/transport/static_metadata.c", |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 1160 | "src/core/lib/transport/timeout_encoding.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1161 | "src/core/lib/transport/transport.c", |
| 1162 | "src/core/lib/transport/transport_op_string.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1163 | "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c", |
Adam Michalik | bf10c82 | 2016-05-20 16:13:32 -0700 | [diff] [blame] | 1164 | "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c", |
Yuchen Zeng | d982bba | 2016-05-12 18:53:52 -0700 | [diff] [blame] | 1165 | "src/core/ext/transport/chttp2/transport/bin_decoder.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1166 | "src/core/ext/transport/chttp2/transport/bin_encoder.c", |
| 1167 | "src/core/ext/transport/chttp2/transport/chttp2_plugin.c", |
| 1168 | "src/core/ext/transport/chttp2/transport/chttp2_transport.c", |
| 1169 | "src/core/ext/transport/chttp2/transport/frame_data.c", |
| 1170 | "src/core/ext/transport/chttp2/transport/frame_goaway.c", |
| 1171 | "src/core/ext/transport/chttp2/transport/frame_ping.c", |
| 1172 | "src/core/ext/transport/chttp2/transport/frame_rst_stream.c", |
| 1173 | "src/core/ext/transport/chttp2/transport/frame_settings.c", |
| 1174 | "src/core/ext/transport/chttp2/transport/frame_window_update.c", |
| 1175 | "src/core/ext/transport/chttp2/transport/hpack_encoder.c", |
| 1176 | "src/core/ext/transport/chttp2/transport/hpack_parser.c", |
| 1177 | "src/core/ext/transport/chttp2/transport/hpack_table.c", |
| 1178 | "src/core/ext/transport/chttp2/transport/huffsyms.c", |
| 1179 | "src/core/ext/transport/chttp2/transport/incoming_metadata.c", |
| 1180 | "src/core/ext/transport/chttp2/transport/parsing.c", |
| 1181 | "src/core/ext/transport/chttp2/transport/status_conversion.c", |
| 1182 | "src/core/ext/transport/chttp2/transport/stream_lists.c", |
| 1183 | "src/core/ext/transport/chttp2/transport/stream_map.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1184 | "src/core/ext/transport/chttp2/transport/varint.c", |
| 1185 | "src/core/ext/transport/chttp2/transport/writing.c", |
| 1186 | "src/core/ext/transport/chttp2/alpn/alpn.c", |
| 1187 | "src/core/ext/transport/chttp2/client/insecure/channel_create.c", |
Adam Michalik | 321b1fb | 2016-05-16 15:42:36 -0700 | [diff] [blame] | 1188 | "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1189 | "src/core/ext/client_config/channel_connectivity.c", |
| 1190 | "src/core/ext/client_config/client_channel.c", |
| 1191 | "src/core/ext/client_config/client_channel_factory.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1192 | "src/core/ext/client_config/client_config_plugin.c", |
| 1193 | "src/core/ext/client_config/connector.c", |
| 1194 | "src/core/ext/client_config/default_initial_connect_string.c", |
Mark D. Roth | 1102a9e | 2016-07-22 09:10:01 -0700 | [diff] [blame] | 1195 | "src/core/ext/client_config/http_connect_handshaker.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1196 | "src/core/ext/client_config/initial_connect_string.c", |
| 1197 | "src/core/ext/client_config/lb_policy.c", |
| 1198 | "src/core/ext/client_config/lb_policy_factory.c", |
| 1199 | "src/core/ext/client_config/lb_policy_registry.c", |
Mark D. Roth | 4c3a468 | 2016-09-23 15:19:26 -0700 | [diff] [blame] | 1200 | "src/core/ext/client_config/method_config.c", |
David Garcia Quintas | 9885bff | 2016-04-07 17:31:29 -0700 | [diff] [blame] | 1201 | "src/core/ext/client_config/parse_address.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1202 | "src/core/ext/client_config/resolver.c", |
| 1203 | "src/core/ext/client_config/resolver_factory.c", |
| 1204 | "src/core/ext/client_config/resolver_registry.c", |
Mark D. Roth | ff4df06 | 2016-08-22 15:02:49 -0700 | [diff] [blame] | 1205 | "src/core/ext/client_config/resolver_result.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1206 | "src/core/ext/client_config/subchannel.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1207 | "src/core/ext/client_config/subchannel_index.c", |
| 1208 | "src/core/ext/client_config/uri_parser.c", |
| 1209 | "src/core/ext/resolver/dns/native/dns_resolver.c", |
| 1210 | "src/core/ext/resolver/sockaddr/sockaddr_resolver.c", |
David Garcia Quintas | 4bb11ac | 2016-05-02 09:20:21 -0700 | [diff] [blame] | 1211 | "src/core/ext/load_reporting/load_reporting.c", |
| 1212 | "src/core/ext/load_reporting/load_reporting_filter.c", |
David Garcia Quintas | 3fb8f73 | 2016-06-15 22:53:08 -0700 | [diff] [blame] | 1213 | "src/core/ext/lb_policy/grpclb/grpclb.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1214 | "src/core/ext/lb_policy/grpclb/load_balancer_api.c", |
David Garcia Quintas | 7f0793a | 2016-04-25 12:35:58 -0700 | [diff] [blame] | 1215 | "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1216 | "src/core/ext/lb_policy/pick_first/pick_first.c", |
| 1217 | "src/core/ext/lb_policy/round_robin/round_robin.c", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 1218 | "src/core/ext/census/base_resources.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1219 | "src/core/ext/census/context.c", |
Alistair Veitch | 30fe632 | 2016-05-23 10:11:28 -0700 | [diff] [blame] | 1220 | "src/core/ext/census/gen/census.pb.c", |
Alistair Veitch | a0c69f9 | 2016-08-31 12:01:27 -0700 | [diff] [blame] | 1221 | "src/core/ext/census/gen/trace_context.pb.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1222 | "src/core/ext/census/grpc_context.c", |
| 1223 | "src/core/ext/census/grpc_filter.c", |
| 1224 | "src/core/ext/census/grpc_plugin.c", |
| 1225 | "src/core/ext/census/initialize.c", |
| 1226 | "src/core/ext/census/mlog.c", |
| 1227 | "src/core/ext/census/operation.c", |
| 1228 | "src/core/ext/census/placeholders.c", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 1229 | "src/core/ext/census/resource.c", |
Vizerai | 12d1fc6 | 2016-09-09 14:22:19 -0700 | [diff] [blame] | 1230 | "src/core/ext/census/trace_context.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1231 | "src/core/ext/census/tracing.c", |
Craig Tiller | fb43385 | 2016-03-29 08:51:07 -0700 | [diff] [blame] | 1232 | "src/core/plugin_registry/grpc_unsecure_plugin_registry.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1233 | ], |
| 1234 | hdrs = [ |
| 1235 | "include/grpc/byte_buffer.h", |
| 1236 | "include/grpc/byte_buffer_reader.h", |
David Garcia Quintas | 59f905d | 2015-06-08 16:31:19 -0700 | [diff] [blame] | 1237 | "include/grpc/compression.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1238 | "include/grpc/grpc.h", |
Adam Michalik | 321b1fb | 2016-05-16 15:42:36 -0700 | [diff] [blame] | 1239 | "include/grpc/grpc_posix.h", |
Nicolas "Pixel" Noble | a469e5d | 2016-08-16 22:09:27 +0200 | [diff] [blame] | 1240 | "include/grpc/grpc_security_constants.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1241 | "include/grpc/status.h", |
David Garcia Quintas | 1b2db63 | 2016-04-27 15:06:54 -0700 | [diff] [blame] | 1242 | "include/grpc/impl/codegen/byte_buffer_reader.h", |
Craig Tiller | ad09598 | 2016-02-09 12:45:04 -0800 | [diff] [blame] | 1243 | "include/grpc/impl/codegen/compression_types.h", |
| 1244 | "include/grpc/impl/codegen/connectivity_state.h", |
| 1245 | "include/grpc/impl/codegen/grpc_types.h", |
| 1246 | "include/grpc/impl/codegen/propagation_bits.h", |
| 1247 | "include/grpc/impl/codegen/status.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1248 | "include/grpc/impl/codegen/atm.h", |
| 1249 | "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 1250 | "include/grpc/impl/codegen/atm_gcc_sync.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1251 | "include/grpc/impl/codegen/atm_windows.h", |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 1252 | "include/grpc/impl/codegen/gpr_types.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1253 | "include/grpc/impl/codegen/port_platform.h", |
| 1254 | "include/grpc/impl/codegen/slice.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1255 | "include/grpc/impl/codegen/sync.h", |
| 1256 | "include/grpc/impl/codegen/sync_generic.h", |
| 1257 | "include/grpc/impl/codegen/sync_posix.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1258 | "include/grpc/impl/codegen/sync_windows.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1259 | "include/grpc/census.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1260 | ], |
| 1261 | includes = [ |
| 1262 | "include", |
| 1263 | ".", |
| 1264 | ], |
| 1265 | deps = [ |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 1266 | ":gpr", |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 1267 | "//external:nanopb", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1268 | ], |
Rob Earhart | af379b2 | 2016-01-21 13:43:09 -0800 | [diff] [blame] | 1269 | copts = [ |
| 1270 | "-std=gnu99", |
| 1271 | ], |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1272 | ) |
| 1273 | |
| 1274 | |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 1275 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1276 | cc_library( |
| 1277 | name = "grpc++", |
| 1278 | srcs = [ |
David Garcia Quintas | a20a2ad | 2016-05-19 10:53:44 -0700 | [diff] [blame] | 1279 | "include/grpc++/impl/codegen/core_codegen.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1280 | "src/cpp/client/secure_credentials.h", |
Craig Tiller | 44cc10b | 2016-03-28 10:45:29 -0700 | [diff] [blame] | 1281 | "src/cpp/common/secure_auth_context.h", |
Craig Tiller | 44cc10b | 2016-03-28 10:45:29 -0700 | [diff] [blame] | 1282 | "src/cpp/server/secure_server_credentials.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1283 | "src/cpp/client/create_channel_internal.h", |
Mark D. Roth | ab950ee | 2016-06-29 14:51:53 -0700 | [diff] [blame] | 1284 | "src/cpp/common/channel_filter.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1285 | "src/cpp/server/dynamic_thread_pool.h", |
Vijay Pai | e8a7e30 | 2015-08-24 10:52:33 -0700 | [diff] [blame] | 1286 | "src/cpp/server/thread_pool_interface.h", |
murgatroid99 | 1ca0f3e | 2016-08-26 14:58:49 -0700 | [diff] [blame] | 1287 | "src/cpp/client/insecure_credentials.cc", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1288 | "src/cpp/client/secure_credentials.cc", |
| 1289 | "src/cpp/common/auth_property_iterator.cc", |
| 1290 | "src/cpp/common/secure_auth_context.cc", |
| 1291 | "src/cpp/common/secure_channel_arguments.cc", |
| 1292 | "src/cpp/common/secure_create_auth_context.cc", |
murgatroid99 | 1ca0f3e | 2016-08-26 14:58:49 -0700 | [diff] [blame] | 1293 | "src/cpp/server/insecure_server_credentials.cc", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1294 | "src/cpp/server/secure_server_credentials.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1295 | "src/cpp/client/channel_cc.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1296 | "src/cpp/client/client_context.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1297 | "src/cpp/client/create_channel.cc", |
yang-g | c317f07 | 2015-08-20 12:18:08 -0700 | [diff] [blame] | 1298 | "src/cpp/client/create_channel_internal.cc", |
Adam Michalik | b97e2d1 | 2016-06-02 12:12:55 -0700 | [diff] [blame] | 1299 | "src/cpp/client/create_channel_posix.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1300 | "src/cpp/client/credentials_cc.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1301 | "src/cpp/client/generic_stub.cc", |
yang-g | 5270559 | 2015-11-25 11:45:33 -0800 | [diff] [blame] | 1302 | "src/cpp/common/channel_arguments.cc", |
Mark D. Roth | ec0bc8b | 2016-06-15 14:02:57 -0700 | [diff] [blame] | 1303 | "src/cpp/common/channel_filter.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1304 | "src/cpp/common/completion_queue_cc.cc", |
Nicolas "Pixel" Noble | 4268318 | 2016-03-17 00:25:39 +0100 | [diff] [blame] | 1305 | "src/cpp/common/core_codegen.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1306 | "src/cpp/common/rpc_method.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1307 | "src/cpp/server/async_generic_service.cc", |
Yang Gao | 6f4fb3b | 2015-06-03 12:56:19 -0700 | [diff] [blame] | 1308 | "src/cpp/server/create_default_thread_pool.cc", |
vjpai | b28456b | 2015-07-23 14:17:10 -0700 | [diff] [blame] | 1309 | "src/cpp/server/dynamic_thread_pool.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1310 | "src/cpp/server/server_builder.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1311 | "src/cpp/server/server_cc.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1312 | "src/cpp/server/server_context.cc", |
| 1313 | "src/cpp/server/server_credentials.cc", |
Adam Michalik | b97e2d1 | 2016-06-02 12:12:55 -0700 | [diff] [blame] | 1314 | "src/cpp/server/server_posix.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1315 | "src/cpp/util/byte_buffer_cc.cc", |
| 1316 | "src/cpp/util/slice_cc.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1317 | "src/cpp/util/status.cc", |
Julien Boeuf | 8fd915a | 2015-08-19 21:18:14 -0700 | [diff] [blame] | 1318 | "src/cpp/util/string_ref.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1319 | "src/cpp/util/time_cc.cc", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1320 | "src/cpp/codegen/codegen_init.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1321 | ], |
| 1322 | hdrs = [ |
vjpai | f9f61cf | 2016-02-10 20:51:53 -0800 | [diff] [blame] | 1323 | "include/grpc++/alarm.h", |
yang-g | 8c2be9f | 2015-08-19 16:28:09 -0700 | [diff] [blame] | 1324 | "include/grpc++/channel.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1325 | "include/grpc++/client_context.h", |
| 1326 | "include/grpc++/completion_queue.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1327 | "include/grpc++/create_channel.h", |
Adam Michalik | b97e2d1 | 2016-06-02 12:12:55 -0700 | [diff] [blame] | 1328 | "include/grpc++/create_channel_posix.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1329 | "include/grpc++/generic/async_generic_service.h", |
| 1330 | "include/grpc++/generic/generic_stub.h", |
Craig Tiller | d136a5c | 2015-09-11 12:23:32 -0700 | [diff] [blame] | 1331 | "include/grpc++/grpc++.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1332 | "include/grpc++/impl/call.h", |
| 1333 | "include/grpc++/impl/client_unary_call.h", |
David Garcia Quintas | a20a2ad | 2016-05-19 10:53:44 -0700 | [diff] [blame] | 1334 | "include/grpc++/impl/codegen/core_codegen.h", |
Yang Gao | 96de484 | 2015-04-24 13:13:12 -0700 | [diff] [blame] | 1335 | "include/grpc++/impl/grpc_library.h", |
yang-g | 77c6333 | 2016-01-14 16:09:04 -0800 | [diff] [blame] | 1336 | "include/grpc++/impl/method_handler_impl.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1337 | "include/grpc++/impl/rpc_method.h", |
| 1338 | "include/grpc++/impl/rpc_service_method.h", |
Craig Tiller | 6ef7f31 | 2015-06-05 10:15:10 -0700 | [diff] [blame] | 1339 | "include/grpc++/impl/serialization_traits.h", |
yang-g | a23f17b | 2015-11-25 10:21:05 -0800 | [diff] [blame] | 1340 | "include/grpc++/impl/server_builder_option.h", |
Yuchen Zeng | a42ec21 | 2016-04-29 13:03:06 -0700 | [diff] [blame] | 1341 | "include/grpc++/impl/server_builder_plugin.h", |
| 1342 | "include/grpc++/impl/server_initializer.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1343 | "include/grpc++/impl/service_type.h", |
Nicolas "Pixel" Noble | b7c2035 | 2015-04-11 01:27:32 +0200 | [diff] [blame] | 1344 | "include/grpc++/impl/sync.h", |
| 1345 | "include/grpc++/impl/sync_cxx11.h", |
| 1346 | "include/grpc++/impl/sync_no_cxx11.h", |
| 1347 | "include/grpc++/impl/thd.h", |
| 1348 | "include/grpc++/impl/thd_cxx11.h", |
| 1349 | "include/grpc++/impl/thd_no_cxx11.h", |
Julien Boeuf | 0d47192 | 2015-08-30 22:18:50 -0700 | [diff] [blame] | 1350 | "include/grpc++/security/auth_context.h", |
| 1351 | "include/grpc++/security/auth_metadata_processor.h", |
| 1352 | "include/grpc++/security/credentials.h", |
| 1353 | "include/grpc++/security/server_credentials.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1354 | "include/grpc++/server.h", |
| 1355 | "include/grpc++/server_builder.h", |
| 1356 | "include/grpc++/server_context.h", |
Adam Michalik | b97e2d1 | 2016-06-02 12:12:55 -0700 | [diff] [blame] | 1357 | "include/grpc++/server_posix.h", |
yang-g | 9fb35a5 | 2015-08-21 15:49:35 -0700 | [diff] [blame] | 1358 | "include/grpc++/support/async_stream.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1359 | "include/grpc++/support/async_unary_call.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1360 | "include/grpc++/support/byte_buffer.h", |
| 1361 | "include/grpc++/support/channel_arguments.h", |
yang-g | 17487f9 | 2016-06-03 15:21:15 -0700 | [diff] [blame] | 1362 | "include/grpc++/support/config.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1363 | "include/grpc++/support/slice.h", |
| 1364 | "include/grpc++/support/status.h", |
| 1365 | "include/grpc++/support/status_code_enum.h", |
Julien Boeuf | 0382bfa | 2015-08-24 23:55:43 -0700 | [diff] [blame] | 1366 | "include/grpc++/support/string_ref.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1367 | "include/grpc++/support/stub_options.h", |
yang-g | 9fb35a5 | 2015-08-21 15:49:35 -0700 | [diff] [blame] | 1368 | "include/grpc++/support/sync_stream.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1369 | "include/grpc++/support/time.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1370 | "include/grpc++/impl/codegen/async_stream.h", |
| 1371 | "include/grpc++/impl/codegen/async_unary_call.h", |
| 1372 | "include/grpc++/impl/codegen/call.h", |
| 1373 | "include/grpc++/impl/codegen/call_hook.h", |
| 1374 | "include/grpc++/impl/codegen/channel_interface.h", |
| 1375 | "include/grpc++/impl/codegen/client_context.h", |
| 1376 | "include/grpc++/impl/codegen/client_unary_call.h", |
| 1377 | "include/grpc++/impl/codegen/completion_queue.h", |
| 1378 | "include/grpc++/impl/codegen/completion_queue_tag.h", |
yang-g | 17487f9 | 2016-06-03 15:21:15 -0700 | [diff] [blame] | 1379 | "include/grpc++/impl/codegen/config.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1380 | "include/grpc++/impl/codegen/core_codegen_interface.h", |
Craig Tiller | 3ab2fe0 | 2016-04-11 20:11:18 -0700 | [diff] [blame] | 1381 | "include/grpc++/impl/codegen/create_auth_context.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1382 | "include/grpc++/impl/codegen/grpc_library.h", |
| 1383 | "include/grpc++/impl/codegen/method_handler_impl.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1384 | "include/grpc++/impl/codegen/rpc_method.h", |
| 1385 | "include/grpc++/impl/codegen/rpc_service_method.h", |
| 1386 | "include/grpc++/impl/codegen/security/auth_context.h", |
| 1387 | "include/grpc++/impl/codegen/serialization_traits.h", |
| 1388 | "include/grpc++/impl/codegen/server_context.h", |
| 1389 | "include/grpc++/impl/codegen/server_interface.h", |
| 1390 | "include/grpc++/impl/codegen/service_type.h", |
| 1391 | "include/grpc++/impl/codegen/status.h", |
| 1392 | "include/grpc++/impl/codegen/status_code_enum.h", |
yang-g | d558149 | 2016-09-06 14:05:53 -0700 | [diff] [blame] | 1393 | "include/grpc++/impl/codegen/status_helper.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1394 | "include/grpc++/impl/codegen/string_ref.h", |
| 1395 | "include/grpc++/impl/codegen/stub_options.h", |
| 1396 | "include/grpc++/impl/codegen/sync.h", |
| 1397 | "include/grpc++/impl/codegen/sync_cxx11.h", |
| 1398 | "include/grpc++/impl/codegen/sync_no_cxx11.h", |
| 1399 | "include/grpc++/impl/codegen/sync_stream.h", |
| 1400 | "include/grpc++/impl/codegen/time.h", |
Nicolas "Pixel" Noble | 880b457 | 2016-09-19 20:24:05 +0200 | [diff] [blame] | 1401 | "include/grpc/impl/codegen/byte_buffer_reader.h", |
| 1402 | "include/grpc/impl/codegen/compression_types.h", |
| 1403 | "include/grpc/impl/codegen/connectivity_state.h", |
| 1404 | "include/grpc/impl/codegen/grpc_types.h", |
| 1405 | "include/grpc/impl/codegen/propagation_bits.h", |
| 1406 | "include/grpc/impl/codegen/status.h", |
Nicolas "Pixel" Noble | 880b457 | 2016-09-19 20:24:05 +0200 | [diff] [blame] | 1407 | "include/grpc/impl/codegen/atm.h", |
| 1408 | "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 1409 | "include/grpc/impl/codegen/atm_gcc_sync.h", |
| 1410 | "include/grpc/impl/codegen/atm_windows.h", |
Nicolas "Pixel" Noble | 87a1081 | 2016-09-29 01:31:54 +0200 | [diff] [blame] | 1411 | "include/grpc/impl/codegen/gpr_types.h", |
Nicolas "Pixel" Noble | 880b457 | 2016-09-19 20:24:05 +0200 | [diff] [blame] | 1412 | "include/grpc/impl/codegen/port_platform.h", |
| 1413 | "include/grpc/impl/codegen/slice.h", |
Nicolas "Pixel" Noble | 880b457 | 2016-09-19 20:24:05 +0200 | [diff] [blame] | 1414 | "include/grpc/impl/codegen/sync.h", |
| 1415 | "include/grpc/impl/codegen/sync_generic.h", |
| 1416 | "include/grpc/impl/codegen/sync_posix.h", |
| 1417 | "include/grpc/impl/codegen/sync_windows.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1418 | ], |
| 1419 | includes = [ |
| 1420 | "include", |
| 1421 | ".", |
| 1422 | ], |
| 1423 | deps = [ |
Craig Tiller | 02a7bed | 2015-08-31 15:54:05 -0700 | [diff] [blame] | 1424 | "//external:libssl", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1425 | "//external:protobuf_clib", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1426 | ":grpc", |
| 1427 | ], |
| 1428 | ) |
| 1429 | |
| 1430 | |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 1431 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1432 | cc_library( |
Yuchen Zeng | c84ed68 | 2016-05-04 16:30:11 -0700 | [diff] [blame] | 1433 | name = "grpc++_reflection", |
| 1434 | srcs = [ |
Yuchen Zeng | 0601df3 | 2016-06-06 13:08:06 -0700 | [diff] [blame] | 1435 | "src/cpp/ext/proto_server_reflection.h", |
| 1436 | "src/cpp/ext/proto_server_reflection.cc", |
| 1437 | "src/cpp/ext/proto_server_reflection_plugin.cc", |
| 1438 | "src/cpp/ext/reflection.grpc.pb.cc", |
| 1439 | "src/cpp/ext/reflection.pb.cc", |
Yuchen Zeng | c84ed68 | 2016-05-04 16:30:11 -0700 | [diff] [blame] | 1440 | ], |
| 1441 | hdrs = [ |
Yuchen Zeng | 0601df3 | 2016-06-06 13:08:06 -0700 | [diff] [blame] | 1442 | "include/grpc++/ext/proto_server_reflection_plugin.h", |
| 1443 | "include/grpc++/ext/reflection.grpc.pb.h", |
| 1444 | "include/grpc++/ext/reflection.pb.h", |
Yuchen Zeng | eb25a07 | 2016-06-08 10:59:48 -0700 | [diff] [blame] | 1445 | "include/grpc++/impl/codegen/proto_utils.h", |
| 1446 | "include/grpc++/impl/codegen/async_stream.h", |
| 1447 | "include/grpc++/impl/codegen/async_unary_call.h", |
| 1448 | "include/grpc++/impl/codegen/call.h", |
| 1449 | "include/grpc++/impl/codegen/call_hook.h", |
| 1450 | "include/grpc++/impl/codegen/channel_interface.h", |
| 1451 | "include/grpc++/impl/codegen/client_context.h", |
| 1452 | "include/grpc++/impl/codegen/client_unary_call.h", |
| 1453 | "include/grpc++/impl/codegen/completion_queue.h", |
| 1454 | "include/grpc++/impl/codegen/completion_queue_tag.h", |
| 1455 | "include/grpc++/impl/codegen/config.h", |
| 1456 | "include/grpc++/impl/codegen/core_codegen_interface.h", |
| 1457 | "include/grpc++/impl/codegen/create_auth_context.h", |
| 1458 | "include/grpc++/impl/codegen/grpc_library.h", |
| 1459 | "include/grpc++/impl/codegen/method_handler_impl.h", |
| 1460 | "include/grpc++/impl/codegen/rpc_method.h", |
| 1461 | "include/grpc++/impl/codegen/rpc_service_method.h", |
| 1462 | "include/grpc++/impl/codegen/security/auth_context.h", |
| 1463 | "include/grpc++/impl/codegen/serialization_traits.h", |
| 1464 | "include/grpc++/impl/codegen/server_context.h", |
| 1465 | "include/grpc++/impl/codegen/server_interface.h", |
| 1466 | "include/grpc++/impl/codegen/service_type.h", |
| 1467 | "include/grpc++/impl/codegen/status.h", |
| 1468 | "include/grpc++/impl/codegen/status_code_enum.h", |
yang-g | d558149 | 2016-09-06 14:05:53 -0700 | [diff] [blame] | 1469 | "include/grpc++/impl/codegen/status_helper.h", |
Yuchen Zeng | eb25a07 | 2016-06-08 10:59:48 -0700 | [diff] [blame] | 1470 | "include/grpc++/impl/codegen/string_ref.h", |
| 1471 | "include/grpc++/impl/codegen/stub_options.h", |
| 1472 | "include/grpc++/impl/codegen/sync.h", |
| 1473 | "include/grpc++/impl/codegen/sync_cxx11.h", |
| 1474 | "include/grpc++/impl/codegen/sync_no_cxx11.h", |
| 1475 | "include/grpc++/impl/codegen/sync_stream.h", |
| 1476 | "include/grpc++/impl/codegen/time.h", |
Yuchen Zeng | eb25a07 | 2016-06-08 10:59:48 -0700 | [diff] [blame] | 1477 | "include/grpc/impl/codegen/byte_buffer_reader.h", |
| 1478 | "include/grpc/impl/codegen/compression_types.h", |
| 1479 | "include/grpc/impl/codegen/connectivity_state.h", |
| 1480 | "include/grpc/impl/codegen/grpc_types.h", |
| 1481 | "include/grpc/impl/codegen/propagation_bits.h", |
| 1482 | "include/grpc/impl/codegen/status.h", |
Yuchen Zeng | eb25a07 | 2016-06-08 10:59:48 -0700 | [diff] [blame] | 1483 | "include/grpc/impl/codegen/atm.h", |
| 1484 | "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 1485 | "include/grpc/impl/codegen/atm_gcc_sync.h", |
| 1486 | "include/grpc/impl/codegen/atm_windows.h", |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 1487 | "include/grpc/impl/codegen/gpr_types.h", |
Yuchen Zeng | eb25a07 | 2016-06-08 10:59:48 -0700 | [diff] [blame] | 1488 | "include/grpc/impl/codegen/port_platform.h", |
| 1489 | "include/grpc/impl/codegen/slice.h", |
Yuchen Zeng | eb25a07 | 2016-06-08 10:59:48 -0700 | [diff] [blame] | 1490 | "include/grpc/impl/codegen/sync.h", |
| 1491 | "include/grpc/impl/codegen/sync_generic.h", |
| 1492 | "include/grpc/impl/codegen/sync_posix.h", |
| 1493 | "include/grpc/impl/codegen/sync_windows.h", |
Yuchen Zeng | eb25a07 | 2016-06-08 10:59:48 -0700 | [diff] [blame] | 1494 | "include/grpc++/impl/codegen/config_protobuf.h", |
Yuchen Zeng | c84ed68 | 2016-05-04 16:30:11 -0700 | [diff] [blame] | 1495 | ], |
| 1496 | includes = [ |
| 1497 | "include", |
| 1498 | ".", |
| 1499 | ], |
| 1500 | deps = [ |
Yuchen Zeng | c6bf5f7 | 2016-06-07 14:41:01 -0700 | [diff] [blame] | 1501 | ":grpc++", |
Yuchen Zeng | c84ed68 | 2016-05-04 16:30:11 -0700 | [diff] [blame] | 1502 | ], |
| 1503 | ) |
| 1504 | |
| 1505 | |
| 1506 | |
| 1507 | cc_library( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1508 | name = "grpc++_unsecure", |
| 1509 | srcs = [ |
yang-g | c317f07 | 2015-08-20 12:18:08 -0700 | [diff] [blame] | 1510 | "src/cpp/client/create_channel_internal.h", |
Mark D. Roth | ab950ee | 2016-06-29 14:51:53 -0700 | [diff] [blame] | 1511 | "src/cpp/common/channel_filter.h", |
Vijay Pai | e8a7e30 | 2015-08-24 10:52:33 -0700 | [diff] [blame] | 1512 | "src/cpp/server/dynamic_thread_pool.h", |
Vijay Pai | e8a7e30 | 2015-08-24 10:52:33 -0700 | [diff] [blame] | 1513 | "src/cpp/server/thread_pool_interface.h", |
murgatroid99 | 1ca0f3e | 2016-08-26 14:58:49 -0700 | [diff] [blame] | 1514 | "src/cpp/client/insecure_credentials.cc", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1515 | "src/cpp/common/insecure_create_auth_context.cc", |
murgatroid99 | 1ca0f3e | 2016-08-26 14:58:49 -0700 | [diff] [blame] | 1516 | "src/cpp/server/insecure_server_credentials.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1517 | "src/cpp/client/channel_cc.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1518 | "src/cpp/client/client_context.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1519 | "src/cpp/client/create_channel.cc", |
yang-g | c317f07 | 2015-08-20 12:18:08 -0700 | [diff] [blame] | 1520 | "src/cpp/client/create_channel_internal.cc", |
Adam Michalik | b97e2d1 | 2016-06-02 12:12:55 -0700 | [diff] [blame] | 1521 | "src/cpp/client/create_channel_posix.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1522 | "src/cpp/client/credentials_cc.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1523 | "src/cpp/client/generic_stub.cc", |
yang-g | 5270559 | 2015-11-25 11:45:33 -0800 | [diff] [blame] | 1524 | "src/cpp/common/channel_arguments.cc", |
Mark D. Roth | ec0bc8b | 2016-06-15 14:02:57 -0700 | [diff] [blame] | 1525 | "src/cpp/common/channel_filter.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1526 | "src/cpp/common/completion_queue_cc.cc", |
Nicolas "Pixel" Noble | 4268318 | 2016-03-17 00:25:39 +0100 | [diff] [blame] | 1527 | "src/cpp/common/core_codegen.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1528 | "src/cpp/common/rpc_method.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1529 | "src/cpp/server/async_generic_service.cc", |
Yang Gao | 6f4fb3b | 2015-06-03 12:56:19 -0700 | [diff] [blame] | 1530 | "src/cpp/server/create_default_thread_pool.cc", |
vjpai | b28456b | 2015-07-23 14:17:10 -0700 | [diff] [blame] | 1531 | "src/cpp/server/dynamic_thread_pool.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1532 | "src/cpp/server/server_builder.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1533 | "src/cpp/server/server_cc.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1534 | "src/cpp/server/server_context.cc", |
| 1535 | "src/cpp/server/server_credentials.cc", |
Adam Michalik | b97e2d1 | 2016-06-02 12:12:55 -0700 | [diff] [blame] | 1536 | "src/cpp/server/server_posix.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1537 | "src/cpp/util/byte_buffer_cc.cc", |
| 1538 | "src/cpp/util/slice_cc.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1539 | "src/cpp/util/status.cc", |
Julien Boeuf | 8fd915a | 2015-08-19 21:18:14 -0700 | [diff] [blame] | 1540 | "src/cpp/util/string_ref.cc", |
Craig Tiller | 102fa96 | 2016-08-22 13:56:36 -0700 | [diff] [blame] | 1541 | "src/cpp/util/time_cc.cc", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1542 | "src/cpp/codegen/codegen_init.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1543 | ], |
| 1544 | hdrs = [ |
vjpai | f9f61cf | 2016-02-10 20:51:53 -0800 | [diff] [blame] | 1545 | "include/grpc++/alarm.h", |
yang-g | 8c2be9f | 2015-08-19 16:28:09 -0700 | [diff] [blame] | 1546 | "include/grpc++/channel.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1547 | "include/grpc++/client_context.h", |
| 1548 | "include/grpc++/completion_queue.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1549 | "include/grpc++/create_channel.h", |
Adam Michalik | b97e2d1 | 2016-06-02 12:12:55 -0700 | [diff] [blame] | 1550 | "include/grpc++/create_channel_posix.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1551 | "include/grpc++/generic/async_generic_service.h", |
| 1552 | "include/grpc++/generic/generic_stub.h", |
Craig Tiller | d136a5c | 2015-09-11 12:23:32 -0700 | [diff] [blame] | 1553 | "include/grpc++/grpc++.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1554 | "include/grpc++/impl/call.h", |
| 1555 | "include/grpc++/impl/client_unary_call.h", |
David Garcia Quintas | a20a2ad | 2016-05-19 10:53:44 -0700 | [diff] [blame] | 1556 | "include/grpc++/impl/codegen/core_codegen.h", |
Yang Gao | 96de484 | 2015-04-24 13:13:12 -0700 | [diff] [blame] | 1557 | "include/grpc++/impl/grpc_library.h", |
yang-g | 77c6333 | 2016-01-14 16:09:04 -0800 | [diff] [blame] | 1558 | "include/grpc++/impl/method_handler_impl.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1559 | "include/grpc++/impl/rpc_method.h", |
| 1560 | "include/grpc++/impl/rpc_service_method.h", |
Craig Tiller | 6ef7f31 | 2015-06-05 10:15:10 -0700 | [diff] [blame] | 1561 | "include/grpc++/impl/serialization_traits.h", |
yang-g | a23f17b | 2015-11-25 10:21:05 -0800 | [diff] [blame] | 1562 | "include/grpc++/impl/server_builder_option.h", |
Yuchen Zeng | a42ec21 | 2016-04-29 13:03:06 -0700 | [diff] [blame] | 1563 | "include/grpc++/impl/server_builder_plugin.h", |
| 1564 | "include/grpc++/impl/server_initializer.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1565 | "include/grpc++/impl/service_type.h", |
Nicolas "Pixel" Noble | b7c2035 | 2015-04-11 01:27:32 +0200 | [diff] [blame] | 1566 | "include/grpc++/impl/sync.h", |
| 1567 | "include/grpc++/impl/sync_cxx11.h", |
| 1568 | "include/grpc++/impl/sync_no_cxx11.h", |
| 1569 | "include/grpc++/impl/thd.h", |
| 1570 | "include/grpc++/impl/thd_cxx11.h", |
| 1571 | "include/grpc++/impl/thd_no_cxx11.h", |
Julien Boeuf | 0d47192 | 2015-08-30 22:18:50 -0700 | [diff] [blame] | 1572 | "include/grpc++/security/auth_context.h", |
| 1573 | "include/grpc++/security/auth_metadata_processor.h", |
| 1574 | "include/grpc++/security/credentials.h", |
| 1575 | "include/grpc++/security/server_credentials.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1576 | "include/grpc++/server.h", |
| 1577 | "include/grpc++/server_builder.h", |
| 1578 | "include/grpc++/server_context.h", |
Adam Michalik | b97e2d1 | 2016-06-02 12:12:55 -0700 | [diff] [blame] | 1579 | "include/grpc++/server_posix.h", |
yang-g | 9fb35a5 | 2015-08-21 15:49:35 -0700 | [diff] [blame] | 1580 | "include/grpc++/support/async_stream.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1581 | "include/grpc++/support/async_unary_call.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1582 | "include/grpc++/support/byte_buffer.h", |
| 1583 | "include/grpc++/support/channel_arguments.h", |
yang-g | 17487f9 | 2016-06-03 15:21:15 -0700 | [diff] [blame] | 1584 | "include/grpc++/support/config.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1585 | "include/grpc++/support/slice.h", |
| 1586 | "include/grpc++/support/status.h", |
| 1587 | "include/grpc++/support/status_code_enum.h", |
Julien Boeuf | 0382bfa | 2015-08-24 23:55:43 -0700 | [diff] [blame] | 1588 | "include/grpc++/support/string_ref.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1589 | "include/grpc++/support/stub_options.h", |
yang-g | 9fb35a5 | 2015-08-21 15:49:35 -0700 | [diff] [blame] | 1590 | "include/grpc++/support/sync_stream.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 1591 | "include/grpc++/support/time.h", |
Craig Tiller | 03d8f2f | 2016-04-07 08:02:16 -0700 | [diff] [blame] | 1592 | "include/grpc++/impl/codegen/async_stream.h", |
| 1593 | "include/grpc++/impl/codegen/async_unary_call.h", |
| 1594 | "include/grpc++/impl/codegen/call.h", |
| 1595 | "include/grpc++/impl/codegen/call_hook.h", |
| 1596 | "include/grpc++/impl/codegen/channel_interface.h", |
| 1597 | "include/grpc++/impl/codegen/client_context.h", |
| 1598 | "include/grpc++/impl/codegen/client_unary_call.h", |
| 1599 | "include/grpc++/impl/codegen/completion_queue.h", |
| 1600 | "include/grpc++/impl/codegen/completion_queue_tag.h", |
yang-g | 17487f9 | 2016-06-03 15:21:15 -0700 | [diff] [blame] | 1601 | "include/grpc++/impl/codegen/config.h", |
Craig Tiller | 03d8f2f | 2016-04-07 08:02:16 -0700 | [diff] [blame] | 1602 | "include/grpc++/impl/codegen/core_codegen_interface.h", |
Craig Tiller | 3ab2fe0 | 2016-04-11 20:11:18 -0700 | [diff] [blame] | 1603 | "include/grpc++/impl/codegen/create_auth_context.h", |
Craig Tiller | 03d8f2f | 2016-04-07 08:02:16 -0700 | [diff] [blame] | 1604 | "include/grpc++/impl/codegen/grpc_library.h", |
| 1605 | "include/grpc++/impl/codegen/method_handler_impl.h", |
Craig Tiller | 03d8f2f | 2016-04-07 08:02:16 -0700 | [diff] [blame] | 1606 | "include/grpc++/impl/codegen/rpc_method.h", |
| 1607 | "include/grpc++/impl/codegen/rpc_service_method.h", |
| 1608 | "include/grpc++/impl/codegen/security/auth_context.h", |
| 1609 | "include/grpc++/impl/codegen/serialization_traits.h", |
| 1610 | "include/grpc++/impl/codegen/server_context.h", |
| 1611 | "include/grpc++/impl/codegen/server_interface.h", |
| 1612 | "include/grpc++/impl/codegen/service_type.h", |
| 1613 | "include/grpc++/impl/codegen/status.h", |
| 1614 | "include/grpc++/impl/codegen/status_code_enum.h", |
yang-g | d558149 | 2016-09-06 14:05:53 -0700 | [diff] [blame] | 1615 | "include/grpc++/impl/codegen/status_helper.h", |
Craig Tiller | 03d8f2f | 2016-04-07 08:02:16 -0700 | [diff] [blame] | 1616 | "include/grpc++/impl/codegen/string_ref.h", |
| 1617 | "include/grpc++/impl/codegen/stub_options.h", |
| 1618 | "include/grpc++/impl/codegen/sync.h", |
| 1619 | "include/grpc++/impl/codegen/sync_cxx11.h", |
| 1620 | "include/grpc++/impl/codegen/sync_no_cxx11.h", |
| 1621 | "include/grpc++/impl/codegen/sync_stream.h", |
| 1622 | "include/grpc++/impl/codegen/time.h", |
Nicolas "Pixel" Noble | 880b457 | 2016-09-19 20:24:05 +0200 | [diff] [blame] | 1623 | "include/grpc/impl/codegen/byte_buffer_reader.h", |
| 1624 | "include/grpc/impl/codegen/compression_types.h", |
| 1625 | "include/grpc/impl/codegen/connectivity_state.h", |
| 1626 | "include/grpc/impl/codegen/grpc_types.h", |
| 1627 | "include/grpc/impl/codegen/propagation_bits.h", |
| 1628 | "include/grpc/impl/codegen/status.h", |
Nicolas "Pixel" Noble | 880b457 | 2016-09-19 20:24:05 +0200 | [diff] [blame] | 1629 | "include/grpc/impl/codegen/atm.h", |
| 1630 | "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 1631 | "include/grpc/impl/codegen/atm_gcc_sync.h", |
| 1632 | "include/grpc/impl/codegen/atm_windows.h", |
Nicolas "Pixel" Noble | 87a1081 | 2016-09-29 01:31:54 +0200 | [diff] [blame] | 1633 | "include/grpc/impl/codegen/gpr_types.h", |
Nicolas "Pixel" Noble | 880b457 | 2016-09-19 20:24:05 +0200 | [diff] [blame] | 1634 | "include/grpc/impl/codegen/port_platform.h", |
| 1635 | "include/grpc/impl/codegen/slice.h", |
Nicolas "Pixel" Noble | 880b457 | 2016-09-19 20:24:05 +0200 | [diff] [blame] | 1636 | "include/grpc/impl/codegen/sync.h", |
| 1637 | "include/grpc/impl/codegen/sync_generic.h", |
| 1638 | "include/grpc/impl/codegen/sync_posix.h", |
| 1639 | "include/grpc/impl/codegen/sync_windows.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1640 | ], |
| 1641 | includes = [ |
| 1642 | "include", |
| 1643 | ".", |
| 1644 | ], |
| 1645 | deps = [ |
| 1646 | "//external:protobuf_clib", |
| 1647 | ":gpr", |
| 1648 | ":grpc_unsecure", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1649 | ], |
| 1650 | ) |
| 1651 | |
| 1652 | |
| 1653 | |
| 1654 | cc_library( |
| 1655 | name = "grpc_plugin_support", |
| 1656 | srcs = [ |
| 1657 | "src/compiler/config.h", |
| 1658 | "src/compiler/cpp_generator.h", |
| 1659 | "src/compiler/cpp_generator_helpers.h", |
| 1660 | "src/compiler/csharp_generator.h", |
| 1661 | "src/compiler/csharp_generator_helpers.h", |
| 1662 | "src/compiler/generator_helpers.h", |
murgatroid99 | d2ee81f | 2016-02-26 11:10:33 -0800 | [diff] [blame] | 1663 | "src/compiler/node_generator.h", |
| 1664 | "src/compiler/node_generator_helpers.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1665 | "src/compiler/objective_c_generator.h", |
| 1666 | "src/compiler/objective_c_generator_helpers.h", |
Stanley Cheung | 857a130 | 2016-09-29 17:26:29 -0700 | [diff] [blame] | 1667 | "src/compiler/php_generator.h", |
| 1668 | "src/compiler/php_generator_helpers.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1669 | "src/compiler/python_generator.h", |
| 1670 | "src/compiler/ruby_generator.h", |
| 1671 | "src/compiler/ruby_generator_helpers-inl.h", |
| 1672 | "src/compiler/ruby_generator_map-inl.h", |
| 1673 | "src/compiler/ruby_generator_string-inl.h", |
| 1674 | "src/compiler/cpp_generator.cc", |
| 1675 | "src/compiler/csharp_generator.cc", |
murgatroid99 | d2ee81f | 2016-02-26 11:10:33 -0800 | [diff] [blame] | 1676 | "src/compiler/node_generator.cc", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1677 | "src/compiler/objective_c_generator.cc", |
Stanley Cheung | 857a130 | 2016-09-29 17:26:29 -0700 | [diff] [blame] | 1678 | "src/compiler/php_generator.cc", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1679 | "src/compiler/python_generator.cc", |
| 1680 | "src/compiler/ruby_generator.cc", |
| 1681 | ], |
| 1682 | hdrs = [ |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1683 | "include/grpc++/impl/codegen/config_protobuf.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1684 | ], |
| 1685 | includes = [ |
| 1686 | "include", |
| 1687 | ".", |
| 1688 | ], |
| 1689 | deps = [ |
| 1690 | "//external:protobuf_compiler", |
| 1691 | ], |
| 1692 | ) |
| 1693 | |
| 1694 | |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 1695 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1696 | cc_library( |
| 1697 | name = "grpc_csharp_ext", |
| 1698 | srcs = [ |
| 1699 | "src/csharp/ext/grpc_csharp_ext.c", |
| 1700 | ], |
| 1701 | hdrs = [ |
| 1702 | ], |
| 1703 | includes = [ |
| 1704 | "include", |
| 1705 | ".", |
| 1706 | ], |
| 1707 | deps = [ |
Craig Tiller | d1697d9 | 2016-04-05 16:05:46 -0700 | [diff] [blame] | 1708 | ":grpc", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1709 | ":gpr", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1710 | ], |
| 1711 | ) |
| 1712 | |
| 1713 | |
| 1714 | |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 1715 | |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1716 | objc_library( |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 1717 | name = "gpr_objc", |
| 1718 | srcs = [ |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1719 | "src/core/lib/profiling/basic_timers.c", |
| 1720 | "src/core/lib/profiling/stap_timers.c", |
| 1721 | "src/core/lib/support/alloc.c", |
| 1722 | "src/core/lib/support/avl.c", |
| 1723 | "src/core/lib/support/backoff.c", |
| 1724 | "src/core/lib/support/cmdline.c", |
| 1725 | "src/core/lib/support/cpu_iphone.c", |
| 1726 | "src/core/lib/support/cpu_linux.c", |
| 1727 | "src/core/lib/support/cpu_posix.c", |
| 1728 | "src/core/lib/support/cpu_windows.c", |
| 1729 | "src/core/lib/support/env_linux.c", |
| 1730 | "src/core/lib/support/env_posix.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1731 | "src/core/lib/support/env_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1732 | "src/core/lib/support/histogram.c", |
| 1733 | "src/core/lib/support/host_port.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1734 | "src/core/lib/support/log.c", |
| 1735 | "src/core/lib/support/log_android.c", |
| 1736 | "src/core/lib/support/log_linux.c", |
| 1737 | "src/core/lib/support/log_posix.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1738 | "src/core/lib/support/log_windows.c", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 1739 | "src/core/lib/support/mpscq.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1740 | "src/core/lib/support/murmur_hash.c", |
Craig Tiller | 17ed6b1 | 2016-08-18 09:33:33 -0700 | [diff] [blame] | 1741 | "src/core/lib/support/percent_encoding.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1742 | "src/core/lib/support/slice.c", |
| 1743 | "src/core/lib/support/slice_buffer.c", |
| 1744 | "src/core/lib/support/stack_lockfree.c", |
| 1745 | "src/core/lib/support/string.c", |
| 1746 | "src/core/lib/support/string_posix.c", |
Yuchen Zeng | 4594bd9 | 2016-05-31 14:06:01 -0700 | [diff] [blame] | 1747 | "src/core/lib/support/string_util_windows.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1748 | "src/core/lib/support/string_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1749 | "src/core/lib/support/subprocess_posix.c", |
| 1750 | "src/core/lib/support/subprocess_windows.c", |
| 1751 | "src/core/lib/support/sync.c", |
| 1752 | "src/core/lib/support/sync_posix.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1753 | "src/core/lib/support/sync_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1754 | "src/core/lib/support/thd.c", |
| 1755 | "src/core/lib/support/thd_posix.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1756 | "src/core/lib/support/thd_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1757 | "src/core/lib/support/time.c", |
| 1758 | "src/core/lib/support/time_posix.c", |
| 1759 | "src/core/lib/support/time_precise.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1760 | "src/core/lib/support/time_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1761 | "src/core/lib/support/tls_pthread.c", |
Nicolas "Pixel" Noble | c4b18a5 | 2016-04-15 04:53:54 +0200 | [diff] [blame] | 1762 | "src/core/lib/support/tmpfile_msys.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1763 | "src/core/lib/support/tmpfile_posix.c", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1764 | "src/core/lib/support/tmpfile_windows.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1765 | "src/core/lib/support/wrap_memcpy.c", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 1766 | ], |
| 1767 | hdrs = [ |
| 1768 | "include/grpc/support/alloc.h", |
| 1769 | "include/grpc/support/atm.h", |
| 1770 | "include/grpc/support/atm_gcc_atomic.h", |
| 1771 | "include/grpc/support/atm_gcc_sync.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1772 | "include/grpc/support/atm_windows.h", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 1773 | "include/grpc/support/avl.h", |
| 1774 | "include/grpc/support/cmdline.h", |
| 1775 | "include/grpc/support/cpu.h", |
| 1776 | "include/grpc/support/histogram.h", |
| 1777 | "include/grpc/support/host_port.h", |
| 1778 | "include/grpc/support/log.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1779 | "include/grpc/support/log_windows.h", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 1780 | "include/grpc/support/port_platform.h", |
| 1781 | "include/grpc/support/slice.h", |
| 1782 | "include/grpc/support/slice_buffer.h", |
| 1783 | "include/grpc/support/string_util.h", |
| 1784 | "include/grpc/support/subprocess.h", |
| 1785 | "include/grpc/support/sync.h", |
| 1786 | "include/grpc/support/sync_generic.h", |
| 1787 | "include/grpc/support/sync_posix.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1788 | "include/grpc/support/sync_windows.h", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 1789 | "include/grpc/support/thd.h", |
| 1790 | "include/grpc/support/time.h", |
| 1791 | "include/grpc/support/tls.h", |
| 1792 | "include/grpc/support/tls_gcc.h", |
| 1793 | "include/grpc/support/tls_msvc.h", |
| 1794 | "include/grpc/support/tls_pthread.h", |
| 1795 | "include/grpc/support/useful.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1796 | "include/grpc/impl/codegen/atm.h", |
| 1797 | "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 1798 | "include/grpc/impl/codegen/atm_gcc_sync.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1799 | "include/grpc/impl/codegen/atm_windows.h", |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 1800 | "include/grpc/impl/codegen/gpr_types.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1801 | "include/grpc/impl/codegen/port_platform.h", |
| 1802 | "include/grpc/impl/codegen/slice.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1803 | "include/grpc/impl/codegen/sync.h", |
| 1804 | "include/grpc/impl/codegen/sync_generic.h", |
| 1805 | "include/grpc/impl/codegen/sync_posix.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1806 | "include/grpc/impl/codegen/sync_windows.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1807 | "src/core/lib/profiling/timers.h", |
| 1808 | "src/core/lib/support/backoff.h", |
| 1809 | "src/core/lib/support/block_annotate.h", |
| 1810 | "src/core/lib/support/env.h", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 1811 | "src/core/lib/support/mpscq.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1812 | "src/core/lib/support/murmur_hash.h", |
Craig Tiller | 17ed6b1 | 2016-08-18 09:33:33 -0700 | [diff] [blame] | 1813 | "src/core/lib/support/percent_encoding.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1814 | "src/core/lib/support/stack_lockfree.h", |
| 1815 | "src/core/lib/support/string.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 1816 | "src/core/lib/support/string_windows.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1817 | "src/core/lib/support/thd_internal.h", |
| 1818 | "src/core/lib/support/time_precise.h", |
| 1819 | "src/core/lib/support/tmpfile.h", |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 1820 | ], |
| 1821 | includes = [ |
| 1822 | "include", |
| 1823 | ".", |
| 1824 | ], |
| 1825 | deps = [ |
| 1826 | ], |
| 1827 | ) |
| 1828 | |
| 1829 | |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 1830 | |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 1831 | objc_library( |
Jorge Canizales | 7b1a0ca | 2015-06-26 21:49:42 -0700 | [diff] [blame] | 1832 | name = "grpc_objc", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1833 | srcs = [ |
Craig Tiller | 3ab2fe0 | 2016-04-11 20:11:18 -0700 | [diff] [blame] | 1834 | "src/core/lib/surface/init.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1835 | "src/core/lib/channel/channel_args.c", |
| 1836 | "src/core/lib/channel/channel_stack.c", |
| 1837 | "src/core/lib/channel/channel_stack_builder.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1838 | "src/core/lib/channel/compress_filter.c", |
| 1839 | "src/core/lib/channel/connected_channel.c", |
Mark D. Roth | 14c072c | 2016-08-26 08:31:34 -0700 | [diff] [blame] | 1840 | "src/core/lib/channel/deadline_filter.c", |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 1841 | "src/core/lib/channel/handshaker.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1842 | "src/core/lib/channel/http_client_filter.c", |
| 1843 | "src/core/lib/channel/http_server_filter.c", |
Mark D. Roth | af00d8b | 2016-08-23 12:48:16 -0700 | [diff] [blame] | 1844 | "src/core/lib/channel/message_size_filter.c", |
David Garcia Quintas | ac09447 | 2016-05-18 20:25:57 -0700 | [diff] [blame] | 1845 | "src/core/lib/compression/compression.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1846 | "src/core/lib/compression/message_compress.c", |
| 1847 | "src/core/lib/debug/trace.c", |
| 1848 | "src/core/lib/http/format_request.c", |
| 1849 | "src/core/lib/http/httpcli.c", |
| 1850 | "src/core/lib/http/parser.c", |
| 1851 | "src/core/lib/iomgr/closure.c", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 1852 | "src/core/lib/iomgr/combiner.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1853 | "src/core/lib/iomgr/endpoint.c", |
| 1854 | "src/core/lib/iomgr/endpoint_pair_posix.c", |
| 1855 | "src/core/lib/iomgr/endpoint_pair_windows.c", |
Craig Tiller | 27f59af | 2016-04-28 14:19:48 -0700 | [diff] [blame] | 1856 | "src/core/lib/iomgr/error.c", |
Sree Kuchibhotla | f448c34 | 2016-05-19 10:51:24 -0700 | [diff] [blame] | 1857 | "src/core/lib/iomgr/ev_epoll_linux.c", |
Craig Tiller | 69f3e2b | 2016-05-31 13:45:24 -0700 | [diff] [blame] | 1858 | "src/core/lib/iomgr/ev_poll_and_epoll_posix.c", |
Craig Tiller | d9a60bb | 2016-03-28 23:13:19 -0700 | [diff] [blame] | 1859 | "src/core/lib/iomgr/ev_poll_posix.c", |
Craig Tiller | 8a03448 | 2016-03-28 16:09:04 -0700 | [diff] [blame] | 1860 | "src/core/lib/iomgr/ev_posix.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1861 | "src/core/lib/iomgr/exec_ctx.c", |
| 1862 | "src/core/lib/iomgr/executor.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1863 | "src/core/lib/iomgr/iocp_windows.c", |
| 1864 | "src/core/lib/iomgr/iomgr.c", |
| 1865 | "src/core/lib/iomgr/iomgr_posix.c", |
| 1866 | "src/core/lib/iomgr/iomgr_windows.c", |
Craig Tiller | 8517886 | 2016-05-18 16:09:16 -0700 | [diff] [blame] | 1867 | "src/core/lib/iomgr/load_file.c", |
Makarand Dharmapurikar | 0579cfc | 2016-06-20 15:45:24 -0700 | [diff] [blame] | 1868 | "src/core/lib/iomgr/network_status_tracker.c", |
David Garcia Quintas | 2a50dfe | 2016-05-31 15:09:12 -0700 | [diff] [blame] | 1869 | "src/core/lib/iomgr/polling_entity.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1870 | "src/core/lib/iomgr/pollset_set_windows.c", |
| 1871 | "src/core/lib/iomgr/pollset_windows.c", |
| 1872 | "src/core/lib/iomgr/resolve_address_posix.c", |
| 1873 | "src/core/lib/iomgr/resolve_address_windows.c", |
| 1874 | "src/core/lib/iomgr/sockaddr_utils.c", |
| 1875 | "src/core/lib/iomgr/socket_utils_common_posix.c", |
| 1876 | "src/core/lib/iomgr/socket_utils_linux.c", |
| 1877 | "src/core/lib/iomgr/socket_utils_posix.c", |
| 1878 | "src/core/lib/iomgr/socket_windows.c", |
| 1879 | "src/core/lib/iomgr/tcp_client_posix.c", |
| 1880 | "src/core/lib/iomgr/tcp_client_windows.c", |
| 1881 | "src/core/lib/iomgr/tcp_posix.c", |
| 1882 | "src/core/lib/iomgr/tcp_server_posix.c", |
| 1883 | "src/core/lib/iomgr/tcp_server_windows.c", |
| 1884 | "src/core/lib/iomgr/tcp_windows.c", |
| 1885 | "src/core/lib/iomgr/time_averaged_stats.c", |
| 1886 | "src/core/lib/iomgr/timer.c", |
| 1887 | "src/core/lib/iomgr/timer_heap.c", |
| 1888 | "src/core/lib/iomgr/udp_server.c", |
| 1889 | "src/core/lib/iomgr/unix_sockets_posix.c", |
| 1890 | "src/core/lib/iomgr/unix_sockets_posix_noop.c", |
kpayson64 | d195cf5 | 2016-10-09 18:04:00 -0700 | [diff] [blame] | 1891 | "src/core/lib/iomgr/wakeup_fd_cv.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1892 | "src/core/lib/iomgr/wakeup_fd_eventfd.c", |
| 1893 | "src/core/lib/iomgr/wakeup_fd_nospecial.c", |
| 1894 | "src/core/lib/iomgr/wakeup_fd_pipe.c", |
| 1895 | "src/core/lib/iomgr/wakeup_fd_posix.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1896 | "src/core/lib/iomgr/workqueue_windows.c", |
| 1897 | "src/core/lib/json/json.c", |
| 1898 | "src/core/lib/json/json_reader.c", |
| 1899 | "src/core/lib/json/json_string.c", |
| 1900 | "src/core/lib/json/json_writer.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1901 | "src/core/lib/surface/alarm.c", |
| 1902 | "src/core/lib/surface/api_trace.c", |
| 1903 | "src/core/lib/surface/byte_buffer.c", |
| 1904 | "src/core/lib/surface/byte_buffer_reader.c", |
| 1905 | "src/core/lib/surface/call.c", |
| 1906 | "src/core/lib/surface/call_details.c", |
| 1907 | "src/core/lib/surface/call_log_batch.c", |
| 1908 | "src/core/lib/surface/channel.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1909 | "src/core/lib/surface/channel_init.c", |
| 1910 | "src/core/lib/surface/channel_ping.c", |
| 1911 | "src/core/lib/surface/channel_stack_type.c", |
| 1912 | "src/core/lib/surface/completion_queue.c", |
| 1913 | "src/core/lib/surface/event_string.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1914 | "src/core/lib/surface/lame_client.c", |
| 1915 | "src/core/lib/surface/metadata_array.c", |
| 1916 | "src/core/lib/surface/server.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1917 | "src/core/lib/surface/validate_metadata.c", |
| 1918 | "src/core/lib/surface/version.c", |
| 1919 | "src/core/lib/transport/byte_stream.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1920 | "src/core/lib/transport/connectivity_state.c", |
Mark D. Roth | 6a721b5 | 2016-10-14 12:43:34 -0700 | [diff] [blame] | 1921 | "src/core/lib/transport/mdstr_hash_table.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1922 | "src/core/lib/transport/metadata.c", |
| 1923 | "src/core/lib/transport/metadata_batch.c", |
| 1924 | "src/core/lib/transport/static_metadata.c", |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 1925 | "src/core/lib/transport/timeout_encoding.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1926 | "src/core/lib/transport/transport.c", |
| 1927 | "src/core/lib/transport/transport_op_string.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1928 | "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c", |
Yuchen Zeng | d982bba | 2016-05-12 18:53:52 -0700 | [diff] [blame] | 1929 | "src/core/ext/transport/chttp2/transport/bin_decoder.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1930 | "src/core/ext/transport/chttp2/transport/bin_encoder.c", |
| 1931 | "src/core/ext/transport/chttp2/transport/chttp2_plugin.c", |
| 1932 | "src/core/ext/transport/chttp2/transport/chttp2_transport.c", |
| 1933 | "src/core/ext/transport/chttp2/transport/frame_data.c", |
| 1934 | "src/core/ext/transport/chttp2/transport/frame_goaway.c", |
| 1935 | "src/core/ext/transport/chttp2/transport/frame_ping.c", |
| 1936 | "src/core/ext/transport/chttp2/transport/frame_rst_stream.c", |
| 1937 | "src/core/ext/transport/chttp2/transport/frame_settings.c", |
| 1938 | "src/core/ext/transport/chttp2/transport/frame_window_update.c", |
| 1939 | "src/core/ext/transport/chttp2/transport/hpack_encoder.c", |
| 1940 | "src/core/ext/transport/chttp2/transport/hpack_parser.c", |
| 1941 | "src/core/ext/transport/chttp2/transport/hpack_table.c", |
| 1942 | "src/core/ext/transport/chttp2/transport/huffsyms.c", |
| 1943 | "src/core/ext/transport/chttp2/transport/incoming_metadata.c", |
| 1944 | "src/core/ext/transport/chttp2/transport/parsing.c", |
| 1945 | "src/core/ext/transport/chttp2/transport/status_conversion.c", |
| 1946 | "src/core/ext/transport/chttp2/transport/stream_lists.c", |
| 1947 | "src/core/ext/transport/chttp2/transport/stream_map.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1948 | "src/core/ext/transport/chttp2/transport/varint.c", |
| 1949 | "src/core/ext/transport/chttp2/transport/writing.c", |
| 1950 | "src/core/ext/transport/chttp2/alpn/alpn.c", |
| 1951 | "src/core/lib/http/httpcli_security_connector.c", |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 1952 | "src/core/lib/security/context/security_context.c", |
| 1953 | "src/core/lib/security/credentials/composite/composite_credentials.c", |
| 1954 | "src/core/lib/security/credentials/credentials.c", |
| 1955 | "src/core/lib/security/credentials/credentials_metadata.c", |
| 1956 | "src/core/lib/security/credentials/fake/fake_credentials.c", |
| 1957 | "src/core/lib/security/credentials/google_default/credentials_posix.c", |
Yuchen Zeng | 4594bd9 | 2016-05-31 14:06:01 -0700 | [diff] [blame] | 1958 | "src/core/lib/security/credentials/google_default/credentials_windows.c", |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 1959 | "src/core/lib/security/credentials/google_default/google_default_credentials.c", |
| 1960 | "src/core/lib/security/credentials/iam/iam_credentials.c", |
| 1961 | "src/core/lib/security/credentials/jwt/json_token.c", |
| 1962 | "src/core/lib/security/credentials/jwt/jwt_credentials.c", |
| 1963 | "src/core/lib/security/credentials/jwt/jwt_verifier.c", |
| 1964 | "src/core/lib/security/credentials/oauth2/oauth2_credentials.c", |
| 1965 | "src/core/lib/security/credentials/plugin/plugin_credentials.c", |
| 1966 | "src/core/lib/security/credentials/ssl/ssl_credentials.c", |
| 1967 | "src/core/lib/security/transport/client_auth_filter.c", |
| 1968 | "src/core/lib/security/transport/handshake.c", |
| 1969 | "src/core/lib/security/transport/secure_endpoint.c", |
| 1970 | "src/core/lib/security/transport/security_connector.c", |
| 1971 | "src/core/lib/security/transport/server_auth_filter.c", |
Craig Tiller | ddad978 | 2016-05-05 17:11:31 -0700 | [diff] [blame] | 1972 | "src/core/lib/security/transport/tsi_error.c", |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 1973 | "src/core/lib/security/util/b64.c", |
| 1974 | "src/core/lib/security/util/json_util.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1975 | "src/core/lib/surface/init_secure.c", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 1976 | "src/core/lib/tsi/fake_transport_security.c", |
| 1977 | "src/core/lib/tsi/ssl_transport_security.c", |
| 1978 | "src/core/lib/tsi/transport_security.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1979 | "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c", |
| 1980 | "src/core/ext/client_config/channel_connectivity.c", |
| 1981 | "src/core/ext/client_config/client_channel.c", |
| 1982 | "src/core/ext/client_config/client_channel_factory.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1983 | "src/core/ext/client_config/client_config_plugin.c", |
| 1984 | "src/core/ext/client_config/connector.c", |
| 1985 | "src/core/ext/client_config/default_initial_connect_string.c", |
Mark D. Roth | 1102a9e | 2016-07-22 09:10:01 -0700 | [diff] [blame] | 1986 | "src/core/ext/client_config/http_connect_handshaker.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1987 | "src/core/ext/client_config/initial_connect_string.c", |
| 1988 | "src/core/ext/client_config/lb_policy.c", |
| 1989 | "src/core/ext/client_config/lb_policy_factory.c", |
| 1990 | "src/core/ext/client_config/lb_policy_registry.c", |
Mark D. Roth | 4c3a468 | 2016-09-23 15:19:26 -0700 | [diff] [blame] | 1991 | "src/core/ext/client_config/method_config.c", |
David Garcia Quintas | 9885bff | 2016-04-07 17:31:29 -0700 | [diff] [blame] | 1992 | "src/core/ext/client_config/parse_address.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1993 | "src/core/ext/client_config/resolver.c", |
| 1994 | "src/core/ext/client_config/resolver_factory.c", |
| 1995 | "src/core/ext/client_config/resolver_registry.c", |
Mark D. Roth | ff4df06 | 2016-08-22 15:02:49 -0700 | [diff] [blame] | 1996 | "src/core/ext/client_config/resolver_result.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1997 | "src/core/ext/client_config/subchannel.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1998 | "src/core/ext/client_config/subchannel_index.c", |
| 1999 | "src/core/ext/client_config/uri_parser.c", |
| 2000 | "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c", |
Adam Michalik | bf10c82 | 2016-05-20 16:13:32 -0700 | [diff] [blame] | 2001 | "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2002 | "src/core/ext/transport/chttp2/client/insecure/channel_create.c", |
Adam Michalik | 321b1fb | 2016-05-16 15:42:36 -0700 | [diff] [blame] | 2003 | "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c", |
David Garcia Quintas | 3fb8f73 | 2016-06-15 22:53:08 -0700 | [diff] [blame] | 2004 | "src/core/ext/lb_policy/grpclb/grpclb.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2005 | "src/core/ext/lb_policy/grpclb/load_balancer_api.c", |
David Garcia Quintas | 7f0793a | 2016-04-25 12:35:58 -0700 | [diff] [blame] | 2006 | "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2007 | "src/core/ext/lb_policy/pick_first/pick_first.c", |
| 2008 | "src/core/ext/lb_policy/round_robin/round_robin.c", |
| 2009 | "src/core/ext/resolver/dns/native/dns_resolver.c", |
| 2010 | "src/core/ext/resolver/sockaddr/sockaddr_resolver.c", |
David Garcia Quintas | b41363e | 2016-04-29 00:41:21 -0700 | [diff] [blame] | 2011 | "src/core/ext/load_reporting/load_reporting.c", |
| 2012 | "src/core/ext/load_reporting/load_reporting_filter.c", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 2013 | "src/core/ext/census/base_resources.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2014 | "src/core/ext/census/context.c", |
Alistair Veitch | 30fe632 | 2016-05-23 10:11:28 -0700 | [diff] [blame] | 2015 | "src/core/ext/census/gen/census.pb.c", |
Alistair Veitch | a0c69f9 | 2016-08-31 12:01:27 -0700 | [diff] [blame] | 2016 | "src/core/ext/census/gen/trace_context.pb.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2017 | "src/core/ext/census/grpc_context.c", |
| 2018 | "src/core/ext/census/grpc_filter.c", |
| 2019 | "src/core/ext/census/grpc_plugin.c", |
| 2020 | "src/core/ext/census/initialize.c", |
| 2021 | "src/core/ext/census/mlog.c", |
| 2022 | "src/core/ext/census/operation.c", |
| 2023 | "src/core/ext/census/placeholders.c", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 2024 | "src/core/ext/census/resource.c", |
Vizerai | 12d1fc6 | 2016-09-09 14:22:19 -0700 | [diff] [blame] | 2025 | "src/core/ext/census/trace_context.c", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2026 | "src/core/ext/census/tracing.c", |
Craig Tiller | fb43385 | 2016-03-29 08:51:07 -0700 | [diff] [blame] | 2027 | "src/core/plugin_registry/grpc_plugin_registry.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 2028 | ], |
| 2029 | hdrs = [ |
| 2030 | "include/grpc/byte_buffer.h", |
| 2031 | "include/grpc/byte_buffer_reader.h", |
| 2032 | "include/grpc/compression.h", |
| 2033 | "include/grpc/grpc.h", |
Adam Michalik | 321b1fb | 2016-05-16 15:42:36 -0700 | [diff] [blame] | 2034 | "include/grpc/grpc_posix.h", |
Nicolas "Pixel" Noble | a469e5d | 2016-08-16 22:09:27 +0200 | [diff] [blame] | 2035 | "include/grpc/grpc_security_constants.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2036 | "include/grpc/status.h", |
David Garcia Quintas | 1b2db63 | 2016-04-27 15:06:54 -0700 | [diff] [blame] | 2037 | "include/grpc/impl/codegen/byte_buffer_reader.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 2038 | "include/grpc/impl/codegen/compression_types.h", |
| 2039 | "include/grpc/impl/codegen/connectivity_state.h", |
| 2040 | "include/grpc/impl/codegen/grpc_types.h", |
| 2041 | "include/grpc/impl/codegen/propagation_bits.h", |
| 2042 | "include/grpc/impl/codegen/status.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2043 | "include/grpc/impl/codegen/atm.h", |
| 2044 | "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 2045 | "include/grpc/impl/codegen/atm_gcc_sync.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 2046 | "include/grpc/impl/codegen/atm_windows.h", |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 2047 | "include/grpc/impl/codegen/gpr_types.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2048 | "include/grpc/impl/codegen/port_platform.h", |
| 2049 | "include/grpc/impl/codegen/slice.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2050 | "include/grpc/impl/codegen/sync.h", |
| 2051 | "include/grpc/impl/codegen/sync_generic.h", |
| 2052 | "include/grpc/impl/codegen/sync_posix.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 2053 | "include/grpc/impl/codegen/sync_windows.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2054 | "include/grpc/grpc_security.h", |
| 2055 | "include/grpc/census.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2056 | "src/core/lib/channel/channel_args.h", |
| 2057 | "src/core/lib/channel/channel_stack.h", |
| 2058 | "src/core/lib/channel/channel_stack_builder.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2059 | "src/core/lib/channel/compress_filter.h", |
| 2060 | "src/core/lib/channel/connected_channel.h", |
| 2061 | "src/core/lib/channel/context.h", |
Mark D. Roth | 14c072c | 2016-08-26 08:31:34 -0700 | [diff] [blame] | 2062 | "src/core/lib/channel/deadline_filter.h", |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 2063 | "src/core/lib/channel/handshaker.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2064 | "src/core/lib/channel/http_client_filter.h", |
| 2065 | "src/core/lib/channel/http_server_filter.h", |
Mark D. Roth | af00d8b | 2016-08-23 12:48:16 -0700 | [diff] [blame] | 2066 | "src/core/lib/channel/message_size_filter.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2067 | "src/core/lib/compression/algorithm_metadata.h", |
| 2068 | "src/core/lib/compression/message_compress.h", |
| 2069 | "src/core/lib/debug/trace.h", |
| 2070 | "src/core/lib/http/format_request.h", |
| 2071 | "src/core/lib/http/httpcli.h", |
| 2072 | "src/core/lib/http/parser.h", |
| 2073 | "src/core/lib/iomgr/closure.h", |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 2074 | "src/core/lib/iomgr/combiner.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2075 | "src/core/lib/iomgr/endpoint.h", |
| 2076 | "src/core/lib/iomgr/endpoint_pair.h", |
Craig Tiller | 27f59af | 2016-04-28 14:19:48 -0700 | [diff] [blame] | 2077 | "src/core/lib/iomgr/error.h", |
Sree Kuchibhotla | f448c34 | 2016-05-19 10:51:24 -0700 | [diff] [blame] | 2078 | "src/core/lib/iomgr/ev_epoll_linux.h", |
Craig Tiller | 69f3e2b | 2016-05-31 13:45:24 -0700 | [diff] [blame] | 2079 | "src/core/lib/iomgr/ev_poll_and_epoll_posix.h", |
Craig Tiller | d9a60bb | 2016-03-28 23:13:19 -0700 | [diff] [blame] | 2080 | "src/core/lib/iomgr/ev_poll_posix.h", |
Craig Tiller | 8a03448 | 2016-03-28 16:09:04 -0700 | [diff] [blame] | 2081 | "src/core/lib/iomgr/ev_posix.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2082 | "src/core/lib/iomgr/exec_ctx.h", |
| 2083 | "src/core/lib/iomgr/executor.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2084 | "src/core/lib/iomgr/iocp_windows.h", |
| 2085 | "src/core/lib/iomgr/iomgr.h", |
| 2086 | "src/core/lib/iomgr/iomgr_internal.h", |
| 2087 | "src/core/lib/iomgr/iomgr_posix.h", |
Craig Tiller | 8517886 | 2016-05-18 16:09:16 -0700 | [diff] [blame] | 2088 | "src/core/lib/iomgr/load_file.h", |
Makarand Dharmapurikar | 0579cfc | 2016-06-20 15:45:24 -0700 | [diff] [blame] | 2089 | "src/core/lib/iomgr/network_status_tracker.h", |
David Garcia Quintas | 2a50dfe | 2016-05-31 15:09:12 -0700 | [diff] [blame] | 2090 | "src/core/lib/iomgr/polling_entity.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2091 | "src/core/lib/iomgr/pollset.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2092 | "src/core/lib/iomgr/pollset_set.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2093 | "src/core/lib/iomgr/pollset_set_windows.h", |
| 2094 | "src/core/lib/iomgr/pollset_windows.h", |
| 2095 | "src/core/lib/iomgr/resolve_address.h", |
| 2096 | "src/core/lib/iomgr/sockaddr.h", |
| 2097 | "src/core/lib/iomgr/sockaddr_posix.h", |
| 2098 | "src/core/lib/iomgr/sockaddr_utils.h", |
Yuchen Zeng | 12dfdc3 | 2016-04-26 22:05:41 -0700 | [diff] [blame] | 2099 | "src/core/lib/iomgr/sockaddr_windows.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2100 | "src/core/lib/iomgr/socket_utils_posix.h", |
| 2101 | "src/core/lib/iomgr/socket_windows.h", |
| 2102 | "src/core/lib/iomgr/tcp_client.h", |
| 2103 | "src/core/lib/iomgr/tcp_posix.h", |
| 2104 | "src/core/lib/iomgr/tcp_server.h", |
| 2105 | "src/core/lib/iomgr/tcp_windows.h", |
| 2106 | "src/core/lib/iomgr/time_averaged_stats.h", |
| 2107 | "src/core/lib/iomgr/timer.h", |
| 2108 | "src/core/lib/iomgr/timer_heap.h", |
| 2109 | "src/core/lib/iomgr/udp_server.h", |
| 2110 | "src/core/lib/iomgr/unix_sockets_posix.h", |
kpayson64 | d195cf5 | 2016-10-09 18:04:00 -0700 | [diff] [blame] | 2111 | "src/core/lib/iomgr/wakeup_fd_cv.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2112 | "src/core/lib/iomgr/wakeup_fd_pipe.h", |
| 2113 | "src/core/lib/iomgr/wakeup_fd_posix.h", |
| 2114 | "src/core/lib/iomgr/workqueue.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2115 | "src/core/lib/iomgr/workqueue_windows.h", |
| 2116 | "src/core/lib/json/json.h", |
| 2117 | "src/core/lib/json/json_common.h", |
| 2118 | "src/core/lib/json/json_reader.h", |
| 2119 | "src/core/lib/json/json_writer.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2120 | "src/core/lib/surface/api_trace.h", |
| 2121 | "src/core/lib/surface/call.h", |
| 2122 | "src/core/lib/surface/call_test_only.h", |
| 2123 | "src/core/lib/surface/channel.h", |
| 2124 | "src/core/lib/surface/channel_init.h", |
| 2125 | "src/core/lib/surface/channel_stack_type.h", |
| 2126 | "src/core/lib/surface/completion_queue.h", |
| 2127 | "src/core/lib/surface/event_string.h", |
| 2128 | "src/core/lib/surface/init.h", |
| 2129 | "src/core/lib/surface/lame_client.h", |
| 2130 | "src/core/lib/surface/server.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2131 | "src/core/lib/transport/byte_stream.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2132 | "src/core/lib/transport/connectivity_state.h", |
Mark D. Roth | 6a721b5 | 2016-10-14 12:43:34 -0700 | [diff] [blame] | 2133 | "src/core/lib/transport/mdstr_hash_table.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2134 | "src/core/lib/transport/metadata.h", |
| 2135 | "src/core/lib/transport/metadata_batch.h", |
| 2136 | "src/core/lib/transport/static_metadata.h", |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 2137 | "src/core/lib/transport/timeout_encoding.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2138 | "src/core/lib/transport/transport.h", |
| 2139 | "src/core/lib/transport/transport_impl.h", |
Yuchen Zeng | d982bba | 2016-05-12 18:53:52 -0700 | [diff] [blame] | 2140 | "src/core/ext/transport/chttp2/transport/bin_decoder.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2141 | "src/core/ext/transport/chttp2/transport/bin_encoder.h", |
| 2142 | "src/core/ext/transport/chttp2/transport/chttp2_transport.h", |
| 2143 | "src/core/ext/transport/chttp2/transport/frame.h", |
| 2144 | "src/core/ext/transport/chttp2/transport/frame_data.h", |
| 2145 | "src/core/ext/transport/chttp2/transport/frame_goaway.h", |
| 2146 | "src/core/ext/transport/chttp2/transport/frame_ping.h", |
| 2147 | "src/core/ext/transport/chttp2/transport/frame_rst_stream.h", |
| 2148 | "src/core/ext/transport/chttp2/transport/frame_settings.h", |
| 2149 | "src/core/ext/transport/chttp2/transport/frame_window_update.h", |
| 2150 | "src/core/ext/transport/chttp2/transport/hpack_encoder.h", |
| 2151 | "src/core/ext/transport/chttp2/transport/hpack_parser.h", |
| 2152 | "src/core/ext/transport/chttp2/transport/hpack_table.h", |
| 2153 | "src/core/ext/transport/chttp2/transport/http2_errors.h", |
| 2154 | "src/core/ext/transport/chttp2/transport/huffsyms.h", |
| 2155 | "src/core/ext/transport/chttp2/transport/incoming_metadata.h", |
| 2156 | "src/core/ext/transport/chttp2/transport/internal.h", |
| 2157 | "src/core/ext/transport/chttp2/transport/status_conversion.h", |
| 2158 | "src/core/ext/transport/chttp2/transport/stream_map.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2159 | "src/core/ext/transport/chttp2/transport/varint.h", |
| 2160 | "src/core/ext/transport/chttp2/alpn/alpn.h", |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 2161 | "src/core/lib/security/context/security_context.h", |
| 2162 | "src/core/lib/security/credentials/composite/composite_credentials.h", |
| 2163 | "src/core/lib/security/credentials/credentials.h", |
| 2164 | "src/core/lib/security/credentials/fake/fake_credentials.h", |
| 2165 | "src/core/lib/security/credentials/google_default/google_default_credentials.h", |
| 2166 | "src/core/lib/security/credentials/iam/iam_credentials.h", |
| 2167 | "src/core/lib/security/credentials/jwt/json_token.h", |
| 2168 | "src/core/lib/security/credentials/jwt/jwt_credentials.h", |
| 2169 | "src/core/lib/security/credentials/jwt/jwt_verifier.h", |
| 2170 | "src/core/lib/security/credentials/oauth2/oauth2_credentials.h", |
| 2171 | "src/core/lib/security/credentials/plugin/plugin_credentials.h", |
| 2172 | "src/core/lib/security/credentials/ssl/ssl_credentials.h", |
| 2173 | "src/core/lib/security/transport/auth_filters.h", |
| 2174 | "src/core/lib/security/transport/handshake.h", |
| 2175 | "src/core/lib/security/transport/secure_endpoint.h", |
| 2176 | "src/core/lib/security/transport/security_connector.h", |
Craig Tiller | ddad978 | 2016-05-05 17:11:31 -0700 | [diff] [blame] | 2177 | "src/core/lib/security/transport/tsi_error.h", |
Julien Boeuf | 8ca294e | 2016-05-02 14:56:30 -0700 | [diff] [blame] | 2178 | "src/core/lib/security/util/b64.h", |
| 2179 | "src/core/lib/security/util/json_util.h", |
Craig Tiller | f23078c | 2016-03-25 17:07:29 -0700 | [diff] [blame] | 2180 | "src/core/lib/tsi/fake_transport_security.h", |
| 2181 | "src/core/lib/tsi/ssl_transport_security.h", |
| 2182 | "src/core/lib/tsi/ssl_types.h", |
| 2183 | "src/core/lib/tsi/transport_security.h", |
| 2184 | "src/core/lib/tsi/transport_security_interface.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2185 | "src/core/ext/client_config/client_channel.h", |
| 2186 | "src/core/ext/client_config/client_channel_factory.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2187 | "src/core/ext/client_config/connector.h", |
Mark D. Roth | 1102a9e | 2016-07-22 09:10:01 -0700 | [diff] [blame] | 2188 | "src/core/ext/client_config/http_connect_handshaker.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2189 | "src/core/ext/client_config/initial_connect_string.h", |
| 2190 | "src/core/ext/client_config/lb_policy.h", |
| 2191 | "src/core/ext/client_config/lb_policy_factory.h", |
| 2192 | "src/core/ext/client_config/lb_policy_registry.h", |
Mark D. Roth | 4c3a468 | 2016-09-23 15:19:26 -0700 | [diff] [blame] | 2193 | "src/core/ext/client_config/method_config.h", |
David Garcia Quintas | 9885bff | 2016-04-07 17:31:29 -0700 | [diff] [blame] | 2194 | "src/core/ext/client_config/parse_address.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2195 | "src/core/ext/client_config/resolver.h", |
| 2196 | "src/core/ext/client_config/resolver_factory.h", |
| 2197 | "src/core/ext/client_config/resolver_registry.h", |
Mark D. Roth | ff4df06 | 2016-08-22 15:02:49 -0700 | [diff] [blame] | 2198 | "src/core/ext/client_config/resolver_result.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2199 | "src/core/ext/client_config/subchannel.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2200 | "src/core/ext/client_config/subchannel_index.h", |
| 2201 | "src/core/ext/client_config/uri_parser.h", |
David Garcia Quintas | b2e986b | 2016-06-15 23:55:50 -0700 | [diff] [blame] | 2202 | "src/core/ext/lb_policy/grpclb/grpclb.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2203 | "src/core/ext/lb_policy/grpclb/load_balancer_api.h", |
David Garcia Quintas | 7f0793a | 2016-04-25 12:35:58 -0700 | [diff] [blame] | 2204 | "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h", |
David Garcia Quintas | b41363e | 2016-04-29 00:41:21 -0700 | [diff] [blame] | 2205 | "src/core/ext/load_reporting/load_reporting.h", |
| 2206 | "src/core/ext/load_reporting/load_reporting_filter.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2207 | "src/core/ext/census/aggregation.h", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 2208 | "src/core/ext/census/base_resources.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2209 | "src/core/ext/census/census_interface.h", |
| 2210 | "src/core/ext/census/census_rpc_stats.h", |
Alistair Veitch | 30fe632 | 2016-05-23 10:11:28 -0700 | [diff] [blame] | 2211 | "src/core/ext/census/gen/census.pb.h", |
Alistair Veitch | a0c69f9 | 2016-08-31 12:01:27 -0700 | [diff] [blame] | 2212 | "src/core/ext/census/gen/trace_context.pb.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2213 | "src/core/ext/census/grpc_filter.h", |
| 2214 | "src/core/ext/census/mlog.h", |
Alistair Veitch | 4aaba75 | 2016-06-02 17:11:46 -0700 | [diff] [blame] | 2215 | "src/core/ext/census/resource.h", |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 2216 | "src/core/ext/census/rpc_metric_id.h", |
Vizerai | 12d1fc6 | 2016-09-09 14:22:19 -0700 | [diff] [blame] | 2217 | "src/core/ext/census/trace_context.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 2218 | ], |
| 2219 | includes = [ |
| 2220 | "include", |
| 2221 | ".", |
| 2222 | ], |
| 2223 | deps = [ |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 2224 | ":gpr_objc", |
Jorge Canizales | 4dc4e3d | 2015-06-26 22:12:02 -0700 | [diff] [blame] | 2225 | "//external:libssl_objc", |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 2226 | "//external:nanopb", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 2227 | ], |
Jorge Canizales | 8c1fd04 | 2015-06-22 19:11:36 -0700 | [diff] [blame] | 2228 | sdk_dylibs = ["libz"], |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 2229 | ) |
| 2230 | |
| 2231 | |
| 2232 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 2233 | cc_binary( |
| 2234 | name = "grpc_cpp_plugin", |
| 2235 | srcs = [ |
| 2236 | "src/compiler/cpp_plugin.cc", |
| 2237 | ], |
| 2238 | deps = [ |
| 2239 | "//external:protobuf_compiler", |
| 2240 | ":grpc_plugin_support", |
| 2241 | ], |
| 2242 | ) |
| 2243 | |
| 2244 | |
| 2245 | cc_binary( |
Jan Tattermusch | 2d92495 | 2015-05-06 10:23:17 -0700 | [diff] [blame] | 2246 | name = "grpc_csharp_plugin", |
| 2247 | srcs = [ |
| 2248 | "src/compiler/csharp_plugin.cc", |
| 2249 | ], |
| 2250 | deps = [ |
| 2251 | "//external:protobuf_compiler", |
| 2252 | ":grpc_plugin_support", |
| 2253 | ], |
| 2254 | ) |
| 2255 | |
| 2256 | |
| 2257 | cc_binary( |
murgatroid99 | d2ee81f | 2016-02-26 11:10:33 -0800 | [diff] [blame] | 2258 | name = "grpc_node_plugin", |
| 2259 | srcs = [ |
| 2260 | "src/compiler/node_plugin.cc", |
| 2261 | ], |
| 2262 | deps = [ |
| 2263 | "//external:protobuf_compiler", |
| 2264 | ":grpc_plugin_support", |
| 2265 | ], |
| 2266 | ) |
| 2267 | |
| 2268 | |
| 2269 | cc_binary( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 2270 | name = "grpc_objective_c_plugin", |
| 2271 | srcs = [ |
| 2272 | "src/compiler/objective_c_plugin.cc", |
| 2273 | ], |
| 2274 | deps = [ |
| 2275 | "//external:protobuf_compiler", |
| 2276 | ":grpc_plugin_support", |
| 2277 | ], |
| 2278 | ) |
| 2279 | |
| 2280 | |
| 2281 | cc_binary( |
Stanley Cheung | 857a130 | 2016-09-29 17:26:29 -0700 | [diff] [blame] | 2282 | name = "grpc_php_plugin", |
| 2283 | srcs = [ |
| 2284 | "src/compiler/php_plugin.cc", |
| 2285 | ], |
| 2286 | deps = [ |
| 2287 | "//external:protobuf_compiler", |
| 2288 | ":grpc_plugin_support", |
| 2289 | ], |
| 2290 | ) |
| 2291 | |
| 2292 | |
| 2293 | cc_binary( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 2294 | name = "grpc_python_plugin", |
| 2295 | srcs = [ |
| 2296 | "src/compiler/python_plugin.cc", |
| 2297 | ], |
| 2298 | deps = [ |
| 2299 | "//external:protobuf_compiler", |
| 2300 | ":grpc_plugin_support", |
| 2301 | ], |
| 2302 | ) |
| 2303 | |
| 2304 | |
| 2305 | cc_binary( |
| 2306 | name = "grpc_ruby_plugin", |
| 2307 | srcs = [ |
| 2308 | "src/compiler/ruby_plugin.cc", |
| 2309 | ], |
| 2310 | deps = [ |
| 2311 | "//external:protobuf_compiler", |
| 2312 | ":grpc_plugin_support", |
| 2313 | ], |
| 2314 | ) |
| 2315 | |
| 2316 | |
| 2317 | |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 2318 | |
| 2319 | |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 2320 | |
Jorge Canizales | 91e67a2 | 2015-06-24 13:50:04 -0700 | [diff] [blame] | 2321 | |
| 2322 | |
Jorge Canizales | 44dc423 | 2015-06-19 16:30:31 -0700 | [diff] [blame] | 2323 | objc_path = "src/objective-c" |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 2324 | |
Jorge Canizales | 44dc423 | 2015-06-19 16:30:31 -0700 | [diff] [blame] | 2325 | rx_library_path = objc_path + "/RxLibrary" |
| 2326 | |
| 2327 | objc_library( |
Jorge Canizales | bba8076 | 2015-06-26 23:25:48 -0700 | [diff] [blame] | 2328 | name = "rx_library", |
| 2329 | hdrs = glob([ |
| 2330 | rx_library_path + "/*.h", |
| 2331 | rx_library_path + "/transformations/*.h", |
| 2332 | ]), |
| 2333 | srcs = glob([ |
| 2334 | rx_library_path + "/*.m", |
| 2335 | rx_library_path + "/transformations/*.m", |
| 2336 | ]), |
| 2337 | includes = [objc_path], |
| 2338 | deps = [ |
| 2339 | ":rx_library_private", |
| 2340 | ], |
Jorge Canizales | 44dc423 | 2015-06-19 16:30:31 -0700 | [diff] [blame] | 2341 | ) |
| 2342 | |
| 2343 | objc_library( |
Jorge Canizales | bba8076 | 2015-06-26 23:25:48 -0700 | [diff] [blame] | 2344 | name = "rx_library_private", |
| 2345 | hdrs = glob([rx_library_path + "/private/*.h"]), |
| 2346 | srcs = glob([rx_library_path + "/private/*.m"]), |
| 2347 | visibility = ["//visibility:private"], |
Jorge Canizales | 44dc423 | 2015-06-19 16:30:31 -0700 | [diff] [blame] | 2348 | ) |
Jorge Canizales | 866255e | 2015-06-20 18:58:38 -0700 | [diff] [blame] | 2349 | |
| 2350 | objc_client_path = objc_path + "/GRPCClient" |
| 2351 | |
| 2352 | objc_library( |
| 2353 | name = "grpc_client", |
| 2354 | hdrs = glob([ |
| 2355 | objc_client_path + "/*.h", |
| 2356 | objc_client_path + "/private/*.h", |
| 2357 | ]), |
| 2358 | srcs = glob([ |
| 2359 | objc_client_path + "/*.m", |
| 2360 | objc_client_path + "/private/*.m", |
| 2361 | ]), |
| 2362 | includes = [objc_path], |
Jorge Canizales | bb54ae8 | 2015-06-28 06:50:58 -0700 | [diff] [blame] | 2363 | bundles = [":gRPCCertificates"], |
Jorge Canizales | 866255e | 2015-06-20 18:58:38 -0700 | [diff] [blame] | 2364 | deps = [ |
| 2365 | ":grpc_objc", |
| 2366 | ":rx_library", |
| 2367 | ], |
| 2368 | ) |
Jorge Canizales | bb54ae8 | 2015-06-28 06:50:58 -0700 | [diff] [blame] | 2369 | |
| 2370 | objc_bundle_library( |
| 2371 | # The choice of name is signicant here, since it determines the bundle name. |
| 2372 | name = "gRPCCertificates", |
| 2373 | resources = ["etc/roots.pem"], |
| 2374 | ) |
Jorge Canizales | 50f1982 | 2015-06-28 23:48:30 -0700 | [diff] [blame] | 2375 | |
| 2376 | proto_objc_rpc_path = objc_path + "/ProtoRPC" |
| 2377 | |
| 2378 | objc_library( |
| 2379 | name = "proto_objc_rpc", |
| 2380 | hdrs = glob([ |
| 2381 | proto_objc_rpc_path + "/*.h", |
| 2382 | ]), |
| 2383 | srcs = glob([ |
| 2384 | proto_objc_rpc_path + "/*.m", |
| 2385 | ]), |
| 2386 | includes = [objc_path], |
| 2387 | deps = [ |
| 2388 | ":grpc_client", |
| 2389 | ":rx_library", |
| 2390 | "//external:protobuf_objc", |
| 2391 | ], |
| 2392 | ) |