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