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 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 39 | package(default_visibility = ["//visibility:public"]) |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 40 | |
| 41 | |
| 42 | |
| 43 | |
| 44 | cc_library( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 45 | name = "gpr", |
| 46 | srcs = [ |
| 47 | "src/core/support/env.h", |
| 48 | "src/core/support/file.h", |
| 49 | "src/core/support/murmur_hash.h", |
Vijay Pai | 005e305 | 2015-07-10 15:18:45 -0700 | [diff] [blame] | 50 | "src/core/support/stack_lockfree.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 51 | "src/core/support/string.h", |
| 52 | "src/core/support/string_win32.h", |
| 53 | "src/core/support/thd_internal.h", |
Hongyu Chen | a0f149e | 2015-08-24 16:27:19 -0700 | [diff] [blame] | 54 | "src/core/support/time_precise.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 55 | "src/core/support/alloc.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 56 | "src/core/support/cmdline.c", |
| 57 | "src/core/support/cpu_iphone.c", |
| 58 | "src/core/support/cpu_linux.c", |
| 59 | "src/core/support/cpu_posix.c", |
| 60 | "src/core/support/cpu_windows.c", |
| 61 | "src/core/support/env_linux.c", |
| 62 | "src/core/support/env_posix.c", |
| 63 | "src/core/support/env_win32.c", |
| 64 | "src/core/support/file.c", |
| 65 | "src/core/support/file_posix.c", |
| 66 | "src/core/support/file_win32.c", |
| 67 | "src/core/support/histogram.c", |
| 68 | "src/core/support/host_port.c", |
| 69 | "src/core/support/log.c", |
| 70 | "src/core/support/log_android.c", |
| 71 | "src/core/support/log_linux.c", |
| 72 | "src/core/support/log_posix.c", |
| 73 | "src/core/support/log_win32.c", |
| 74 | "src/core/support/murmur_hash.c", |
| 75 | "src/core/support/slice.c", |
| 76 | "src/core/support/slice_buffer.c", |
Vijay Pai | 005e305 | 2015-07-10 15:18:45 -0700 | [diff] [blame] | 77 | "src/core/support/stack_lockfree.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 78 | "src/core/support/string.c", |
| 79 | "src/core/support/string_posix.c", |
| 80 | "src/core/support/string_win32.c", |
Craig Tiller | c21a809 | 2015-05-15 10:03:40 -0700 | [diff] [blame] | 81 | "src/core/support/subprocess_posix.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 82 | "src/core/support/sync.c", |
| 83 | "src/core/support/sync_posix.c", |
| 84 | "src/core/support/sync_win32.c", |
| 85 | "src/core/support/thd.c", |
| 86 | "src/core/support/thd_posix.c", |
| 87 | "src/core/support/thd_win32.c", |
| 88 | "src/core/support/time.c", |
| 89 | "src/core/support/time_posix.c", |
| 90 | "src/core/support/time_win32.c", |
Craig Tiller | ee210ab | 2015-05-15 10:32:28 -0700 | [diff] [blame] | 91 | "src/core/support/tls_pthread.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 92 | ], |
| 93 | hdrs = [ |
| 94 | "include/grpc/support/alloc.h", |
| 95 | "include/grpc/support/atm.h", |
| 96 | "include/grpc/support/atm_gcc_atomic.h", |
| 97 | "include/grpc/support/atm_gcc_sync.h", |
| 98 | "include/grpc/support/atm_win32.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 99 | "include/grpc/support/cmdline.h", |
| 100 | "include/grpc/support/cpu.h", |
| 101 | "include/grpc/support/histogram.h", |
| 102 | "include/grpc/support/host_port.h", |
| 103 | "include/grpc/support/log.h", |
| 104 | "include/grpc/support/log_win32.h", |
| 105 | "include/grpc/support/port_platform.h", |
| 106 | "include/grpc/support/slice.h", |
| 107 | "include/grpc/support/slice_buffer.h", |
Masood Malekghassemi | 701af60 | 2015-06-03 15:01:17 -0700 | [diff] [blame] | 108 | "include/grpc/support/string_util.h", |
Craig Tiller | 685f1e6 | 2015-05-15 11:40:59 -0700 | [diff] [blame] | 109 | "include/grpc/support/subprocess.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 110 | "include/grpc/support/sync.h", |
| 111 | "include/grpc/support/sync_generic.h", |
| 112 | "include/grpc/support/sync_posix.h", |
| 113 | "include/grpc/support/sync_win32.h", |
| 114 | "include/grpc/support/thd.h", |
| 115 | "include/grpc/support/time.h", |
Yang Gao | b0b518e | 2015-04-13 14:53:25 -0700 | [diff] [blame] | 116 | "include/grpc/support/tls.h", |
| 117 | "include/grpc/support/tls_gcc.h", |
| 118 | "include/grpc/support/tls_msvc.h", |
| 119 | "include/grpc/support/tls_pthread.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 120 | "include/grpc/support/useful.h", |
| 121 | ], |
| 122 | includes = [ |
| 123 | "include", |
| 124 | ".", |
| 125 | ], |
| 126 | deps = [ |
| 127 | ], |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 128 | ) |
| 129 | |
| 130 | |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 131 | cc_library( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 132 | name = "grpc", |
| 133 | srcs = [ |
Julien Boeuf | c6f8d0a | 2015-05-11 22:40:02 -0700 | [diff] [blame] | 134 | "src/core/security/auth_filters.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 135 | "src/core/security/base64.h", |
| 136 | "src/core/security/credentials.h", |
| 137 | "src/core/security/json_token.h", |
Julien Boeuf | feca1bf | 2015-06-22 16:46:20 +0200 | [diff] [blame] | 138 | "src/core/security/jwt_verifier.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 139 | "src/core/security/secure_endpoint.h", |
| 140 | "src/core/security/secure_transport_setup.h", |
Julien Boeuf | 7d1d9ca | 2015-04-17 14:38:48 -0700 | [diff] [blame] | 141 | "src/core/security/security_connector.h", |
Julien Boeuf | d7f768b | 2015-05-08 16:37:16 -0700 | [diff] [blame] | 142 | "src/core/security/security_context.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 143 | "src/core/tsi/fake_transport_security.h", |
| 144 | "src/core/tsi/ssl_transport_security.h", |
| 145 | "src/core/tsi/transport_security.h", |
| 146 | "src/core/tsi/transport_security_interface.h", |
Hongyu Chen | e09dc78 | 2015-08-21 11:28:33 -0700 | [diff] [blame] | 147 | "src/core/census/grpc_filter.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 148 | "src/core/channel/channel_args.h", |
| 149 | "src/core/channel/channel_stack.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 150 | "src/core/channel/client_channel.h", |
David Garcia Quintas | 55b4ea1 | 2015-06-16 14:27:32 -0700 | [diff] [blame] | 151 | "src/core/channel/compress_filter.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 152 | "src/core/channel/connected_channel.h", |
murgatroid99 | 7da8b1a | 2015-06-17 12:37:34 -0700 | [diff] [blame] | 153 | "src/core/channel/context.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 154 | "src/core/channel/http_client_filter.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 155 | "src/core/channel/http_server_filter.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 156 | "src/core/channel/noop_filter.h", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 157 | "src/core/client_config/client_config.h", |
Craig Tiller | 9162466 | 2015-06-25 16:31:02 -0700 | [diff] [blame] | 158 | "src/core/client_config/connector.h", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 159 | "src/core/client_config/lb_policies/pick_first.h", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 160 | "src/core/client_config/lb_policy.h", |
David Garcia Quintas | 5c4543d | 2015-09-03 15:49:56 -0700 | [diff] [blame^] | 161 | "src/core/client_config/lb_policy_factory.h", |
| 162 | "src/core/client_config/lb_policy_registry.h", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 163 | "src/core/client_config/resolver.h", |
Craig Tiller | 7df28a7 | 2015-06-24 09:23:52 -0700 | [diff] [blame] | 164 | "src/core/client_config/resolver_factory.h", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 165 | "src/core/client_config/resolver_registry.h", |
| 166 | "src/core/client_config/resolvers/dns_resolver.h", |
Craig Tiller | 698d00c | 2015-07-20 12:32:58 -0700 | [diff] [blame] | 167 | "src/core/client_config/resolvers/sockaddr_resolver.h", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 168 | "src/core/client_config/subchannel.h", |
| 169 | "src/core/client_config/subchannel_factory.h", |
Craig Tiller | 83f4d4e | 2015-07-29 18:14:41 -0700 | [diff] [blame] | 170 | "src/core/client_config/subchannel_factory_decorators/add_channel_arg.h", |
| 171 | "src/core/client_config/subchannel_factory_decorators/merge_channel_args.h", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 172 | "src/core/client_config/uri_parser.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 173 | "src/core/compression/message_compress.h", |
| 174 | "src/core/debug/trace.h", |
Craig Tiller | f53d9c8 | 2015-08-04 14:19:43 -0700 | [diff] [blame] | 175 | "src/core/httpcli/format_request.h", |
| 176 | "src/core/httpcli/httpcli.h", |
| 177 | "src/core/httpcli/parser.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 178 | "src/core/iomgr/alarm.h", |
| 179 | "src/core/iomgr/alarm_heap.h", |
| 180 | "src/core/iomgr/alarm_internal.h", |
| 181 | "src/core/iomgr/endpoint.h", |
| 182 | "src/core/iomgr/endpoint_pair.h", |
| 183 | "src/core/iomgr/fd_posix.h", |
| 184 | "src/core/iomgr/iocp_windows.h", |
| 185 | "src/core/iomgr/iomgr.h", |
| 186 | "src/core/iomgr/iomgr_internal.h", |
| 187 | "src/core/iomgr/iomgr_posix.h", |
| 188 | "src/core/iomgr/pollset.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 189 | "src/core/iomgr/pollset_posix.h", |
Jorge Canizales | fe8ad73 | 2015-06-20 19:53:59 -0700 | [diff] [blame] | 190 | "src/core/iomgr/pollset_set.h", |
Craig Tiller | b7cf08f | 2015-05-07 07:58:30 -0700 | [diff] [blame] | 191 | "src/core/iomgr/pollset_set_posix.h", |
| 192 | "src/core/iomgr/pollset_set_windows.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 193 | "src/core/iomgr/pollset_windows.h", |
| 194 | "src/core/iomgr/resolve_address.h", |
| 195 | "src/core/iomgr/sockaddr.h", |
| 196 | "src/core/iomgr/sockaddr_posix.h", |
| 197 | "src/core/iomgr/sockaddr_utils.h", |
| 198 | "src/core/iomgr/sockaddr_win32.h", |
| 199 | "src/core/iomgr/socket_utils_posix.h", |
| 200 | "src/core/iomgr/socket_windows.h", |
| 201 | "src/core/iomgr/tcp_client.h", |
| 202 | "src/core/iomgr/tcp_posix.h", |
| 203 | "src/core/iomgr/tcp_server.h", |
| 204 | "src/core/iomgr/tcp_windows.h", |
| 205 | "src/core/iomgr/time_averaged_stats.h", |
Robbie Shade | 6953529 | 2015-07-10 14:27:34 -0400 | [diff] [blame] | 206 | "src/core/iomgr/udp_server.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 207 | "src/core/iomgr/wakeup_fd_pipe.h", |
| 208 | "src/core/iomgr/wakeup_fd_posix.h", |
| 209 | "src/core/json/json.h", |
| 210 | "src/core/json/json_common.h", |
| 211 | "src/core/json/json_reader.h", |
| 212 | "src/core/json/json_writer.h", |
Vijay Pai | 6dfa7e6 | 2015-04-13 10:41:40 -0700 | [diff] [blame] | 213 | "src/core/profiling/timers.h", |
Hongyu Chen | beb580b | 2015-08-25 16:19:33 -0700 | [diff] [blame] | 214 | "src/core/statistics/census_interface.h", |
| 215 | "src/core/statistics/census_rpc_stats.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 216 | "src/core/surface/byte_buffer_queue.h", |
| 217 | "src/core/surface/call.h", |
| 218 | "src/core/surface/channel.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 219 | "src/core/surface/completion_queue.h", |
| 220 | "src/core/surface/event_string.h", |
| 221 | "src/core/surface/init.h", |
| 222 | "src/core/surface/server.h", |
| 223 | "src/core/surface/surface_trace.h", |
| 224 | "src/core/transport/chttp2/alpn.h", |
| 225 | "src/core/transport/chttp2/bin_encoder.h", |
| 226 | "src/core/transport/chttp2/frame.h", |
| 227 | "src/core/transport/chttp2/frame_data.h", |
| 228 | "src/core/transport/chttp2/frame_goaway.h", |
| 229 | "src/core/transport/chttp2/frame_ping.h", |
| 230 | "src/core/transport/chttp2/frame_rst_stream.h", |
| 231 | "src/core/transport/chttp2/frame_settings.h", |
| 232 | "src/core/transport/chttp2/frame_window_update.h", |
| 233 | "src/core/transport/chttp2/hpack_parser.h", |
| 234 | "src/core/transport/chttp2/hpack_table.h", |
| 235 | "src/core/transport/chttp2/http2_errors.h", |
| 236 | "src/core/transport/chttp2/huffsyms.h", |
Craig Tiller | 5dc3b30 | 2015-06-15 16:06:50 -0700 | [diff] [blame] | 237 | "src/core/transport/chttp2/incoming_metadata.h", |
Craig Tiller | 4152706 | 2015-06-12 07:51:05 -0700 | [diff] [blame] | 238 | "src/core/transport/chttp2/internal.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 239 | "src/core/transport/chttp2/status_conversion.h", |
| 240 | "src/core/transport/chttp2/stream_encoder.h", |
| 241 | "src/core/transport/chttp2/stream_map.h", |
| 242 | "src/core/transport/chttp2/timeout_encoding.h", |
| 243 | "src/core/transport/chttp2/varint.h", |
| 244 | "src/core/transport/chttp2_transport.h", |
Craig Tiller | 08a1cf8 | 2015-06-29 09:37:52 -0700 | [diff] [blame] | 245 | "src/core/transport/connectivity_state.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 246 | "src/core/transport/metadata.h", |
| 247 | "src/core/transport/stream_op.h", |
| 248 | "src/core/transport/transport.h", |
| 249 | "src/core/transport/transport_impl.h", |
Alistair Veitch | 1c09acc | 2015-08-31 16:57:32 -0700 | [diff] [blame] | 250 | "src/core/census/aggregation.h", |
Alistair Veitch | 9686dab | 2015-05-26 14:26:47 -0700 | [diff] [blame] | 251 | "src/core/census/context.h", |
Alistair Veitch | 9a09982 | 2015-08-27 13:16:00 -0700 | [diff] [blame] | 252 | "src/core/census/rpc_metric_id.h", |
Julien Boeuf | 7d1d9ca | 2015-04-17 14:38:48 -0700 | [diff] [blame] | 253 | "src/core/httpcli/httpcli_security_connector.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 254 | "src/core/security/base64.c", |
Julien Boeuf | c6f8d0a | 2015-05-11 22:40:02 -0700 | [diff] [blame] | 255 | "src/core/security/client_auth_filter.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 256 | "src/core/security/credentials.c", |
Julien Boeuf | 75c9b6f | 2015-05-29 13:12:12 -0700 | [diff] [blame] | 257 | "src/core/security/credentials_metadata.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 258 | "src/core/security/credentials_posix.c", |
| 259 | "src/core/security/credentials_win32.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 260 | "src/core/security/google_default_credentials.c", |
| 261 | "src/core/security/json_token.c", |
Julien Boeuf | feca1bf | 2015-06-22 16:46:20 +0200 | [diff] [blame] | 262 | "src/core/security/jwt_verifier.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 263 | "src/core/security/secure_endpoint.c", |
| 264 | "src/core/security/secure_transport_setup.c", |
Julien Boeuf | 7d1d9ca | 2015-04-17 14:38:48 -0700 | [diff] [blame] | 265 | "src/core/security/security_connector.c", |
Julien Boeuf | d7f768b | 2015-05-08 16:37:16 -0700 | [diff] [blame] | 266 | "src/core/security/security_context.c", |
Julien Boeuf | c6f8d0a | 2015-05-11 22:40:02 -0700 | [diff] [blame] | 267 | "src/core/security/server_auth_filter.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 268 | "src/core/security/server_secure_chttp2.c", |
| 269 | "src/core/surface/init_secure.c", |
| 270 | "src/core/surface/secure_channel_create.c", |
| 271 | "src/core/tsi/fake_transport_security.c", |
| 272 | "src/core/tsi/ssl_transport_security.c", |
| 273 | "src/core/tsi/transport_security.c", |
Alistair Veitch | 9686dab | 2015-05-26 14:26:47 -0700 | [diff] [blame] | 274 | "src/core/census/grpc_context.c", |
Hongyu Chen | e09dc78 | 2015-08-21 11:28:33 -0700 | [diff] [blame] | 275 | "src/core/census/grpc_filter.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 276 | "src/core/channel/channel_args.c", |
| 277 | "src/core/channel/channel_stack.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 278 | "src/core/channel/client_channel.c", |
David Garcia Quintas | 55b4ea1 | 2015-06-16 14:27:32 -0700 | [diff] [blame] | 279 | "src/core/channel/compress_filter.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 280 | "src/core/channel/connected_channel.c", |
| 281 | "src/core/channel/http_client_filter.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 282 | "src/core/channel/http_server_filter.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 283 | "src/core/channel/noop_filter.c", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 284 | "src/core/client_config/client_config.c", |
Craig Tiller | 9162466 | 2015-06-25 16:31:02 -0700 | [diff] [blame] | 285 | "src/core/client_config/connector.c", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 286 | "src/core/client_config/lb_policies/pick_first.c", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 287 | "src/core/client_config/lb_policy.c", |
David Garcia Quintas | 5c4543d | 2015-09-03 15:49:56 -0700 | [diff] [blame^] | 288 | "src/core/client_config/lb_policy_factory.c", |
| 289 | "src/core/client_config/lb_policy_registry.c", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 290 | "src/core/client_config/resolver.c", |
Craig Tiller | 7df28a7 | 2015-06-24 09:23:52 -0700 | [diff] [blame] | 291 | "src/core/client_config/resolver_factory.c", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 292 | "src/core/client_config/resolver_registry.c", |
| 293 | "src/core/client_config/resolvers/dns_resolver.c", |
Craig Tiller | 698d00c | 2015-07-20 12:32:58 -0700 | [diff] [blame] | 294 | "src/core/client_config/resolvers/sockaddr_resolver.c", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 295 | "src/core/client_config/subchannel.c", |
| 296 | "src/core/client_config/subchannel_factory.c", |
Craig Tiller | 83f4d4e | 2015-07-29 18:14:41 -0700 | [diff] [blame] | 297 | "src/core/client_config/subchannel_factory_decorators/add_channel_arg.c", |
| 298 | "src/core/client_config/subchannel_factory_decorators/merge_channel_args.c", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 299 | "src/core/client_config/uri_parser.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 300 | "src/core/compression/algorithm.c", |
| 301 | "src/core/compression/message_compress.c", |
| 302 | "src/core/debug/trace.c", |
Craig Tiller | f53d9c8 | 2015-08-04 14:19:43 -0700 | [diff] [blame] | 303 | "src/core/httpcli/format_request.c", |
| 304 | "src/core/httpcli/httpcli.c", |
| 305 | "src/core/httpcli/parser.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 306 | "src/core/iomgr/alarm.c", |
| 307 | "src/core/iomgr/alarm_heap.c", |
| 308 | "src/core/iomgr/endpoint.c", |
| 309 | "src/core/iomgr/endpoint_pair_posix.c", |
Craig Tiller | d180e03 | 2015-04-13 10:10:07 -0700 | [diff] [blame] | 310 | "src/core/iomgr/endpoint_pair_windows.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 311 | "src/core/iomgr/fd_posix.c", |
| 312 | "src/core/iomgr/iocp_windows.c", |
| 313 | "src/core/iomgr/iomgr.c", |
| 314 | "src/core/iomgr/iomgr_posix.c", |
| 315 | "src/core/iomgr/iomgr_windows.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 316 | "src/core/iomgr/pollset_multipoller_with_epoll.c", |
| 317 | "src/core/iomgr/pollset_multipoller_with_poll_posix.c", |
| 318 | "src/core/iomgr/pollset_posix.c", |
Craig Tiller | b7cf08f | 2015-05-07 07:58:30 -0700 | [diff] [blame] | 319 | "src/core/iomgr/pollset_set_posix.c", |
| 320 | "src/core/iomgr/pollset_set_windows.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 321 | "src/core/iomgr/pollset_windows.c", |
| 322 | "src/core/iomgr/resolve_address_posix.c", |
| 323 | "src/core/iomgr/resolve_address_windows.c", |
| 324 | "src/core/iomgr/sockaddr_utils.c", |
| 325 | "src/core/iomgr/socket_utils_common_posix.c", |
| 326 | "src/core/iomgr/socket_utils_linux.c", |
| 327 | "src/core/iomgr/socket_utils_posix.c", |
| 328 | "src/core/iomgr/socket_windows.c", |
| 329 | "src/core/iomgr/tcp_client_posix.c", |
| 330 | "src/core/iomgr/tcp_client_windows.c", |
| 331 | "src/core/iomgr/tcp_posix.c", |
| 332 | "src/core/iomgr/tcp_server_posix.c", |
| 333 | "src/core/iomgr/tcp_server_windows.c", |
| 334 | "src/core/iomgr/tcp_windows.c", |
| 335 | "src/core/iomgr/time_averaged_stats.c", |
Robbie Shade | 6953529 | 2015-07-10 14:27:34 -0400 | [diff] [blame] | 336 | "src/core/iomgr/udp_server.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 337 | "src/core/iomgr/wakeup_fd_eventfd.c", |
| 338 | "src/core/iomgr/wakeup_fd_nospecial.c", |
| 339 | "src/core/iomgr/wakeup_fd_pipe.c", |
| 340 | "src/core/iomgr/wakeup_fd_posix.c", |
| 341 | "src/core/json/json.c", |
| 342 | "src/core/json/json_reader.c", |
| 343 | "src/core/json/json_string.c", |
| 344 | "src/core/json/json_writer.c", |
David Garcia Quintas | 8954e90 | 2015-04-29 09:46:33 -0700 | [diff] [blame] | 345 | "src/core/profiling/basic_timers.c", |
| 346 | "src/core/profiling/stap_timers.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 347 | "src/core/surface/byte_buffer.c", |
| 348 | "src/core/surface/byte_buffer_queue.c", |
| 349 | "src/core/surface/byte_buffer_reader.c", |
| 350 | "src/core/surface/call.c", |
| 351 | "src/core/surface/call_details.c", |
| 352 | "src/core/surface/call_log_batch.c", |
| 353 | "src/core/surface/channel.c", |
Craig Tiller | 48cb07c | 2015-07-15 16:16:15 -0700 | [diff] [blame] | 354 | "src/core/surface/channel_connectivity.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 355 | "src/core/surface/channel_create.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 356 | "src/core/surface/completion_queue.c", |
| 357 | "src/core/surface/event_string.c", |
| 358 | "src/core/surface/init.c", |
| 359 | "src/core/surface/lame_client.c", |
| 360 | "src/core/surface/metadata_array.c", |
| 361 | "src/core/surface/server.c", |
| 362 | "src/core/surface/server_chttp2.c", |
| 363 | "src/core/surface/server_create.c", |
| 364 | "src/core/surface/surface_trace.c", |
Craig Tiller | 2e622bc | 2015-07-10 07:46:03 -0700 | [diff] [blame] | 365 | "src/core/surface/version.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 366 | "src/core/transport/chttp2/alpn.c", |
| 367 | "src/core/transport/chttp2/bin_encoder.c", |
| 368 | "src/core/transport/chttp2/frame_data.c", |
| 369 | "src/core/transport/chttp2/frame_goaway.c", |
| 370 | "src/core/transport/chttp2/frame_ping.c", |
| 371 | "src/core/transport/chttp2/frame_rst_stream.c", |
| 372 | "src/core/transport/chttp2/frame_settings.c", |
| 373 | "src/core/transport/chttp2/frame_window_update.c", |
| 374 | "src/core/transport/chttp2/hpack_parser.c", |
| 375 | "src/core/transport/chttp2/hpack_table.c", |
| 376 | "src/core/transport/chttp2/huffsyms.c", |
Craig Tiller | 5dc3b30 | 2015-06-15 16:06:50 -0700 | [diff] [blame] | 377 | "src/core/transport/chttp2/incoming_metadata.c", |
Craig Tiller | d8df50c | 2015-06-12 07:53:56 -0700 | [diff] [blame] | 378 | "src/core/transport/chttp2/parsing.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 379 | "src/core/transport/chttp2/status_conversion.c", |
| 380 | "src/core/transport/chttp2/stream_encoder.c", |
Craig Tiller | 6459db4 | 2015-06-15 17:11:45 -0700 | [diff] [blame] | 381 | "src/core/transport/chttp2/stream_lists.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 382 | "src/core/transport/chttp2/stream_map.c", |
| 383 | "src/core/transport/chttp2/timeout_encoding.c", |
| 384 | "src/core/transport/chttp2/varint.c", |
Craig Tiller | d8df50c | 2015-06-12 07:53:56 -0700 | [diff] [blame] | 385 | "src/core/transport/chttp2/writing.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 386 | "src/core/transport/chttp2_transport.c", |
Craig Tiller | 08a1cf8 | 2015-06-29 09:37:52 -0700 | [diff] [blame] | 387 | "src/core/transport/connectivity_state.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 388 | "src/core/transport/metadata.c", |
| 389 | "src/core/transport/stream_op.c", |
| 390 | "src/core/transport/transport.c", |
Craig Tiller | 83f88d9 | 2015-04-21 16:02:05 -0700 | [diff] [blame] | 391 | "src/core/transport/transport_op_string.c", |
Alistair Veitch | 9686dab | 2015-05-26 14:26:47 -0700 | [diff] [blame] | 392 | "src/core/census/context.c", |
| 393 | "src/core/census/initialize.c", |
Alistair Veitch | e6d0ad3 | 2015-08-13 09:59:48 -0700 | [diff] [blame] | 394 | "src/core/census/operation.c", |
Alistair Veitch | 0383d49 | 2015-07-26 15:29:00 -0700 | [diff] [blame] | 395 | "src/core/census/tracing.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 396 | ], |
| 397 | hdrs = [ |
| 398 | "include/grpc/grpc_security.h", |
| 399 | "include/grpc/byte_buffer.h", |
| 400 | "include/grpc/byte_buffer_reader.h", |
David Garcia Quintas | 59f905d | 2015-06-08 16:31:19 -0700 | [diff] [blame] | 401 | "include/grpc/compression.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 402 | "include/grpc/grpc.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 403 | "include/grpc/status.h", |
Alistair Veitch | 9686dab | 2015-05-26 14:26:47 -0700 | [diff] [blame] | 404 | "include/grpc/census.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 405 | ], |
| 406 | includes = [ |
| 407 | "include", |
| 408 | ".", |
| 409 | ], |
| 410 | deps = [ |
| 411 | "//external:libssl", |
Ming Zhao | f2f24e2 | 2015-08-13 12:38:35 -0700 | [diff] [blame] | 412 | "//external:zlib", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 413 | ":gpr", |
| 414 | ], |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 415 | ) |
| 416 | |
| 417 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 418 | cc_library( |
| 419 | name = "grpc_unsecure", |
| 420 | srcs = [ |
Hongyu Chen | e09dc78 | 2015-08-21 11:28:33 -0700 | [diff] [blame] | 421 | "src/core/census/grpc_filter.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 422 | "src/core/channel/channel_args.h", |
| 423 | "src/core/channel/channel_stack.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 424 | "src/core/channel/client_channel.h", |
David Garcia Quintas | 55b4ea1 | 2015-06-16 14:27:32 -0700 | [diff] [blame] | 425 | "src/core/channel/compress_filter.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 426 | "src/core/channel/connected_channel.h", |
murgatroid99 | 7da8b1a | 2015-06-17 12:37:34 -0700 | [diff] [blame] | 427 | "src/core/channel/context.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 428 | "src/core/channel/http_client_filter.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 429 | "src/core/channel/http_server_filter.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 430 | "src/core/channel/noop_filter.h", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 431 | "src/core/client_config/client_config.h", |
Craig Tiller | 9162466 | 2015-06-25 16:31:02 -0700 | [diff] [blame] | 432 | "src/core/client_config/connector.h", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 433 | "src/core/client_config/lb_policies/pick_first.h", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 434 | "src/core/client_config/lb_policy.h", |
David Garcia Quintas | 5c4543d | 2015-09-03 15:49:56 -0700 | [diff] [blame^] | 435 | "src/core/client_config/lb_policy_factory.h", |
| 436 | "src/core/client_config/lb_policy_registry.h", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 437 | "src/core/client_config/resolver.h", |
Craig Tiller | 7df28a7 | 2015-06-24 09:23:52 -0700 | [diff] [blame] | 438 | "src/core/client_config/resolver_factory.h", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 439 | "src/core/client_config/resolver_registry.h", |
| 440 | "src/core/client_config/resolvers/dns_resolver.h", |
Craig Tiller | 698d00c | 2015-07-20 12:32:58 -0700 | [diff] [blame] | 441 | "src/core/client_config/resolvers/sockaddr_resolver.h", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 442 | "src/core/client_config/subchannel.h", |
| 443 | "src/core/client_config/subchannel_factory.h", |
Craig Tiller | 83f4d4e | 2015-07-29 18:14:41 -0700 | [diff] [blame] | 444 | "src/core/client_config/subchannel_factory_decorators/add_channel_arg.h", |
| 445 | "src/core/client_config/subchannel_factory_decorators/merge_channel_args.h", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 446 | "src/core/client_config/uri_parser.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 447 | "src/core/compression/message_compress.h", |
| 448 | "src/core/debug/trace.h", |
Craig Tiller | f53d9c8 | 2015-08-04 14:19:43 -0700 | [diff] [blame] | 449 | "src/core/httpcli/format_request.h", |
| 450 | "src/core/httpcli/httpcli.h", |
| 451 | "src/core/httpcli/parser.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 452 | "src/core/iomgr/alarm.h", |
| 453 | "src/core/iomgr/alarm_heap.h", |
| 454 | "src/core/iomgr/alarm_internal.h", |
| 455 | "src/core/iomgr/endpoint.h", |
| 456 | "src/core/iomgr/endpoint_pair.h", |
| 457 | "src/core/iomgr/fd_posix.h", |
| 458 | "src/core/iomgr/iocp_windows.h", |
| 459 | "src/core/iomgr/iomgr.h", |
| 460 | "src/core/iomgr/iomgr_internal.h", |
| 461 | "src/core/iomgr/iomgr_posix.h", |
| 462 | "src/core/iomgr/pollset.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 463 | "src/core/iomgr/pollset_posix.h", |
Jorge Canizales | fe8ad73 | 2015-06-20 19:53:59 -0700 | [diff] [blame] | 464 | "src/core/iomgr/pollset_set.h", |
Craig Tiller | b7cf08f | 2015-05-07 07:58:30 -0700 | [diff] [blame] | 465 | "src/core/iomgr/pollset_set_posix.h", |
| 466 | "src/core/iomgr/pollset_set_windows.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 467 | "src/core/iomgr/pollset_windows.h", |
| 468 | "src/core/iomgr/resolve_address.h", |
| 469 | "src/core/iomgr/sockaddr.h", |
| 470 | "src/core/iomgr/sockaddr_posix.h", |
| 471 | "src/core/iomgr/sockaddr_utils.h", |
| 472 | "src/core/iomgr/sockaddr_win32.h", |
| 473 | "src/core/iomgr/socket_utils_posix.h", |
| 474 | "src/core/iomgr/socket_windows.h", |
| 475 | "src/core/iomgr/tcp_client.h", |
| 476 | "src/core/iomgr/tcp_posix.h", |
| 477 | "src/core/iomgr/tcp_server.h", |
| 478 | "src/core/iomgr/tcp_windows.h", |
| 479 | "src/core/iomgr/time_averaged_stats.h", |
Robbie Shade | 6953529 | 2015-07-10 14:27:34 -0400 | [diff] [blame] | 480 | "src/core/iomgr/udp_server.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 481 | "src/core/iomgr/wakeup_fd_pipe.h", |
| 482 | "src/core/iomgr/wakeup_fd_posix.h", |
| 483 | "src/core/json/json.h", |
| 484 | "src/core/json/json_common.h", |
| 485 | "src/core/json/json_reader.h", |
| 486 | "src/core/json/json_writer.h", |
Vijay Pai | 6dfa7e6 | 2015-04-13 10:41:40 -0700 | [diff] [blame] | 487 | "src/core/profiling/timers.h", |
Hongyu Chen | beb580b | 2015-08-25 16:19:33 -0700 | [diff] [blame] | 488 | "src/core/statistics/census_interface.h", |
| 489 | "src/core/statistics/census_rpc_stats.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 490 | "src/core/surface/byte_buffer_queue.h", |
| 491 | "src/core/surface/call.h", |
| 492 | "src/core/surface/channel.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 493 | "src/core/surface/completion_queue.h", |
| 494 | "src/core/surface/event_string.h", |
| 495 | "src/core/surface/init.h", |
| 496 | "src/core/surface/server.h", |
| 497 | "src/core/surface/surface_trace.h", |
| 498 | "src/core/transport/chttp2/alpn.h", |
| 499 | "src/core/transport/chttp2/bin_encoder.h", |
| 500 | "src/core/transport/chttp2/frame.h", |
| 501 | "src/core/transport/chttp2/frame_data.h", |
| 502 | "src/core/transport/chttp2/frame_goaway.h", |
| 503 | "src/core/transport/chttp2/frame_ping.h", |
| 504 | "src/core/transport/chttp2/frame_rst_stream.h", |
| 505 | "src/core/transport/chttp2/frame_settings.h", |
| 506 | "src/core/transport/chttp2/frame_window_update.h", |
| 507 | "src/core/transport/chttp2/hpack_parser.h", |
| 508 | "src/core/transport/chttp2/hpack_table.h", |
| 509 | "src/core/transport/chttp2/http2_errors.h", |
| 510 | "src/core/transport/chttp2/huffsyms.h", |
Craig Tiller | 5dc3b30 | 2015-06-15 16:06:50 -0700 | [diff] [blame] | 511 | "src/core/transport/chttp2/incoming_metadata.h", |
Craig Tiller | 4152706 | 2015-06-12 07:51:05 -0700 | [diff] [blame] | 512 | "src/core/transport/chttp2/internal.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 513 | "src/core/transport/chttp2/status_conversion.h", |
| 514 | "src/core/transport/chttp2/stream_encoder.h", |
| 515 | "src/core/transport/chttp2/stream_map.h", |
| 516 | "src/core/transport/chttp2/timeout_encoding.h", |
| 517 | "src/core/transport/chttp2/varint.h", |
| 518 | "src/core/transport/chttp2_transport.h", |
Craig Tiller | 08a1cf8 | 2015-06-29 09:37:52 -0700 | [diff] [blame] | 519 | "src/core/transport/connectivity_state.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 520 | "src/core/transport/metadata.h", |
| 521 | "src/core/transport/stream_op.h", |
| 522 | "src/core/transport/transport.h", |
| 523 | "src/core/transport/transport_impl.h", |
Alistair Veitch | 1c09acc | 2015-08-31 16:57:32 -0700 | [diff] [blame] | 524 | "src/core/census/aggregation.h", |
Alistair Veitch | 9686dab | 2015-05-26 14:26:47 -0700 | [diff] [blame] | 525 | "src/core/census/context.h", |
Alistair Veitch | 9a09982 | 2015-08-27 13:16:00 -0700 | [diff] [blame] | 526 | "src/core/census/rpc_metric_id.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 527 | "src/core/surface/init_unsecure.c", |
Alistair Veitch | 9686dab | 2015-05-26 14:26:47 -0700 | [diff] [blame] | 528 | "src/core/census/grpc_context.c", |
Hongyu Chen | e09dc78 | 2015-08-21 11:28:33 -0700 | [diff] [blame] | 529 | "src/core/census/grpc_filter.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 530 | "src/core/channel/channel_args.c", |
| 531 | "src/core/channel/channel_stack.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 532 | "src/core/channel/client_channel.c", |
David Garcia Quintas | 55b4ea1 | 2015-06-16 14:27:32 -0700 | [diff] [blame] | 533 | "src/core/channel/compress_filter.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 534 | "src/core/channel/connected_channel.c", |
| 535 | "src/core/channel/http_client_filter.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 536 | "src/core/channel/http_server_filter.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 537 | "src/core/channel/noop_filter.c", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 538 | "src/core/client_config/client_config.c", |
Craig Tiller | 9162466 | 2015-06-25 16:31:02 -0700 | [diff] [blame] | 539 | "src/core/client_config/connector.c", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 540 | "src/core/client_config/lb_policies/pick_first.c", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 541 | "src/core/client_config/lb_policy.c", |
David Garcia Quintas | 5c4543d | 2015-09-03 15:49:56 -0700 | [diff] [blame^] | 542 | "src/core/client_config/lb_policy_factory.c", |
| 543 | "src/core/client_config/lb_policy_registry.c", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 544 | "src/core/client_config/resolver.c", |
Craig Tiller | 7df28a7 | 2015-06-24 09:23:52 -0700 | [diff] [blame] | 545 | "src/core/client_config/resolver_factory.c", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 546 | "src/core/client_config/resolver_registry.c", |
| 547 | "src/core/client_config/resolvers/dns_resolver.c", |
Craig Tiller | 698d00c | 2015-07-20 12:32:58 -0700 | [diff] [blame] | 548 | "src/core/client_config/resolvers/sockaddr_resolver.c", |
Craig Tiller | af69180 | 2015-06-23 14:57:07 -0700 | [diff] [blame] | 549 | "src/core/client_config/subchannel.c", |
| 550 | "src/core/client_config/subchannel_factory.c", |
Craig Tiller | 83f4d4e | 2015-07-29 18:14:41 -0700 | [diff] [blame] | 551 | "src/core/client_config/subchannel_factory_decorators/add_channel_arg.c", |
| 552 | "src/core/client_config/subchannel_factory_decorators/merge_channel_args.c", |
Craig Tiller | 3bc8ebd | 2015-06-24 15:41:15 -0700 | [diff] [blame] | 553 | "src/core/client_config/uri_parser.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 554 | "src/core/compression/algorithm.c", |
| 555 | "src/core/compression/message_compress.c", |
| 556 | "src/core/debug/trace.c", |
Craig Tiller | f53d9c8 | 2015-08-04 14:19:43 -0700 | [diff] [blame] | 557 | "src/core/httpcli/format_request.c", |
| 558 | "src/core/httpcli/httpcli.c", |
| 559 | "src/core/httpcli/parser.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 560 | "src/core/iomgr/alarm.c", |
| 561 | "src/core/iomgr/alarm_heap.c", |
| 562 | "src/core/iomgr/endpoint.c", |
| 563 | "src/core/iomgr/endpoint_pair_posix.c", |
Craig Tiller | d180e03 | 2015-04-13 10:10:07 -0700 | [diff] [blame] | 564 | "src/core/iomgr/endpoint_pair_windows.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 565 | "src/core/iomgr/fd_posix.c", |
| 566 | "src/core/iomgr/iocp_windows.c", |
| 567 | "src/core/iomgr/iomgr.c", |
| 568 | "src/core/iomgr/iomgr_posix.c", |
| 569 | "src/core/iomgr/iomgr_windows.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 570 | "src/core/iomgr/pollset_multipoller_with_epoll.c", |
| 571 | "src/core/iomgr/pollset_multipoller_with_poll_posix.c", |
| 572 | "src/core/iomgr/pollset_posix.c", |
Craig Tiller | b7cf08f | 2015-05-07 07:58:30 -0700 | [diff] [blame] | 573 | "src/core/iomgr/pollset_set_posix.c", |
| 574 | "src/core/iomgr/pollset_set_windows.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 575 | "src/core/iomgr/pollset_windows.c", |
| 576 | "src/core/iomgr/resolve_address_posix.c", |
| 577 | "src/core/iomgr/resolve_address_windows.c", |
| 578 | "src/core/iomgr/sockaddr_utils.c", |
| 579 | "src/core/iomgr/socket_utils_common_posix.c", |
| 580 | "src/core/iomgr/socket_utils_linux.c", |
| 581 | "src/core/iomgr/socket_utils_posix.c", |
| 582 | "src/core/iomgr/socket_windows.c", |
| 583 | "src/core/iomgr/tcp_client_posix.c", |
| 584 | "src/core/iomgr/tcp_client_windows.c", |
| 585 | "src/core/iomgr/tcp_posix.c", |
| 586 | "src/core/iomgr/tcp_server_posix.c", |
| 587 | "src/core/iomgr/tcp_server_windows.c", |
| 588 | "src/core/iomgr/tcp_windows.c", |
| 589 | "src/core/iomgr/time_averaged_stats.c", |
Robbie Shade | 6953529 | 2015-07-10 14:27:34 -0400 | [diff] [blame] | 590 | "src/core/iomgr/udp_server.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 591 | "src/core/iomgr/wakeup_fd_eventfd.c", |
| 592 | "src/core/iomgr/wakeup_fd_nospecial.c", |
| 593 | "src/core/iomgr/wakeup_fd_pipe.c", |
| 594 | "src/core/iomgr/wakeup_fd_posix.c", |
| 595 | "src/core/json/json.c", |
| 596 | "src/core/json/json_reader.c", |
| 597 | "src/core/json/json_string.c", |
| 598 | "src/core/json/json_writer.c", |
David Garcia Quintas | 8954e90 | 2015-04-29 09:46:33 -0700 | [diff] [blame] | 599 | "src/core/profiling/basic_timers.c", |
| 600 | "src/core/profiling/stap_timers.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 601 | "src/core/surface/byte_buffer.c", |
| 602 | "src/core/surface/byte_buffer_queue.c", |
| 603 | "src/core/surface/byte_buffer_reader.c", |
| 604 | "src/core/surface/call.c", |
| 605 | "src/core/surface/call_details.c", |
| 606 | "src/core/surface/call_log_batch.c", |
| 607 | "src/core/surface/channel.c", |
Craig Tiller | 48cb07c | 2015-07-15 16:16:15 -0700 | [diff] [blame] | 608 | "src/core/surface/channel_connectivity.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 609 | "src/core/surface/channel_create.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 610 | "src/core/surface/completion_queue.c", |
| 611 | "src/core/surface/event_string.c", |
| 612 | "src/core/surface/init.c", |
| 613 | "src/core/surface/lame_client.c", |
| 614 | "src/core/surface/metadata_array.c", |
| 615 | "src/core/surface/server.c", |
| 616 | "src/core/surface/server_chttp2.c", |
| 617 | "src/core/surface/server_create.c", |
| 618 | "src/core/surface/surface_trace.c", |
Craig Tiller | 2e622bc | 2015-07-10 07:46:03 -0700 | [diff] [blame] | 619 | "src/core/surface/version.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 620 | "src/core/transport/chttp2/alpn.c", |
| 621 | "src/core/transport/chttp2/bin_encoder.c", |
| 622 | "src/core/transport/chttp2/frame_data.c", |
| 623 | "src/core/transport/chttp2/frame_goaway.c", |
| 624 | "src/core/transport/chttp2/frame_ping.c", |
| 625 | "src/core/transport/chttp2/frame_rst_stream.c", |
| 626 | "src/core/transport/chttp2/frame_settings.c", |
| 627 | "src/core/transport/chttp2/frame_window_update.c", |
| 628 | "src/core/transport/chttp2/hpack_parser.c", |
| 629 | "src/core/transport/chttp2/hpack_table.c", |
| 630 | "src/core/transport/chttp2/huffsyms.c", |
Craig Tiller | 5dc3b30 | 2015-06-15 16:06:50 -0700 | [diff] [blame] | 631 | "src/core/transport/chttp2/incoming_metadata.c", |
Craig Tiller | d8df50c | 2015-06-12 07:53:56 -0700 | [diff] [blame] | 632 | "src/core/transport/chttp2/parsing.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 633 | "src/core/transport/chttp2/status_conversion.c", |
| 634 | "src/core/transport/chttp2/stream_encoder.c", |
Craig Tiller | 6459db4 | 2015-06-15 17:11:45 -0700 | [diff] [blame] | 635 | "src/core/transport/chttp2/stream_lists.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 636 | "src/core/transport/chttp2/stream_map.c", |
| 637 | "src/core/transport/chttp2/timeout_encoding.c", |
| 638 | "src/core/transport/chttp2/varint.c", |
Craig Tiller | d8df50c | 2015-06-12 07:53:56 -0700 | [diff] [blame] | 639 | "src/core/transport/chttp2/writing.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 640 | "src/core/transport/chttp2_transport.c", |
Craig Tiller | 08a1cf8 | 2015-06-29 09:37:52 -0700 | [diff] [blame] | 641 | "src/core/transport/connectivity_state.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 642 | "src/core/transport/metadata.c", |
| 643 | "src/core/transport/stream_op.c", |
| 644 | "src/core/transport/transport.c", |
Craig Tiller | 83f88d9 | 2015-04-21 16:02:05 -0700 | [diff] [blame] | 645 | "src/core/transport/transport_op_string.c", |
Alistair Veitch | 9686dab | 2015-05-26 14:26:47 -0700 | [diff] [blame] | 646 | "src/core/census/context.c", |
| 647 | "src/core/census/initialize.c", |
Alistair Veitch | e6d0ad3 | 2015-08-13 09:59:48 -0700 | [diff] [blame] | 648 | "src/core/census/operation.c", |
Alistair Veitch | 0383d49 | 2015-07-26 15:29:00 -0700 | [diff] [blame] | 649 | "src/core/census/tracing.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 650 | ], |
| 651 | hdrs = [ |
| 652 | "include/grpc/byte_buffer.h", |
| 653 | "include/grpc/byte_buffer_reader.h", |
David Garcia Quintas | 59f905d | 2015-06-08 16:31:19 -0700 | [diff] [blame] | 654 | "include/grpc/compression.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 655 | "include/grpc/grpc.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 656 | "include/grpc/status.h", |
Alistair Veitch | 9686dab | 2015-05-26 14:26:47 -0700 | [diff] [blame] | 657 | "include/grpc/census.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 658 | ], |
| 659 | includes = [ |
| 660 | "include", |
| 661 | ".", |
| 662 | ], |
| 663 | deps = [ |
| 664 | ":gpr", |
| 665 | ], |
| 666 | ) |
| 667 | |
| 668 | |
| 669 | cc_library( |
Hongwei Wang | da8858f | 2015-07-16 16:18:19 -0700 | [diff] [blame] | 670 | name = "grpc_zookeeper", |
| 671 | srcs = [ |
| 672 | "src/core/client_config/resolvers/zookeeper_resolver.h", |
| 673 | "src/core/client_config/resolvers/zookeeper_resolver.c", |
| 674 | ], |
| 675 | hdrs = [ |
Hongwei Wang | a3780a8 | 2015-07-17 15:27:18 -0700 | [diff] [blame] | 676 | "include/grpc/grpc_zookeeper.h", |
Hongwei Wang | da8858f | 2015-07-16 16:18:19 -0700 | [diff] [blame] | 677 | ], |
| 678 | includes = [ |
| 679 | "include", |
| 680 | ".", |
| 681 | ], |
| 682 | deps = [ |
| 683 | ":gpr", |
| 684 | ":grpc", |
| 685 | ], |
| 686 | ) |
| 687 | |
| 688 | |
| 689 | cc_library( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 690 | name = "grpc++", |
| 691 | srcs = [ |
| 692 | "src/cpp/client/secure_credentials.h", |
yang-g | 3abe60b | 2015-07-06 14:00:36 -0700 | [diff] [blame] | 693 | "src/cpp/common/secure_auth_context.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 694 | "src/cpp/server/secure_server_credentials.h", |
yang-g | c317f07 | 2015-08-20 12:18:08 -0700 | [diff] [blame] | 695 | "src/cpp/client/create_channel_internal.h", |
yang-g | 3abe60b | 2015-07-06 14:00:36 -0700 | [diff] [blame] | 696 | "src/cpp/common/create_auth_context.h", |
Vijay Pai | e8a7e30 | 2015-08-24 10:52:33 -0700 | [diff] [blame] | 697 | "src/cpp/server/dynamic_thread_pool.h", |
| 698 | "src/cpp/server/fixed_size_thread_pool.h", |
| 699 | "src/cpp/server/thread_pool_interface.h", |
Craig Tiller | f75fc12 | 2015-06-25 06:58:00 -0700 | [diff] [blame] | 700 | "src/cpp/client/secure_channel_arguments.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 701 | "src/cpp/client/secure_credentials.cc", |
yang-g | 7ef7232 | 2015-07-16 21:00:51 -0700 | [diff] [blame] | 702 | "src/cpp/common/auth_property_iterator.cc", |
yang-g | 3abe60b | 2015-07-06 14:00:36 -0700 | [diff] [blame] | 703 | "src/cpp/common/secure_auth_context.cc", |
| 704 | "src/cpp/common/secure_create_auth_context.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 705 | "src/cpp/server/secure_server_credentials.cc", |
| 706 | "src/cpp/client/channel.cc", |
| 707 | "src/cpp/client/channel_arguments.cc", |
| 708 | "src/cpp/client/client_context.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 709 | "src/cpp/client/create_channel.cc", |
yang-g | c317f07 | 2015-08-20 12:18:08 -0700 | [diff] [blame] | 710 | "src/cpp/client/create_channel_internal.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 711 | "src/cpp/client/credentials.cc", |
| 712 | "src/cpp/client/generic_stub.cc", |
| 713 | "src/cpp/client/insecure_credentials.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 714 | "src/cpp/common/call.cc", |
| 715 | "src/cpp/common/completion_queue.cc", |
| 716 | "src/cpp/common/rpc_method.cc", |
| 717 | "src/cpp/proto/proto_utils.cc", |
| 718 | "src/cpp/server/async_generic_service.cc", |
Yang Gao | 6f4fb3b | 2015-06-03 12:56:19 -0700 | [diff] [blame] | 719 | "src/cpp/server/create_default_thread_pool.cc", |
vjpai | b28456b | 2015-07-23 14:17:10 -0700 | [diff] [blame] | 720 | "src/cpp/server/dynamic_thread_pool.cc", |
vjpai | a2e1bb1 | 2015-07-15 16:49:49 -0700 | [diff] [blame] | 721 | "src/cpp/server/fixed_size_thread_pool.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 722 | "src/cpp/server/insecure_server_credentials.cc", |
| 723 | "src/cpp/server/server.cc", |
| 724 | "src/cpp/server/server_builder.cc", |
| 725 | "src/cpp/server/server_context.cc", |
| 726 | "src/cpp/server/server_credentials.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 727 | "src/cpp/util/byte_buffer.cc", |
| 728 | "src/cpp/util/slice.cc", |
| 729 | "src/cpp/util/status.cc", |
Julien Boeuf | 8fd915a | 2015-08-19 21:18:14 -0700 | [diff] [blame] | 730 | "src/cpp/util/string_ref.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 731 | "src/cpp/util/time.cc", |
| 732 | ], |
| 733 | hdrs = [ |
yang-g | 8c2be9f | 2015-08-19 16:28:09 -0700 | [diff] [blame] | 734 | "include/grpc++/channel.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 735 | "include/grpc++/client_context.h", |
| 736 | "include/grpc++/completion_queue.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 737 | "include/grpc++/create_channel.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 738 | "include/grpc++/generic/async_generic_service.h", |
| 739 | "include/grpc++/generic/generic_stub.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 740 | "include/grpc++/impl/call.h", |
| 741 | "include/grpc++/impl/client_unary_call.h", |
Yang Gao | 96de484 | 2015-04-24 13:13:12 -0700 | [diff] [blame] | 742 | "include/grpc++/impl/grpc_library.h", |
yang-g | adfed03 | 2015-06-23 13:01:22 -0700 | [diff] [blame] | 743 | "include/grpc++/impl/proto_utils.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 744 | "include/grpc++/impl/rpc_method.h", |
| 745 | "include/grpc++/impl/rpc_service_method.h", |
Craig Tiller | 6ef7f31 | 2015-06-05 10:15:10 -0700 | [diff] [blame] | 746 | "include/grpc++/impl/serialization_traits.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 747 | "include/grpc++/impl/service_type.h", |
Nicolas "Pixel" Noble | b7c2035 | 2015-04-11 01:27:32 +0200 | [diff] [blame] | 748 | "include/grpc++/impl/sync.h", |
| 749 | "include/grpc++/impl/sync_cxx11.h", |
| 750 | "include/grpc++/impl/sync_no_cxx11.h", |
| 751 | "include/grpc++/impl/thd.h", |
| 752 | "include/grpc++/impl/thd_cxx11.h", |
| 753 | "include/grpc++/impl/thd_no_cxx11.h", |
Julien Boeuf | 0d47192 | 2015-08-30 22:18:50 -0700 | [diff] [blame] | 754 | "include/grpc++/security/auth_context.h", |
| 755 | "include/grpc++/security/auth_metadata_processor.h", |
| 756 | "include/grpc++/security/credentials.h", |
| 757 | "include/grpc++/security/server_credentials.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 758 | "include/grpc++/server.h", |
| 759 | "include/grpc++/server_builder.h", |
| 760 | "include/grpc++/server_context.h", |
yang-g | 9fb35a5 | 2015-08-21 15:49:35 -0700 | [diff] [blame] | 761 | "include/grpc++/support/async_stream.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 762 | "include/grpc++/support/async_unary_call.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 763 | "include/grpc++/support/byte_buffer.h", |
| 764 | "include/grpc++/support/channel_arguments.h", |
| 765 | "include/grpc++/support/config.h", |
| 766 | "include/grpc++/support/config_protobuf.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 767 | "include/grpc++/support/slice.h", |
| 768 | "include/grpc++/support/status.h", |
| 769 | "include/grpc++/support/status_code_enum.h", |
Julien Boeuf | 0382bfa | 2015-08-24 23:55:43 -0700 | [diff] [blame] | 770 | "include/grpc++/support/string_ref.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 771 | "include/grpc++/support/stub_options.h", |
yang-g | 9fb35a5 | 2015-08-21 15:49:35 -0700 | [diff] [blame] | 772 | "include/grpc++/support/sync_stream.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 773 | "include/grpc++/support/time.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 774 | ], |
| 775 | includes = [ |
| 776 | "include", |
| 777 | ".", |
| 778 | ], |
| 779 | deps = [ |
Craig Tiller | 02a7bed | 2015-08-31 15:54:05 -0700 | [diff] [blame] | 780 | "//external:libssl", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 781 | "//external:protobuf_clib", |
| 782 | ":gpr", |
| 783 | ":grpc", |
| 784 | ], |
| 785 | ) |
| 786 | |
| 787 | |
| 788 | cc_library( |
| 789 | name = "grpc++_unsecure", |
| 790 | srcs = [ |
yang-g | c317f07 | 2015-08-20 12:18:08 -0700 | [diff] [blame] | 791 | "src/cpp/client/create_channel_internal.h", |
yang-g | 3abe60b | 2015-07-06 14:00:36 -0700 | [diff] [blame] | 792 | "src/cpp/common/create_auth_context.h", |
Vijay Pai | e8a7e30 | 2015-08-24 10:52:33 -0700 | [diff] [blame] | 793 | "src/cpp/server/dynamic_thread_pool.h", |
| 794 | "src/cpp/server/fixed_size_thread_pool.h", |
| 795 | "src/cpp/server/thread_pool_interface.h", |
yang-g | 3abe60b | 2015-07-06 14:00:36 -0700 | [diff] [blame] | 796 | "src/cpp/common/insecure_create_auth_context.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 797 | "src/cpp/client/channel.cc", |
| 798 | "src/cpp/client/channel_arguments.cc", |
| 799 | "src/cpp/client/client_context.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 800 | "src/cpp/client/create_channel.cc", |
yang-g | c317f07 | 2015-08-20 12:18:08 -0700 | [diff] [blame] | 801 | "src/cpp/client/create_channel_internal.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 802 | "src/cpp/client/credentials.cc", |
| 803 | "src/cpp/client/generic_stub.cc", |
| 804 | "src/cpp/client/insecure_credentials.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 805 | "src/cpp/common/call.cc", |
| 806 | "src/cpp/common/completion_queue.cc", |
| 807 | "src/cpp/common/rpc_method.cc", |
| 808 | "src/cpp/proto/proto_utils.cc", |
| 809 | "src/cpp/server/async_generic_service.cc", |
Yang Gao | 6f4fb3b | 2015-06-03 12:56:19 -0700 | [diff] [blame] | 810 | "src/cpp/server/create_default_thread_pool.cc", |
vjpai | b28456b | 2015-07-23 14:17:10 -0700 | [diff] [blame] | 811 | "src/cpp/server/dynamic_thread_pool.cc", |
vjpai | a2e1bb1 | 2015-07-15 16:49:49 -0700 | [diff] [blame] | 812 | "src/cpp/server/fixed_size_thread_pool.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 813 | "src/cpp/server/insecure_server_credentials.cc", |
| 814 | "src/cpp/server/server.cc", |
| 815 | "src/cpp/server/server_builder.cc", |
| 816 | "src/cpp/server/server_context.cc", |
| 817 | "src/cpp/server/server_credentials.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 818 | "src/cpp/util/byte_buffer.cc", |
| 819 | "src/cpp/util/slice.cc", |
| 820 | "src/cpp/util/status.cc", |
Julien Boeuf | 8fd915a | 2015-08-19 21:18:14 -0700 | [diff] [blame] | 821 | "src/cpp/util/string_ref.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 822 | "src/cpp/util/time.cc", |
| 823 | ], |
| 824 | hdrs = [ |
yang-g | 8c2be9f | 2015-08-19 16:28:09 -0700 | [diff] [blame] | 825 | "include/grpc++/channel.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 826 | "include/grpc++/client_context.h", |
| 827 | "include/grpc++/completion_queue.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 828 | "include/grpc++/create_channel.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 829 | "include/grpc++/generic/async_generic_service.h", |
| 830 | "include/grpc++/generic/generic_stub.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 831 | "include/grpc++/impl/call.h", |
| 832 | "include/grpc++/impl/client_unary_call.h", |
Yang Gao | 96de484 | 2015-04-24 13:13:12 -0700 | [diff] [blame] | 833 | "include/grpc++/impl/grpc_library.h", |
yang-g | adfed03 | 2015-06-23 13:01:22 -0700 | [diff] [blame] | 834 | "include/grpc++/impl/proto_utils.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 835 | "include/grpc++/impl/rpc_method.h", |
| 836 | "include/grpc++/impl/rpc_service_method.h", |
Craig Tiller | 6ef7f31 | 2015-06-05 10:15:10 -0700 | [diff] [blame] | 837 | "include/grpc++/impl/serialization_traits.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 838 | "include/grpc++/impl/service_type.h", |
Nicolas "Pixel" Noble | b7c2035 | 2015-04-11 01:27:32 +0200 | [diff] [blame] | 839 | "include/grpc++/impl/sync.h", |
| 840 | "include/grpc++/impl/sync_cxx11.h", |
| 841 | "include/grpc++/impl/sync_no_cxx11.h", |
| 842 | "include/grpc++/impl/thd.h", |
| 843 | "include/grpc++/impl/thd_cxx11.h", |
| 844 | "include/grpc++/impl/thd_no_cxx11.h", |
Julien Boeuf | 0d47192 | 2015-08-30 22:18:50 -0700 | [diff] [blame] | 845 | "include/grpc++/security/auth_context.h", |
| 846 | "include/grpc++/security/auth_metadata_processor.h", |
| 847 | "include/grpc++/security/credentials.h", |
| 848 | "include/grpc++/security/server_credentials.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 849 | "include/grpc++/server.h", |
| 850 | "include/grpc++/server_builder.h", |
| 851 | "include/grpc++/server_context.h", |
yang-g | 9fb35a5 | 2015-08-21 15:49:35 -0700 | [diff] [blame] | 852 | "include/grpc++/support/async_stream.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 853 | "include/grpc++/support/async_unary_call.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 854 | "include/grpc++/support/byte_buffer.h", |
| 855 | "include/grpc++/support/channel_arguments.h", |
| 856 | "include/grpc++/support/config.h", |
| 857 | "include/grpc++/support/config_protobuf.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 858 | "include/grpc++/support/slice.h", |
| 859 | "include/grpc++/support/status.h", |
| 860 | "include/grpc++/support/status_code_enum.h", |
Julien Boeuf | 0382bfa | 2015-08-24 23:55:43 -0700 | [diff] [blame] | 861 | "include/grpc++/support/string_ref.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 862 | "include/grpc++/support/stub_options.h", |
yang-g | 9fb35a5 | 2015-08-21 15:49:35 -0700 | [diff] [blame] | 863 | "include/grpc++/support/sync_stream.h", |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 864 | "include/grpc++/support/time.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 865 | ], |
| 866 | includes = [ |
| 867 | "include", |
| 868 | ".", |
| 869 | ], |
| 870 | deps = [ |
| 871 | "//external:protobuf_clib", |
| 872 | ":gpr", |
| 873 | ":grpc_unsecure", |
| 874 | ], |
| 875 | ) |
| 876 | |
| 877 | |
| 878 | cc_library( |
| 879 | name = "grpc_plugin_support", |
| 880 | srcs = [ |
yang-g | 9d1f0c4 | 2015-08-24 16:08:36 -0700 | [diff] [blame] | 881 | "include/grpc++/support/config.h", |
| 882 | "include/grpc++/support/config_protobuf.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 883 | "src/compiler/config.h", |
| 884 | "src/compiler/cpp_generator.h", |
| 885 | "src/compiler/cpp_generator_helpers.h", |
Jan Tattermusch | 2d92495 | 2015-05-06 10:23:17 -0700 | [diff] [blame] | 886 | "src/compiler/csharp_generator.h", |
| 887 | "src/compiler/csharp_generator_helpers.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 888 | "src/compiler/generator_helpers.h", |
| 889 | "src/compiler/objective_c_generator.h", |
| 890 | "src/compiler/objective_c_generator_helpers.h", |
| 891 | "src/compiler/python_generator.h", |
| 892 | "src/compiler/ruby_generator.h", |
| 893 | "src/compiler/ruby_generator_helpers-inl.h", |
| 894 | "src/compiler/ruby_generator_map-inl.h", |
| 895 | "src/compiler/ruby_generator_string-inl.h", |
| 896 | "src/compiler/cpp_generator.cc", |
Jan Tattermusch | 2d92495 | 2015-05-06 10:23:17 -0700 | [diff] [blame] | 897 | "src/compiler/csharp_generator.cc", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 898 | "src/compiler/objective_c_generator.cc", |
| 899 | "src/compiler/python_generator.cc", |
| 900 | "src/compiler/ruby_generator.cc", |
| 901 | ], |
| 902 | hdrs = [ |
| 903 | ], |
| 904 | includes = [ |
| 905 | "include", |
| 906 | ".", |
| 907 | ], |
| 908 | deps = [ |
| 909 | "//external:protobuf_compiler", |
| 910 | ], |
| 911 | ) |
| 912 | |
| 913 | |
| 914 | cc_library( |
| 915 | name = "grpc_csharp_ext", |
| 916 | srcs = [ |
| 917 | "src/csharp/ext/grpc_csharp_ext.c", |
| 918 | ], |
| 919 | hdrs = [ |
| 920 | ], |
| 921 | includes = [ |
| 922 | "include", |
| 923 | ".", |
| 924 | ], |
| 925 | deps = [ |
| 926 | ":gpr", |
| 927 | ":grpc", |
| 928 | ], |
| 929 | ) |
| 930 | |
| 931 | |
| 932 | |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 933 | objc_library( |
| 934 | name = "gpr_objc", |
| 935 | srcs = [ |
| 936 | "src/core/support/alloc.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 937 | "src/core/support/cmdline.c", |
| 938 | "src/core/support/cpu_iphone.c", |
| 939 | "src/core/support/cpu_linux.c", |
| 940 | "src/core/support/cpu_posix.c", |
| 941 | "src/core/support/cpu_windows.c", |
| 942 | "src/core/support/env_linux.c", |
| 943 | "src/core/support/env_posix.c", |
| 944 | "src/core/support/env_win32.c", |
| 945 | "src/core/support/file.c", |
| 946 | "src/core/support/file_posix.c", |
| 947 | "src/core/support/file_win32.c", |
| 948 | "src/core/support/histogram.c", |
| 949 | "src/core/support/host_port.c", |
| 950 | "src/core/support/log.c", |
| 951 | "src/core/support/log_android.c", |
| 952 | "src/core/support/log_linux.c", |
| 953 | "src/core/support/log_posix.c", |
| 954 | "src/core/support/log_win32.c", |
| 955 | "src/core/support/murmur_hash.c", |
| 956 | "src/core/support/slice.c", |
| 957 | "src/core/support/slice_buffer.c", |
Vijay Pai | 005e305 | 2015-07-10 15:18:45 -0700 | [diff] [blame] | 958 | "src/core/support/stack_lockfree.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 959 | "src/core/support/string.c", |
| 960 | "src/core/support/string_posix.c", |
| 961 | "src/core/support/string_win32.c", |
| 962 | "src/core/support/subprocess_posix.c", |
| 963 | "src/core/support/sync.c", |
| 964 | "src/core/support/sync_posix.c", |
| 965 | "src/core/support/sync_win32.c", |
| 966 | "src/core/support/thd.c", |
| 967 | "src/core/support/thd_posix.c", |
| 968 | "src/core/support/thd_win32.c", |
| 969 | "src/core/support/time.c", |
| 970 | "src/core/support/time_posix.c", |
| 971 | "src/core/support/time_win32.c", |
| 972 | "src/core/support/tls_pthread.c", |
| 973 | ], |
| 974 | hdrs = [ |
| 975 | "include/grpc/support/alloc.h", |
| 976 | "include/grpc/support/atm.h", |
| 977 | "include/grpc/support/atm_gcc_atomic.h", |
| 978 | "include/grpc/support/atm_gcc_sync.h", |
| 979 | "include/grpc/support/atm_win32.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 980 | "include/grpc/support/cmdline.h", |
| 981 | "include/grpc/support/cpu.h", |
| 982 | "include/grpc/support/histogram.h", |
| 983 | "include/grpc/support/host_port.h", |
| 984 | "include/grpc/support/log.h", |
| 985 | "include/grpc/support/log_win32.h", |
| 986 | "include/grpc/support/port_platform.h", |
| 987 | "include/grpc/support/slice.h", |
| 988 | "include/grpc/support/slice_buffer.h", |
| 989 | "include/grpc/support/string_util.h", |
| 990 | "include/grpc/support/subprocess.h", |
| 991 | "include/grpc/support/sync.h", |
| 992 | "include/grpc/support/sync_generic.h", |
| 993 | "include/grpc/support/sync_posix.h", |
| 994 | "include/grpc/support/sync_win32.h", |
| 995 | "include/grpc/support/thd.h", |
| 996 | "include/grpc/support/time.h", |
| 997 | "include/grpc/support/tls.h", |
| 998 | "include/grpc/support/tls_gcc.h", |
| 999 | "include/grpc/support/tls_msvc.h", |
| 1000 | "include/grpc/support/tls_pthread.h", |
| 1001 | "include/grpc/support/useful.h", |
| 1002 | "src/core/support/env.h", |
| 1003 | "src/core/support/file.h", |
| 1004 | "src/core/support/murmur_hash.h", |
Vijay Pai | 005e305 | 2015-07-10 15:18:45 -0700 | [diff] [blame] | 1005 | "src/core/support/stack_lockfree.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1006 | "src/core/support/string.h", |
| 1007 | "src/core/support/string_win32.h", |
| 1008 | "src/core/support/thd_internal.h", |
Hongyu Chen | a0f149e | 2015-08-24 16:27:19 -0700 | [diff] [blame] | 1009 | "src/core/support/time_precise.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1010 | ], |
| 1011 | includes = [ |
| 1012 | "include", |
| 1013 | ".", |
| 1014 | ], |
| 1015 | deps = [ |
| 1016 | ], |
| 1017 | ) |
| 1018 | |
| 1019 | |
| 1020 | objc_library( |
Jorge Canizales | 7b1a0ca | 2015-06-26 21:49:42 -0700 | [diff] [blame] | 1021 | name = "grpc_objc", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1022 | srcs = [ |
Jorge Canizales | 7b1a0ca | 2015-06-26 21:49:42 -0700 | [diff] [blame] | 1023 | "src/core/httpcli/httpcli_security_connector.c", |
Jorge Canizales | 7b1a0ca | 2015-06-26 21:49:42 -0700 | [diff] [blame] | 1024 | "src/core/security/base64.c", |
| 1025 | "src/core/security/client_auth_filter.c", |
| 1026 | "src/core/security/credentials.c", |
| 1027 | "src/core/security/credentials_metadata.c", |
| 1028 | "src/core/security/credentials_posix.c", |
| 1029 | "src/core/security/credentials_win32.c", |
| 1030 | "src/core/security/google_default_credentials.c", |
| 1031 | "src/core/security/json_token.c", |
Julien Boeuf | feca1bf | 2015-06-22 16:46:20 +0200 | [diff] [blame] | 1032 | "src/core/security/jwt_verifier.c", |
Jorge Canizales | 7b1a0ca | 2015-06-26 21:49:42 -0700 | [diff] [blame] | 1033 | "src/core/security/secure_endpoint.c", |
| 1034 | "src/core/security/secure_transport_setup.c", |
| 1035 | "src/core/security/security_connector.c", |
| 1036 | "src/core/security/security_context.c", |
| 1037 | "src/core/security/server_auth_filter.c", |
| 1038 | "src/core/security/server_secure_chttp2.c", |
| 1039 | "src/core/surface/init_secure.c", |
| 1040 | "src/core/surface/secure_channel_create.c", |
| 1041 | "src/core/tsi/fake_transport_security.c", |
| 1042 | "src/core/tsi/ssl_transport_security.c", |
| 1043 | "src/core/tsi/transport_security.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1044 | "src/core/census/grpc_context.c", |
Hongyu Chen | e09dc78 | 2015-08-21 11:28:33 -0700 | [diff] [blame] | 1045 | "src/core/census/grpc_filter.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1046 | "src/core/channel/channel_args.c", |
| 1047 | "src/core/channel/channel_stack.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1048 | "src/core/channel/client_channel.c", |
David Garcia Quintas | 8a18709 | 2015-07-01 14:52:44 -0700 | [diff] [blame] | 1049 | "src/core/channel/compress_filter.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1050 | "src/core/channel/connected_channel.c", |
| 1051 | "src/core/channel/http_client_filter.c", |
| 1052 | "src/core/channel/http_server_filter.c", |
| 1053 | "src/core/channel/noop_filter.c", |
Craig Tiller | c7b5f76 | 2015-06-27 11:48:42 -0700 | [diff] [blame] | 1054 | "src/core/client_config/client_config.c", |
| 1055 | "src/core/client_config/connector.c", |
| 1056 | "src/core/client_config/lb_policies/pick_first.c", |
| 1057 | "src/core/client_config/lb_policy.c", |
David Garcia Quintas | 5c4543d | 2015-09-03 15:49:56 -0700 | [diff] [blame^] | 1058 | "src/core/client_config/lb_policy_factory.c", |
| 1059 | "src/core/client_config/lb_policy_registry.c", |
Craig Tiller | c7b5f76 | 2015-06-27 11:48:42 -0700 | [diff] [blame] | 1060 | "src/core/client_config/resolver.c", |
| 1061 | "src/core/client_config/resolver_factory.c", |
| 1062 | "src/core/client_config/resolver_registry.c", |
| 1063 | "src/core/client_config/resolvers/dns_resolver.c", |
Craig Tiller | 698d00c | 2015-07-20 12:32:58 -0700 | [diff] [blame] | 1064 | "src/core/client_config/resolvers/sockaddr_resolver.c", |
Craig Tiller | c7b5f76 | 2015-06-27 11:48:42 -0700 | [diff] [blame] | 1065 | "src/core/client_config/subchannel.c", |
| 1066 | "src/core/client_config/subchannel_factory.c", |
Craig Tiller | 83f4d4e | 2015-07-29 18:14:41 -0700 | [diff] [blame] | 1067 | "src/core/client_config/subchannel_factory_decorators/add_channel_arg.c", |
| 1068 | "src/core/client_config/subchannel_factory_decorators/merge_channel_args.c", |
Craig Tiller | c7b5f76 | 2015-06-27 11:48:42 -0700 | [diff] [blame] | 1069 | "src/core/client_config/uri_parser.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1070 | "src/core/compression/algorithm.c", |
| 1071 | "src/core/compression/message_compress.c", |
| 1072 | "src/core/debug/trace.c", |
Craig Tiller | f53d9c8 | 2015-08-04 14:19:43 -0700 | [diff] [blame] | 1073 | "src/core/httpcli/format_request.c", |
| 1074 | "src/core/httpcli/httpcli.c", |
| 1075 | "src/core/httpcli/parser.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1076 | "src/core/iomgr/alarm.c", |
| 1077 | "src/core/iomgr/alarm_heap.c", |
| 1078 | "src/core/iomgr/endpoint.c", |
| 1079 | "src/core/iomgr/endpoint_pair_posix.c", |
| 1080 | "src/core/iomgr/endpoint_pair_windows.c", |
| 1081 | "src/core/iomgr/fd_posix.c", |
| 1082 | "src/core/iomgr/iocp_windows.c", |
| 1083 | "src/core/iomgr/iomgr.c", |
| 1084 | "src/core/iomgr/iomgr_posix.c", |
| 1085 | "src/core/iomgr/iomgr_windows.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1086 | "src/core/iomgr/pollset_multipoller_with_epoll.c", |
| 1087 | "src/core/iomgr/pollset_multipoller_with_poll_posix.c", |
| 1088 | "src/core/iomgr/pollset_posix.c", |
| 1089 | "src/core/iomgr/pollset_set_posix.c", |
| 1090 | "src/core/iomgr/pollset_set_windows.c", |
| 1091 | "src/core/iomgr/pollset_windows.c", |
| 1092 | "src/core/iomgr/resolve_address_posix.c", |
| 1093 | "src/core/iomgr/resolve_address_windows.c", |
| 1094 | "src/core/iomgr/sockaddr_utils.c", |
| 1095 | "src/core/iomgr/socket_utils_common_posix.c", |
| 1096 | "src/core/iomgr/socket_utils_linux.c", |
| 1097 | "src/core/iomgr/socket_utils_posix.c", |
| 1098 | "src/core/iomgr/socket_windows.c", |
| 1099 | "src/core/iomgr/tcp_client_posix.c", |
| 1100 | "src/core/iomgr/tcp_client_windows.c", |
| 1101 | "src/core/iomgr/tcp_posix.c", |
| 1102 | "src/core/iomgr/tcp_server_posix.c", |
| 1103 | "src/core/iomgr/tcp_server_windows.c", |
| 1104 | "src/core/iomgr/tcp_windows.c", |
| 1105 | "src/core/iomgr/time_averaged_stats.c", |
Robbie Shade | 6953529 | 2015-07-10 14:27:34 -0400 | [diff] [blame] | 1106 | "src/core/iomgr/udp_server.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1107 | "src/core/iomgr/wakeup_fd_eventfd.c", |
| 1108 | "src/core/iomgr/wakeup_fd_nospecial.c", |
| 1109 | "src/core/iomgr/wakeup_fd_pipe.c", |
| 1110 | "src/core/iomgr/wakeup_fd_posix.c", |
| 1111 | "src/core/json/json.c", |
| 1112 | "src/core/json/json_reader.c", |
| 1113 | "src/core/json/json_string.c", |
| 1114 | "src/core/json/json_writer.c", |
| 1115 | "src/core/profiling/basic_timers.c", |
| 1116 | "src/core/profiling/stap_timers.c", |
| 1117 | "src/core/surface/byte_buffer.c", |
| 1118 | "src/core/surface/byte_buffer_queue.c", |
| 1119 | "src/core/surface/byte_buffer_reader.c", |
| 1120 | "src/core/surface/call.c", |
| 1121 | "src/core/surface/call_details.c", |
| 1122 | "src/core/surface/call_log_batch.c", |
| 1123 | "src/core/surface/channel.c", |
Craig Tiller | 48cb07c | 2015-07-15 16:16:15 -0700 | [diff] [blame] | 1124 | "src/core/surface/channel_connectivity.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1125 | "src/core/surface/channel_create.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1126 | "src/core/surface/completion_queue.c", |
| 1127 | "src/core/surface/event_string.c", |
| 1128 | "src/core/surface/init.c", |
| 1129 | "src/core/surface/lame_client.c", |
| 1130 | "src/core/surface/metadata_array.c", |
| 1131 | "src/core/surface/server.c", |
| 1132 | "src/core/surface/server_chttp2.c", |
| 1133 | "src/core/surface/server_create.c", |
| 1134 | "src/core/surface/surface_trace.c", |
Craig Tiller | 2e622bc | 2015-07-10 07:46:03 -0700 | [diff] [blame] | 1135 | "src/core/surface/version.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1136 | "src/core/transport/chttp2/alpn.c", |
| 1137 | "src/core/transport/chttp2/bin_encoder.c", |
| 1138 | "src/core/transport/chttp2/frame_data.c", |
| 1139 | "src/core/transport/chttp2/frame_goaway.c", |
| 1140 | "src/core/transport/chttp2/frame_ping.c", |
| 1141 | "src/core/transport/chttp2/frame_rst_stream.c", |
| 1142 | "src/core/transport/chttp2/frame_settings.c", |
| 1143 | "src/core/transport/chttp2/frame_window_update.c", |
| 1144 | "src/core/transport/chttp2/hpack_parser.c", |
| 1145 | "src/core/transport/chttp2/hpack_table.c", |
| 1146 | "src/core/transport/chttp2/huffsyms.c", |
Nicolas "Pixel" Noble | d35f93d | 2015-06-27 00:57:29 +0200 | [diff] [blame] | 1147 | "src/core/transport/chttp2/incoming_metadata.c", |
| 1148 | "src/core/transport/chttp2/parsing.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1149 | "src/core/transport/chttp2/status_conversion.c", |
| 1150 | "src/core/transport/chttp2/stream_encoder.c", |
Nicolas "Pixel" Noble | d35f93d | 2015-06-27 00:57:29 +0200 | [diff] [blame] | 1151 | "src/core/transport/chttp2/stream_lists.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1152 | "src/core/transport/chttp2/stream_map.c", |
| 1153 | "src/core/transport/chttp2/timeout_encoding.c", |
| 1154 | "src/core/transport/chttp2/varint.c", |
Nicolas "Pixel" Noble | d35f93d | 2015-06-27 00:57:29 +0200 | [diff] [blame] | 1155 | "src/core/transport/chttp2/writing.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1156 | "src/core/transport/chttp2_transport.c", |
Craig Tiller | 08a1cf8 | 2015-06-29 09:37:52 -0700 | [diff] [blame] | 1157 | "src/core/transport/connectivity_state.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1158 | "src/core/transport/metadata.c", |
| 1159 | "src/core/transport/stream_op.c", |
| 1160 | "src/core/transport/transport.c", |
| 1161 | "src/core/transport/transport_op_string.c", |
| 1162 | "src/core/census/context.c", |
| 1163 | "src/core/census/initialize.c", |
Alistair Veitch | e6d0ad3 | 2015-08-13 09:59:48 -0700 | [diff] [blame] | 1164 | "src/core/census/operation.c", |
Alistair Veitch | 0383d49 | 2015-07-26 15:29:00 -0700 | [diff] [blame] | 1165 | "src/core/census/tracing.c", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1166 | ], |
| 1167 | hdrs = [ |
Jorge Canizales | 7b1a0ca | 2015-06-26 21:49:42 -0700 | [diff] [blame] | 1168 | "include/grpc/grpc_security.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1169 | "include/grpc/byte_buffer.h", |
| 1170 | "include/grpc/byte_buffer_reader.h", |
| 1171 | "include/grpc/compression.h", |
| 1172 | "include/grpc/grpc.h", |
| 1173 | "include/grpc/status.h", |
| 1174 | "include/grpc/census.h", |
Jorge Canizales | 7b1a0ca | 2015-06-26 21:49:42 -0700 | [diff] [blame] | 1175 | "src/core/security/auth_filters.h", |
| 1176 | "src/core/security/base64.h", |
| 1177 | "src/core/security/credentials.h", |
| 1178 | "src/core/security/json_token.h", |
Julien Boeuf | feca1bf | 2015-06-22 16:46:20 +0200 | [diff] [blame] | 1179 | "src/core/security/jwt_verifier.h", |
Jorge Canizales | 7b1a0ca | 2015-06-26 21:49:42 -0700 | [diff] [blame] | 1180 | "src/core/security/secure_endpoint.h", |
| 1181 | "src/core/security/secure_transport_setup.h", |
| 1182 | "src/core/security/security_connector.h", |
| 1183 | "src/core/security/security_context.h", |
| 1184 | "src/core/tsi/fake_transport_security.h", |
| 1185 | "src/core/tsi/ssl_transport_security.h", |
| 1186 | "src/core/tsi/transport_security.h", |
| 1187 | "src/core/tsi/transport_security_interface.h", |
Hongyu Chen | e09dc78 | 2015-08-21 11:28:33 -0700 | [diff] [blame] | 1188 | "src/core/census/grpc_filter.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1189 | "src/core/channel/channel_args.h", |
| 1190 | "src/core/channel/channel_stack.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1191 | "src/core/channel/client_channel.h", |
David Garcia Quintas | 8a18709 | 2015-07-01 14:52:44 -0700 | [diff] [blame] | 1192 | "src/core/channel/compress_filter.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1193 | "src/core/channel/connected_channel.h", |
| 1194 | "src/core/channel/context.h", |
| 1195 | "src/core/channel/http_client_filter.h", |
| 1196 | "src/core/channel/http_server_filter.h", |
| 1197 | "src/core/channel/noop_filter.h", |
Craig Tiller | c7b5f76 | 2015-06-27 11:48:42 -0700 | [diff] [blame] | 1198 | "src/core/client_config/client_config.h", |
| 1199 | "src/core/client_config/connector.h", |
| 1200 | "src/core/client_config/lb_policies/pick_first.h", |
| 1201 | "src/core/client_config/lb_policy.h", |
David Garcia Quintas | 5c4543d | 2015-09-03 15:49:56 -0700 | [diff] [blame^] | 1202 | "src/core/client_config/lb_policy_factory.h", |
| 1203 | "src/core/client_config/lb_policy_registry.h", |
Craig Tiller | c7b5f76 | 2015-06-27 11:48:42 -0700 | [diff] [blame] | 1204 | "src/core/client_config/resolver.h", |
| 1205 | "src/core/client_config/resolver_factory.h", |
| 1206 | "src/core/client_config/resolver_registry.h", |
| 1207 | "src/core/client_config/resolvers/dns_resolver.h", |
Craig Tiller | 698d00c | 2015-07-20 12:32:58 -0700 | [diff] [blame] | 1208 | "src/core/client_config/resolvers/sockaddr_resolver.h", |
Craig Tiller | c7b5f76 | 2015-06-27 11:48:42 -0700 | [diff] [blame] | 1209 | "src/core/client_config/subchannel.h", |
| 1210 | "src/core/client_config/subchannel_factory.h", |
Craig Tiller | 83f4d4e | 2015-07-29 18:14:41 -0700 | [diff] [blame] | 1211 | "src/core/client_config/subchannel_factory_decorators/add_channel_arg.h", |
| 1212 | "src/core/client_config/subchannel_factory_decorators/merge_channel_args.h", |
Craig Tiller | c7b5f76 | 2015-06-27 11:48:42 -0700 | [diff] [blame] | 1213 | "src/core/client_config/uri_parser.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1214 | "src/core/compression/message_compress.h", |
| 1215 | "src/core/debug/trace.h", |
Craig Tiller | f53d9c8 | 2015-08-04 14:19:43 -0700 | [diff] [blame] | 1216 | "src/core/httpcli/format_request.h", |
| 1217 | "src/core/httpcli/httpcli.h", |
| 1218 | "src/core/httpcli/parser.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1219 | "src/core/iomgr/alarm.h", |
| 1220 | "src/core/iomgr/alarm_heap.h", |
| 1221 | "src/core/iomgr/alarm_internal.h", |
| 1222 | "src/core/iomgr/endpoint.h", |
| 1223 | "src/core/iomgr/endpoint_pair.h", |
| 1224 | "src/core/iomgr/fd_posix.h", |
| 1225 | "src/core/iomgr/iocp_windows.h", |
| 1226 | "src/core/iomgr/iomgr.h", |
| 1227 | "src/core/iomgr/iomgr_internal.h", |
| 1228 | "src/core/iomgr/iomgr_posix.h", |
| 1229 | "src/core/iomgr/pollset.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1230 | "src/core/iomgr/pollset_posix.h", |
| 1231 | "src/core/iomgr/pollset_set.h", |
| 1232 | "src/core/iomgr/pollset_set_posix.h", |
| 1233 | "src/core/iomgr/pollset_set_windows.h", |
| 1234 | "src/core/iomgr/pollset_windows.h", |
| 1235 | "src/core/iomgr/resolve_address.h", |
| 1236 | "src/core/iomgr/sockaddr.h", |
| 1237 | "src/core/iomgr/sockaddr_posix.h", |
| 1238 | "src/core/iomgr/sockaddr_utils.h", |
| 1239 | "src/core/iomgr/sockaddr_win32.h", |
| 1240 | "src/core/iomgr/socket_utils_posix.h", |
| 1241 | "src/core/iomgr/socket_windows.h", |
| 1242 | "src/core/iomgr/tcp_client.h", |
| 1243 | "src/core/iomgr/tcp_posix.h", |
| 1244 | "src/core/iomgr/tcp_server.h", |
| 1245 | "src/core/iomgr/tcp_windows.h", |
| 1246 | "src/core/iomgr/time_averaged_stats.h", |
Robbie Shade | 6953529 | 2015-07-10 14:27:34 -0400 | [diff] [blame] | 1247 | "src/core/iomgr/udp_server.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1248 | "src/core/iomgr/wakeup_fd_pipe.h", |
| 1249 | "src/core/iomgr/wakeup_fd_posix.h", |
| 1250 | "src/core/json/json.h", |
| 1251 | "src/core/json/json_common.h", |
| 1252 | "src/core/json/json_reader.h", |
| 1253 | "src/core/json/json_writer.h", |
| 1254 | "src/core/profiling/timers.h", |
Hongyu Chen | beb580b | 2015-08-25 16:19:33 -0700 | [diff] [blame] | 1255 | "src/core/statistics/census_interface.h", |
| 1256 | "src/core/statistics/census_rpc_stats.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1257 | "src/core/surface/byte_buffer_queue.h", |
| 1258 | "src/core/surface/call.h", |
| 1259 | "src/core/surface/channel.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1260 | "src/core/surface/completion_queue.h", |
| 1261 | "src/core/surface/event_string.h", |
| 1262 | "src/core/surface/init.h", |
| 1263 | "src/core/surface/server.h", |
| 1264 | "src/core/surface/surface_trace.h", |
| 1265 | "src/core/transport/chttp2/alpn.h", |
| 1266 | "src/core/transport/chttp2/bin_encoder.h", |
| 1267 | "src/core/transport/chttp2/frame.h", |
| 1268 | "src/core/transport/chttp2/frame_data.h", |
| 1269 | "src/core/transport/chttp2/frame_goaway.h", |
| 1270 | "src/core/transport/chttp2/frame_ping.h", |
| 1271 | "src/core/transport/chttp2/frame_rst_stream.h", |
| 1272 | "src/core/transport/chttp2/frame_settings.h", |
| 1273 | "src/core/transport/chttp2/frame_window_update.h", |
| 1274 | "src/core/transport/chttp2/hpack_parser.h", |
| 1275 | "src/core/transport/chttp2/hpack_table.h", |
| 1276 | "src/core/transport/chttp2/http2_errors.h", |
| 1277 | "src/core/transport/chttp2/huffsyms.h", |
Nicolas "Pixel" Noble | d35f93d | 2015-06-27 00:57:29 +0200 | [diff] [blame] | 1278 | "src/core/transport/chttp2/incoming_metadata.h", |
| 1279 | "src/core/transport/chttp2/internal.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1280 | "src/core/transport/chttp2/status_conversion.h", |
| 1281 | "src/core/transport/chttp2/stream_encoder.h", |
| 1282 | "src/core/transport/chttp2/stream_map.h", |
| 1283 | "src/core/transport/chttp2/timeout_encoding.h", |
| 1284 | "src/core/transport/chttp2/varint.h", |
| 1285 | "src/core/transport/chttp2_transport.h", |
Craig Tiller | 08a1cf8 | 2015-06-29 09:37:52 -0700 | [diff] [blame] | 1286 | "src/core/transport/connectivity_state.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1287 | "src/core/transport/metadata.h", |
| 1288 | "src/core/transport/stream_op.h", |
| 1289 | "src/core/transport/transport.h", |
| 1290 | "src/core/transport/transport_impl.h", |
Alistair Veitch | 1c09acc | 2015-08-31 16:57:32 -0700 | [diff] [blame] | 1291 | "src/core/census/aggregation.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1292 | "src/core/census/context.h", |
Alistair Veitch | 9a09982 | 2015-08-27 13:16:00 -0700 | [diff] [blame] | 1293 | "src/core/census/rpc_metric_id.h", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1294 | ], |
| 1295 | includes = [ |
| 1296 | "include", |
| 1297 | ".", |
| 1298 | ], |
| 1299 | deps = [ |
| 1300 | ":gpr_objc", |
Jorge Canizales | 4dc4e3d | 2015-06-26 22:12:02 -0700 | [diff] [blame] | 1301 | "//external:libssl_objc", |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1302 | ], |
Jorge Canizales | 8c1fd04 | 2015-06-22 19:11:36 -0700 | [diff] [blame] | 1303 | sdk_dylibs = ["libz"], |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1304 | ) |
| 1305 | |
| 1306 | |
| 1307 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1308 | cc_binary( |
| 1309 | name = "grpc_cpp_plugin", |
| 1310 | srcs = [ |
| 1311 | "src/compiler/cpp_plugin.cc", |
| 1312 | ], |
| 1313 | deps = [ |
| 1314 | "//external:protobuf_compiler", |
| 1315 | ":grpc_plugin_support", |
| 1316 | ], |
| 1317 | ) |
| 1318 | |
| 1319 | |
| 1320 | cc_binary( |
Jan Tattermusch | 2d92495 | 2015-05-06 10:23:17 -0700 | [diff] [blame] | 1321 | name = "grpc_csharp_plugin", |
| 1322 | srcs = [ |
| 1323 | "src/compiler/csharp_plugin.cc", |
| 1324 | ], |
| 1325 | deps = [ |
| 1326 | "//external:protobuf_compiler", |
| 1327 | ":grpc_plugin_support", |
| 1328 | ], |
| 1329 | ) |
| 1330 | |
| 1331 | |
| 1332 | cc_binary( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1333 | name = "grpc_objective_c_plugin", |
| 1334 | srcs = [ |
| 1335 | "src/compiler/objective_c_plugin.cc", |
| 1336 | ], |
| 1337 | deps = [ |
| 1338 | "//external:protobuf_compiler", |
| 1339 | ":grpc_plugin_support", |
| 1340 | ], |
| 1341 | ) |
| 1342 | |
| 1343 | |
| 1344 | cc_binary( |
| 1345 | name = "grpc_python_plugin", |
| 1346 | srcs = [ |
| 1347 | "src/compiler/python_plugin.cc", |
| 1348 | ], |
| 1349 | deps = [ |
| 1350 | "//external:protobuf_compiler", |
| 1351 | ":grpc_plugin_support", |
| 1352 | ], |
| 1353 | ) |
| 1354 | |
| 1355 | |
| 1356 | cc_binary( |
| 1357 | name = "grpc_ruby_plugin", |
| 1358 | srcs = [ |
| 1359 | "src/compiler/ruby_plugin.cc", |
| 1360 | ], |
| 1361 | deps = [ |
| 1362 | "//external:protobuf_compiler", |
| 1363 | ":grpc_plugin_support", |
| 1364 | ], |
| 1365 | ) |
| 1366 | |
| 1367 | |
| 1368 | |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 1369 | |
| 1370 | |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1371 | |
Jorge Canizales | 91e67a2 | 2015-06-24 13:50:04 -0700 | [diff] [blame] | 1372 | |
| 1373 | |
Jorge Canizales | 44dc423 | 2015-06-19 16:30:31 -0700 | [diff] [blame] | 1374 | objc_path = "src/objective-c" |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1375 | |
Jorge Canizales | 44dc423 | 2015-06-19 16:30:31 -0700 | [diff] [blame] | 1376 | rx_library_path = objc_path + "/RxLibrary" |
| 1377 | |
| 1378 | objc_library( |
Jorge Canizales | bba8076 | 2015-06-26 23:25:48 -0700 | [diff] [blame] | 1379 | name = "rx_library", |
| 1380 | hdrs = glob([ |
| 1381 | rx_library_path + "/*.h", |
| 1382 | rx_library_path + "/transformations/*.h", |
| 1383 | ]), |
| 1384 | srcs = glob([ |
| 1385 | rx_library_path + "/*.m", |
| 1386 | rx_library_path + "/transformations/*.m", |
| 1387 | ]), |
| 1388 | includes = [objc_path], |
| 1389 | deps = [ |
| 1390 | ":rx_library_private", |
| 1391 | ], |
Jorge Canizales | 44dc423 | 2015-06-19 16:30:31 -0700 | [diff] [blame] | 1392 | ) |
| 1393 | |
| 1394 | objc_library( |
Jorge Canizales | bba8076 | 2015-06-26 23:25:48 -0700 | [diff] [blame] | 1395 | name = "rx_library_private", |
| 1396 | hdrs = glob([rx_library_path + "/private/*.h"]), |
| 1397 | srcs = glob([rx_library_path + "/private/*.m"]), |
| 1398 | visibility = ["//visibility:private"], |
Jorge Canizales | 44dc423 | 2015-06-19 16:30:31 -0700 | [diff] [blame] | 1399 | ) |
Jorge Canizales | 866255e | 2015-06-20 18:58:38 -0700 | [diff] [blame] | 1400 | |
| 1401 | objc_client_path = objc_path + "/GRPCClient" |
| 1402 | |
| 1403 | objc_library( |
| 1404 | name = "grpc_client", |
| 1405 | hdrs = glob([ |
| 1406 | objc_client_path + "/*.h", |
| 1407 | objc_client_path + "/private/*.h", |
| 1408 | ]), |
| 1409 | srcs = glob([ |
| 1410 | objc_client_path + "/*.m", |
| 1411 | objc_client_path + "/private/*.m", |
| 1412 | ]), |
| 1413 | includes = [objc_path], |
Jorge Canizales | bb54ae8 | 2015-06-28 06:50:58 -0700 | [diff] [blame] | 1414 | bundles = [":gRPCCertificates"], |
Jorge Canizales | 866255e | 2015-06-20 18:58:38 -0700 | [diff] [blame] | 1415 | deps = [ |
| 1416 | ":grpc_objc", |
| 1417 | ":rx_library", |
| 1418 | ], |
| 1419 | ) |
Jorge Canizales | bb54ae8 | 2015-06-28 06:50:58 -0700 | [diff] [blame] | 1420 | |
| 1421 | objc_bundle_library( |
| 1422 | # The choice of name is signicant here, since it determines the bundle name. |
| 1423 | name = "gRPCCertificates", |
| 1424 | resources = ["etc/roots.pem"], |
| 1425 | ) |
Jorge Canizales | 50f1982 | 2015-06-28 23:48:30 -0700 | [diff] [blame] | 1426 | |
| 1427 | proto_objc_rpc_path = objc_path + "/ProtoRPC" |
| 1428 | |
| 1429 | objc_library( |
| 1430 | name = "proto_objc_rpc", |
| 1431 | hdrs = glob([ |
| 1432 | proto_objc_rpc_path + "/*.h", |
| 1433 | ]), |
| 1434 | srcs = glob([ |
| 1435 | proto_objc_rpc_path + "/*.m", |
| 1436 | ]), |
| 1437 | includes = [objc_path], |
| 1438 | deps = [ |
| 1439 | ":grpc_client", |
| 1440 | ":rx_library", |
| 1441 | "//external:protobuf_objc", |
| 1442 | ], |
| 1443 | ) |