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