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. |
| 3 | |
| 4 | # Copyright 2015, Google Inc. |
| 5 | # All rights reserved. |
| 6 | # |
| 7 | # Redistribution and use in source and binary forms, with or without |
| 8 | # modification, are permitted provided that the following conditions are |
| 9 | # met: |
| 10 | # |
| 11 | # * Redistributions of source code must retain the above copyright |
| 12 | # notice, this list of conditions and the following disclaimer. |
| 13 | # * Redistributions in binary form must reproduce the above |
| 14 | # copyright notice, this list of conditions and the following disclaimer |
| 15 | # in the documentation and/or other materials provided with the |
| 16 | # distribution. |
| 17 | # * Neither the name of Google Inc. nor the names of its |
| 18 | # contributors may be used to endorse or promote products derived from |
| 19 | # this software without specific prior written permission. |
| 20 | # |
| 21 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 22 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 23 | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 24 | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 25 | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 26 | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 27 | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 28 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 29 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 30 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 31 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 | |
| 33 | licenses(["notice"]) # 3-clause BSD |
| 34 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 35 | package(default_visibility = ["//visibility:public"]) |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 36 | |
| 37 | |
| 38 | |
| 39 | |
| 40 | cc_library( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 41 | name = "gpr", |
| 42 | srcs = [ |
| 43 | "src/core/support/env.h", |
| 44 | "src/core/support/file.h", |
| 45 | "src/core/support/murmur_hash.h", |
| 46 | "src/core/support/string.h", |
| 47 | "src/core/support/string_win32.h", |
| 48 | "src/core/support/thd_internal.h", |
| 49 | "src/core/support/alloc.c", |
| 50 | "src/core/support/cancellable.c", |
| 51 | "src/core/support/cmdline.c", |
| 52 | "src/core/support/cpu_iphone.c", |
| 53 | "src/core/support/cpu_linux.c", |
| 54 | "src/core/support/cpu_posix.c", |
| 55 | "src/core/support/cpu_windows.c", |
| 56 | "src/core/support/env_linux.c", |
| 57 | "src/core/support/env_posix.c", |
| 58 | "src/core/support/env_win32.c", |
| 59 | "src/core/support/file.c", |
| 60 | "src/core/support/file_posix.c", |
| 61 | "src/core/support/file_win32.c", |
| 62 | "src/core/support/histogram.c", |
| 63 | "src/core/support/host_port.c", |
| 64 | "src/core/support/log.c", |
| 65 | "src/core/support/log_android.c", |
| 66 | "src/core/support/log_linux.c", |
| 67 | "src/core/support/log_posix.c", |
| 68 | "src/core/support/log_win32.c", |
| 69 | "src/core/support/murmur_hash.c", |
| 70 | "src/core/support/slice.c", |
| 71 | "src/core/support/slice_buffer.c", |
| 72 | "src/core/support/string.c", |
| 73 | "src/core/support/string_posix.c", |
| 74 | "src/core/support/string_win32.c", |
| 75 | "src/core/support/sync.c", |
| 76 | "src/core/support/sync_posix.c", |
| 77 | "src/core/support/sync_win32.c", |
| 78 | "src/core/support/thd.c", |
| 79 | "src/core/support/thd_posix.c", |
| 80 | "src/core/support/thd_win32.c", |
| 81 | "src/core/support/time.c", |
| 82 | "src/core/support/time_posix.c", |
| 83 | "src/core/support/time_win32.c", |
| 84 | ], |
| 85 | hdrs = [ |
| 86 | "include/grpc/support/alloc.h", |
| 87 | "include/grpc/support/atm.h", |
| 88 | "include/grpc/support/atm_gcc_atomic.h", |
| 89 | "include/grpc/support/atm_gcc_sync.h", |
| 90 | "include/grpc/support/atm_win32.h", |
| 91 | "include/grpc/support/cancellable_platform.h", |
| 92 | "include/grpc/support/cmdline.h", |
| 93 | "include/grpc/support/cpu.h", |
| 94 | "include/grpc/support/histogram.h", |
| 95 | "include/grpc/support/host_port.h", |
| 96 | "include/grpc/support/log.h", |
| 97 | "include/grpc/support/log_win32.h", |
| 98 | "include/grpc/support/port_platform.h", |
| 99 | "include/grpc/support/slice.h", |
| 100 | "include/grpc/support/slice_buffer.h", |
| 101 | "include/grpc/support/sync.h", |
| 102 | "include/grpc/support/sync_generic.h", |
| 103 | "include/grpc/support/sync_posix.h", |
| 104 | "include/grpc/support/sync_win32.h", |
| 105 | "include/grpc/support/thd.h", |
| 106 | "include/grpc/support/time.h", |
Yang Gao | b0b518e | 2015-04-13 14:53:25 -0700 | [diff] [blame] | 107 | "include/grpc/support/tls.h", |
| 108 | "include/grpc/support/tls_gcc.h", |
| 109 | "include/grpc/support/tls_msvc.h", |
| 110 | "include/grpc/support/tls_pthread.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 111 | "include/grpc/support/useful.h", |
| 112 | ], |
| 113 | includes = [ |
| 114 | "include", |
| 115 | ".", |
| 116 | ], |
| 117 | deps = [ |
| 118 | ], |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 119 | ) |
| 120 | |
| 121 | |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 122 | cc_library( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 123 | name = "grpc", |
| 124 | srcs = [ |
| 125 | "src/core/httpcli/format_request.h", |
| 126 | "src/core/httpcli/httpcli.h", |
| 127 | "src/core/httpcli/httpcli_security_context.h", |
| 128 | "src/core/httpcli/parser.h", |
| 129 | "src/core/security/auth.h", |
| 130 | "src/core/security/base64.h", |
| 131 | "src/core/security/credentials.h", |
| 132 | "src/core/security/json_token.h", |
| 133 | "src/core/security/secure_endpoint.h", |
| 134 | "src/core/security/secure_transport_setup.h", |
| 135 | "src/core/security/security_context.h", |
| 136 | "src/core/tsi/fake_transport_security.h", |
| 137 | "src/core/tsi/ssl_transport_security.h", |
| 138 | "src/core/tsi/transport_security.h", |
| 139 | "src/core/tsi/transport_security_interface.h", |
| 140 | "src/core/channel/census_filter.h", |
| 141 | "src/core/channel/channel_args.h", |
| 142 | "src/core/channel/channel_stack.h", |
| 143 | "src/core/channel/child_channel.h", |
| 144 | "src/core/channel/client_channel.h", |
| 145 | "src/core/channel/client_setup.h", |
| 146 | "src/core/channel/connected_channel.h", |
| 147 | "src/core/channel/http_client_filter.h", |
| 148 | "src/core/channel/http_filter.h", |
| 149 | "src/core/channel/http_server_filter.h", |
| 150 | "src/core/channel/metadata_buffer.h", |
| 151 | "src/core/channel/noop_filter.h", |
| 152 | "src/core/compression/algorithm.h", |
| 153 | "src/core/compression/message_compress.h", |
| 154 | "src/core/debug/trace.h", |
| 155 | "src/core/iomgr/alarm.h", |
| 156 | "src/core/iomgr/alarm_heap.h", |
| 157 | "src/core/iomgr/alarm_internal.h", |
| 158 | "src/core/iomgr/endpoint.h", |
| 159 | "src/core/iomgr/endpoint_pair.h", |
| 160 | "src/core/iomgr/fd_posix.h", |
| 161 | "src/core/iomgr/iocp_windows.h", |
| 162 | "src/core/iomgr/iomgr.h", |
| 163 | "src/core/iomgr/iomgr_internal.h", |
| 164 | "src/core/iomgr/iomgr_posix.h", |
| 165 | "src/core/iomgr/pollset.h", |
| 166 | "src/core/iomgr/pollset_kick.h", |
| 167 | "src/core/iomgr/pollset_kick_posix.h", |
| 168 | "src/core/iomgr/pollset_kick_windows.h", |
| 169 | "src/core/iomgr/pollset_posix.h", |
| 170 | "src/core/iomgr/pollset_windows.h", |
| 171 | "src/core/iomgr/resolve_address.h", |
| 172 | "src/core/iomgr/sockaddr.h", |
| 173 | "src/core/iomgr/sockaddr_posix.h", |
| 174 | "src/core/iomgr/sockaddr_utils.h", |
| 175 | "src/core/iomgr/sockaddr_win32.h", |
| 176 | "src/core/iomgr/socket_utils_posix.h", |
| 177 | "src/core/iomgr/socket_windows.h", |
| 178 | "src/core/iomgr/tcp_client.h", |
| 179 | "src/core/iomgr/tcp_posix.h", |
| 180 | "src/core/iomgr/tcp_server.h", |
| 181 | "src/core/iomgr/tcp_windows.h", |
| 182 | "src/core/iomgr/time_averaged_stats.h", |
| 183 | "src/core/iomgr/wakeup_fd_pipe.h", |
| 184 | "src/core/iomgr/wakeup_fd_posix.h", |
| 185 | "src/core/json/json.h", |
| 186 | "src/core/json/json_common.h", |
| 187 | "src/core/json/json_reader.h", |
| 188 | "src/core/json/json_writer.h", |
Vijay Pai | 6dfa7e6 | 2015-04-13 10:41:40 -0700 | [diff] [blame] | 189 | "src/core/profiling/timers.h", |
Vijay Pai | 9cccb08 | 2015-04-13 13:04:06 -0700 | [diff] [blame] | 190 | "src/core/profiling/timers_preciseclock.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 191 | "src/core/statistics/census_interface.h", |
| 192 | "src/core/statistics/census_log.h", |
| 193 | "src/core/statistics/census_rpc_stats.h", |
| 194 | "src/core/statistics/census_tracing.h", |
| 195 | "src/core/statistics/hash_table.h", |
| 196 | "src/core/statistics/window_stats.h", |
| 197 | "src/core/surface/byte_buffer_queue.h", |
| 198 | "src/core/surface/call.h", |
| 199 | "src/core/surface/channel.h", |
| 200 | "src/core/surface/client.h", |
| 201 | "src/core/surface/completion_queue.h", |
| 202 | "src/core/surface/event_string.h", |
| 203 | "src/core/surface/init.h", |
| 204 | "src/core/surface/server.h", |
| 205 | "src/core/surface/surface_trace.h", |
| 206 | "src/core/transport/chttp2/alpn.h", |
| 207 | "src/core/transport/chttp2/bin_encoder.h", |
| 208 | "src/core/transport/chttp2/frame.h", |
| 209 | "src/core/transport/chttp2/frame_data.h", |
| 210 | "src/core/transport/chttp2/frame_goaway.h", |
| 211 | "src/core/transport/chttp2/frame_ping.h", |
| 212 | "src/core/transport/chttp2/frame_rst_stream.h", |
| 213 | "src/core/transport/chttp2/frame_settings.h", |
| 214 | "src/core/transport/chttp2/frame_window_update.h", |
| 215 | "src/core/transport/chttp2/hpack_parser.h", |
| 216 | "src/core/transport/chttp2/hpack_table.h", |
| 217 | "src/core/transport/chttp2/http2_errors.h", |
| 218 | "src/core/transport/chttp2/huffsyms.h", |
| 219 | "src/core/transport/chttp2/status_conversion.h", |
| 220 | "src/core/transport/chttp2/stream_encoder.h", |
| 221 | "src/core/transport/chttp2/stream_map.h", |
| 222 | "src/core/transport/chttp2/timeout_encoding.h", |
| 223 | "src/core/transport/chttp2/varint.h", |
| 224 | "src/core/transport/chttp2_transport.h", |
| 225 | "src/core/transport/metadata.h", |
| 226 | "src/core/transport/stream_op.h", |
| 227 | "src/core/transport/transport.h", |
| 228 | "src/core/transport/transport_impl.h", |
| 229 | "src/core/httpcli/format_request.c", |
| 230 | "src/core/httpcli/httpcli.c", |
| 231 | "src/core/httpcli/httpcli_security_context.c", |
| 232 | "src/core/httpcli/parser.c", |
| 233 | "src/core/security/auth.c", |
| 234 | "src/core/security/base64.c", |
| 235 | "src/core/security/credentials.c", |
| 236 | "src/core/security/credentials_posix.c", |
| 237 | "src/core/security/credentials_win32.c", |
| 238 | "src/core/security/factories.c", |
| 239 | "src/core/security/google_default_credentials.c", |
| 240 | "src/core/security/json_token.c", |
| 241 | "src/core/security/secure_endpoint.c", |
| 242 | "src/core/security/secure_transport_setup.c", |
| 243 | "src/core/security/security_context.c", |
| 244 | "src/core/security/server_secure_chttp2.c", |
| 245 | "src/core/surface/init_secure.c", |
| 246 | "src/core/surface/secure_channel_create.c", |
| 247 | "src/core/tsi/fake_transport_security.c", |
| 248 | "src/core/tsi/ssl_transport_security.c", |
| 249 | "src/core/tsi/transport_security.c", |
| 250 | "src/core/channel/call_op_string.c", |
| 251 | "src/core/channel/census_filter.c", |
| 252 | "src/core/channel/channel_args.c", |
| 253 | "src/core/channel/channel_stack.c", |
| 254 | "src/core/channel/child_channel.c", |
| 255 | "src/core/channel/client_channel.c", |
| 256 | "src/core/channel/client_setup.c", |
| 257 | "src/core/channel/connected_channel.c", |
| 258 | "src/core/channel/http_client_filter.c", |
| 259 | "src/core/channel/http_filter.c", |
| 260 | "src/core/channel/http_server_filter.c", |
| 261 | "src/core/channel/metadata_buffer.c", |
| 262 | "src/core/channel/noop_filter.c", |
| 263 | "src/core/compression/algorithm.c", |
| 264 | "src/core/compression/message_compress.c", |
| 265 | "src/core/debug/trace.c", |
| 266 | "src/core/iomgr/alarm.c", |
| 267 | "src/core/iomgr/alarm_heap.c", |
| 268 | "src/core/iomgr/endpoint.c", |
| 269 | "src/core/iomgr/endpoint_pair_posix.c", |
Craig Tiller | d180e03 | 2015-04-13 10:10:07 -0700 | [diff] [blame] | 270 | "src/core/iomgr/endpoint_pair_windows.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 271 | "src/core/iomgr/fd_posix.c", |
| 272 | "src/core/iomgr/iocp_windows.c", |
| 273 | "src/core/iomgr/iomgr.c", |
| 274 | "src/core/iomgr/iomgr_posix.c", |
| 275 | "src/core/iomgr/iomgr_windows.c", |
| 276 | "src/core/iomgr/pollset_kick.c", |
| 277 | "src/core/iomgr/pollset_multipoller_with_epoll.c", |
| 278 | "src/core/iomgr/pollset_multipoller_with_poll_posix.c", |
| 279 | "src/core/iomgr/pollset_posix.c", |
| 280 | "src/core/iomgr/pollset_windows.c", |
| 281 | "src/core/iomgr/resolve_address_posix.c", |
| 282 | "src/core/iomgr/resolve_address_windows.c", |
| 283 | "src/core/iomgr/sockaddr_utils.c", |
| 284 | "src/core/iomgr/socket_utils_common_posix.c", |
| 285 | "src/core/iomgr/socket_utils_linux.c", |
| 286 | "src/core/iomgr/socket_utils_posix.c", |
| 287 | "src/core/iomgr/socket_windows.c", |
| 288 | "src/core/iomgr/tcp_client_posix.c", |
| 289 | "src/core/iomgr/tcp_client_windows.c", |
| 290 | "src/core/iomgr/tcp_posix.c", |
| 291 | "src/core/iomgr/tcp_server_posix.c", |
| 292 | "src/core/iomgr/tcp_server_windows.c", |
| 293 | "src/core/iomgr/tcp_windows.c", |
| 294 | "src/core/iomgr/time_averaged_stats.c", |
| 295 | "src/core/iomgr/wakeup_fd_eventfd.c", |
| 296 | "src/core/iomgr/wakeup_fd_nospecial.c", |
| 297 | "src/core/iomgr/wakeup_fd_pipe.c", |
| 298 | "src/core/iomgr/wakeup_fd_posix.c", |
| 299 | "src/core/json/json.c", |
| 300 | "src/core/json/json_reader.c", |
| 301 | "src/core/json/json_string.c", |
| 302 | "src/core/json/json_writer.c", |
Vijay Pai | 6dfa7e6 | 2015-04-13 10:41:40 -0700 | [diff] [blame] | 303 | "src/core/profiling/timers.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 304 | "src/core/statistics/census_init.c", |
| 305 | "src/core/statistics/census_log.c", |
| 306 | "src/core/statistics/census_rpc_stats.c", |
| 307 | "src/core/statistics/census_tracing.c", |
| 308 | "src/core/statistics/hash_table.c", |
| 309 | "src/core/statistics/window_stats.c", |
| 310 | "src/core/surface/byte_buffer.c", |
| 311 | "src/core/surface/byte_buffer_queue.c", |
| 312 | "src/core/surface/byte_buffer_reader.c", |
| 313 | "src/core/surface/call.c", |
| 314 | "src/core/surface/call_details.c", |
| 315 | "src/core/surface/call_log_batch.c", |
| 316 | "src/core/surface/channel.c", |
| 317 | "src/core/surface/channel_create.c", |
| 318 | "src/core/surface/client.c", |
| 319 | "src/core/surface/completion_queue.c", |
| 320 | "src/core/surface/event_string.c", |
| 321 | "src/core/surface/init.c", |
| 322 | "src/core/surface/lame_client.c", |
| 323 | "src/core/surface/metadata_array.c", |
| 324 | "src/core/surface/server.c", |
| 325 | "src/core/surface/server_chttp2.c", |
| 326 | "src/core/surface/server_create.c", |
| 327 | "src/core/surface/surface_trace.c", |
| 328 | "src/core/transport/chttp2/alpn.c", |
| 329 | "src/core/transport/chttp2/bin_encoder.c", |
| 330 | "src/core/transport/chttp2/frame_data.c", |
| 331 | "src/core/transport/chttp2/frame_goaway.c", |
| 332 | "src/core/transport/chttp2/frame_ping.c", |
| 333 | "src/core/transport/chttp2/frame_rst_stream.c", |
| 334 | "src/core/transport/chttp2/frame_settings.c", |
| 335 | "src/core/transport/chttp2/frame_window_update.c", |
| 336 | "src/core/transport/chttp2/hpack_parser.c", |
| 337 | "src/core/transport/chttp2/hpack_table.c", |
| 338 | "src/core/transport/chttp2/huffsyms.c", |
| 339 | "src/core/transport/chttp2/status_conversion.c", |
| 340 | "src/core/transport/chttp2/stream_encoder.c", |
| 341 | "src/core/transport/chttp2/stream_map.c", |
| 342 | "src/core/transport/chttp2/timeout_encoding.c", |
| 343 | "src/core/transport/chttp2/varint.c", |
| 344 | "src/core/transport/chttp2_transport.c", |
| 345 | "src/core/transport/metadata.c", |
| 346 | "src/core/transport/stream_op.c", |
| 347 | "src/core/transport/transport.c", |
| 348 | ], |
| 349 | hdrs = [ |
| 350 | "include/grpc/grpc_security.h", |
| 351 | "include/grpc/byte_buffer.h", |
| 352 | "include/grpc/byte_buffer_reader.h", |
| 353 | "include/grpc/grpc.h", |
| 354 | "include/grpc/grpc_http.h", |
| 355 | "include/grpc/status.h", |
| 356 | ], |
| 357 | includes = [ |
| 358 | "include", |
| 359 | ".", |
| 360 | ], |
| 361 | deps = [ |
| 362 | "//external:libssl", |
| 363 | ":gpr", |
| 364 | ], |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 365 | ) |
| 366 | |
| 367 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 368 | cc_library( |
| 369 | name = "grpc_unsecure", |
| 370 | srcs = [ |
| 371 | "src/core/channel/census_filter.h", |
| 372 | "src/core/channel/channel_args.h", |
| 373 | "src/core/channel/channel_stack.h", |
| 374 | "src/core/channel/child_channel.h", |
| 375 | "src/core/channel/client_channel.h", |
| 376 | "src/core/channel/client_setup.h", |
| 377 | "src/core/channel/connected_channel.h", |
| 378 | "src/core/channel/http_client_filter.h", |
| 379 | "src/core/channel/http_filter.h", |
| 380 | "src/core/channel/http_server_filter.h", |
| 381 | "src/core/channel/metadata_buffer.h", |
| 382 | "src/core/channel/noop_filter.h", |
| 383 | "src/core/compression/algorithm.h", |
| 384 | "src/core/compression/message_compress.h", |
| 385 | "src/core/debug/trace.h", |
| 386 | "src/core/iomgr/alarm.h", |
| 387 | "src/core/iomgr/alarm_heap.h", |
| 388 | "src/core/iomgr/alarm_internal.h", |
| 389 | "src/core/iomgr/endpoint.h", |
| 390 | "src/core/iomgr/endpoint_pair.h", |
| 391 | "src/core/iomgr/fd_posix.h", |
| 392 | "src/core/iomgr/iocp_windows.h", |
| 393 | "src/core/iomgr/iomgr.h", |
| 394 | "src/core/iomgr/iomgr_internal.h", |
| 395 | "src/core/iomgr/iomgr_posix.h", |
| 396 | "src/core/iomgr/pollset.h", |
| 397 | "src/core/iomgr/pollset_kick.h", |
| 398 | "src/core/iomgr/pollset_kick_posix.h", |
| 399 | "src/core/iomgr/pollset_kick_windows.h", |
| 400 | "src/core/iomgr/pollset_posix.h", |
| 401 | "src/core/iomgr/pollset_windows.h", |
| 402 | "src/core/iomgr/resolve_address.h", |
| 403 | "src/core/iomgr/sockaddr.h", |
| 404 | "src/core/iomgr/sockaddr_posix.h", |
| 405 | "src/core/iomgr/sockaddr_utils.h", |
| 406 | "src/core/iomgr/sockaddr_win32.h", |
| 407 | "src/core/iomgr/socket_utils_posix.h", |
| 408 | "src/core/iomgr/socket_windows.h", |
| 409 | "src/core/iomgr/tcp_client.h", |
| 410 | "src/core/iomgr/tcp_posix.h", |
| 411 | "src/core/iomgr/tcp_server.h", |
| 412 | "src/core/iomgr/tcp_windows.h", |
| 413 | "src/core/iomgr/time_averaged_stats.h", |
| 414 | "src/core/iomgr/wakeup_fd_pipe.h", |
| 415 | "src/core/iomgr/wakeup_fd_posix.h", |
| 416 | "src/core/json/json.h", |
| 417 | "src/core/json/json_common.h", |
| 418 | "src/core/json/json_reader.h", |
| 419 | "src/core/json/json_writer.h", |
Vijay Pai | 6dfa7e6 | 2015-04-13 10:41:40 -0700 | [diff] [blame] | 420 | "src/core/profiling/timers.h", |
Vijay Pai | 9cccb08 | 2015-04-13 13:04:06 -0700 | [diff] [blame] | 421 | "src/core/profiling/timers_preciseclock.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 422 | "src/core/statistics/census_interface.h", |
| 423 | "src/core/statistics/census_log.h", |
| 424 | "src/core/statistics/census_rpc_stats.h", |
| 425 | "src/core/statistics/census_tracing.h", |
| 426 | "src/core/statistics/hash_table.h", |
| 427 | "src/core/statistics/window_stats.h", |
| 428 | "src/core/surface/byte_buffer_queue.h", |
| 429 | "src/core/surface/call.h", |
| 430 | "src/core/surface/channel.h", |
| 431 | "src/core/surface/client.h", |
| 432 | "src/core/surface/completion_queue.h", |
| 433 | "src/core/surface/event_string.h", |
| 434 | "src/core/surface/init.h", |
| 435 | "src/core/surface/server.h", |
| 436 | "src/core/surface/surface_trace.h", |
| 437 | "src/core/transport/chttp2/alpn.h", |
| 438 | "src/core/transport/chttp2/bin_encoder.h", |
| 439 | "src/core/transport/chttp2/frame.h", |
| 440 | "src/core/transport/chttp2/frame_data.h", |
| 441 | "src/core/transport/chttp2/frame_goaway.h", |
| 442 | "src/core/transport/chttp2/frame_ping.h", |
| 443 | "src/core/transport/chttp2/frame_rst_stream.h", |
| 444 | "src/core/transport/chttp2/frame_settings.h", |
| 445 | "src/core/transport/chttp2/frame_window_update.h", |
| 446 | "src/core/transport/chttp2/hpack_parser.h", |
| 447 | "src/core/transport/chttp2/hpack_table.h", |
| 448 | "src/core/transport/chttp2/http2_errors.h", |
| 449 | "src/core/transport/chttp2/huffsyms.h", |
| 450 | "src/core/transport/chttp2/status_conversion.h", |
| 451 | "src/core/transport/chttp2/stream_encoder.h", |
| 452 | "src/core/transport/chttp2/stream_map.h", |
| 453 | "src/core/transport/chttp2/timeout_encoding.h", |
| 454 | "src/core/transport/chttp2/varint.h", |
| 455 | "src/core/transport/chttp2_transport.h", |
| 456 | "src/core/transport/metadata.h", |
| 457 | "src/core/transport/stream_op.h", |
| 458 | "src/core/transport/transport.h", |
| 459 | "src/core/transport/transport_impl.h", |
| 460 | "src/core/surface/init_unsecure.c", |
| 461 | "src/core/channel/call_op_string.c", |
| 462 | "src/core/channel/census_filter.c", |
| 463 | "src/core/channel/channel_args.c", |
| 464 | "src/core/channel/channel_stack.c", |
| 465 | "src/core/channel/child_channel.c", |
| 466 | "src/core/channel/client_channel.c", |
| 467 | "src/core/channel/client_setup.c", |
| 468 | "src/core/channel/connected_channel.c", |
| 469 | "src/core/channel/http_client_filter.c", |
| 470 | "src/core/channel/http_filter.c", |
| 471 | "src/core/channel/http_server_filter.c", |
| 472 | "src/core/channel/metadata_buffer.c", |
| 473 | "src/core/channel/noop_filter.c", |
| 474 | "src/core/compression/algorithm.c", |
| 475 | "src/core/compression/message_compress.c", |
| 476 | "src/core/debug/trace.c", |
| 477 | "src/core/iomgr/alarm.c", |
| 478 | "src/core/iomgr/alarm_heap.c", |
| 479 | "src/core/iomgr/endpoint.c", |
| 480 | "src/core/iomgr/endpoint_pair_posix.c", |
Craig Tiller | d180e03 | 2015-04-13 10:10:07 -0700 | [diff] [blame] | 481 | "src/core/iomgr/endpoint_pair_windows.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 482 | "src/core/iomgr/fd_posix.c", |
| 483 | "src/core/iomgr/iocp_windows.c", |
| 484 | "src/core/iomgr/iomgr.c", |
| 485 | "src/core/iomgr/iomgr_posix.c", |
| 486 | "src/core/iomgr/iomgr_windows.c", |
| 487 | "src/core/iomgr/pollset_kick.c", |
| 488 | "src/core/iomgr/pollset_multipoller_with_epoll.c", |
| 489 | "src/core/iomgr/pollset_multipoller_with_poll_posix.c", |
| 490 | "src/core/iomgr/pollset_posix.c", |
| 491 | "src/core/iomgr/pollset_windows.c", |
| 492 | "src/core/iomgr/resolve_address_posix.c", |
| 493 | "src/core/iomgr/resolve_address_windows.c", |
| 494 | "src/core/iomgr/sockaddr_utils.c", |
| 495 | "src/core/iomgr/socket_utils_common_posix.c", |
| 496 | "src/core/iomgr/socket_utils_linux.c", |
| 497 | "src/core/iomgr/socket_utils_posix.c", |
| 498 | "src/core/iomgr/socket_windows.c", |
| 499 | "src/core/iomgr/tcp_client_posix.c", |
| 500 | "src/core/iomgr/tcp_client_windows.c", |
| 501 | "src/core/iomgr/tcp_posix.c", |
| 502 | "src/core/iomgr/tcp_server_posix.c", |
| 503 | "src/core/iomgr/tcp_server_windows.c", |
| 504 | "src/core/iomgr/tcp_windows.c", |
| 505 | "src/core/iomgr/time_averaged_stats.c", |
| 506 | "src/core/iomgr/wakeup_fd_eventfd.c", |
| 507 | "src/core/iomgr/wakeup_fd_nospecial.c", |
| 508 | "src/core/iomgr/wakeup_fd_pipe.c", |
| 509 | "src/core/iomgr/wakeup_fd_posix.c", |
| 510 | "src/core/json/json.c", |
| 511 | "src/core/json/json_reader.c", |
| 512 | "src/core/json/json_string.c", |
| 513 | "src/core/json/json_writer.c", |
Vijay Pai | 6dfa7e6 | 2015-04-13 10:41:40 -0700 | [diff] [blame] | 514 | "src/core/profiling/timers.c", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 515 | "src/core/statistics/census_init.c", |
| 516 | "src/core/statistics/census_log.c", |
| 517 | "src/core/statistics/census_rpc_stats.c", |
| 518 | "src/core/statistics/census_tracing.c", |
| 519 | "src/core/statistics/hash_table.c", |
| 520 | "src/core/statistics/window_stats.c", |
| 521 | "src/core/surface/byte_buffer.c", |
| 522 | "src/core/surface/byte_buffer_queue.c", |
| 523 | "src/core/surface/byte_buffer_reader.c", |
| 524 | "src/core/surface/call.c", |
| 525 | "src/core/surface/call_details.c", |
| 526 | "src/core/surface/call_log_batch.c", |
| 527 | "src/core/surface/channel.c", |
| 528 | "src/core/surface/channel_create.c", |
| 529 | "src/core/surface/client.c", |
| 530 | "src/core/surface/completion_queue.c", |
| 531 | "src/core/surface/event_string.c", |
| 532 | "src/core/surface/init.c", |
| 533 | "src/core/surface/lame_client.c", |
| 534 | "src/core/surface/metadata_array.c", |
| 535 | "src/core/surface/server.c", |
| 536 | "src/core/surface/server_chttp2.c", |
| 537 | "src/core/surface/server_create.c", |
| 538 | "src/core/surface/surface_trace.c", |
| 539 | "src/core/transport/chttp2/alpn.c", |
| 540 | "src/core/transport/chttp2/bin_encoder.c", |
| 541 | "src/core/transport/chttp2/frame_data.c", |
| 542 | "src/core/transport/chttp2/frame_goaway.c", |
| 543 | "src/core/transport/chttp2/frame_ping.c", |
| 544 | "src/core/transport/chttp2/frame_rst_stream.c", |
| 545 | "src/core/transport/chttp2/frame_settings.c", |
| 546 | "src/core/transport/chttp2/frame_window_update.c", |
| 547 | "src/core/transport/chttp2/hpack_parser.c", |
| 548 | "src/core/transport/chttp2/hpack_table.c", |
| 549 | "src/core/transport/chttp2/huffsyms.c", |
| 550 | "src/core/transport/chttp2/status_conversion.c", |
| 551 | "src/core/transport/chttp2/stream_encoder.c", |
| 552 | "src/core/transport/chttp2/stream_map.c", |
| 553 | "src/core/transport/chttp2/timeout_encoding.c", |
| 554 | "src/core/transport/chttp2/varint.c", |
| 555 | "src/core/transport/chttp2_transport.c", |
| 556 | "src/core/transport/metadata.c", |
| 557 | "src/core/transport/stream_op.c", |
| 558 | "src/core/transport/transport.c", |
| 559 | ], |
| 560 | hdrs = [ |
| 561 | "include/grpc/byte_buffer.h", |
| 562 | "include/grpc/byte_buffer_reader.h", |
| 563 | "include/grpc/grpc.h", |
| 564 | "include/grpc/grpc_http.h", |
| 565 | "include/grpc/status.h", |
| 566 | ], |
| 567 | includes = [ |
| 568 | "include", |
| 569 | ".", |
| 570 | ], |
| 571 | deps = [ |
| 572 | ":gpr", |
| 573 | ], |
| 574 | ) |
| 575 | |
| 576 | |
| 577 | cc_library( |
| 578 | name = "grpc++", |
| 579 | srcs = [ |
| 580 | "src/cpp/client/secure_credentials.h", |
| 581 | "src/cpp/server/secure_server_credentials.h", |
| 582 | "src/cpp/client/channel.h", |
| 583 | "src/cpp/proto/proto_utils.h", |
| 584 | "src/cpp/server/thread_pool.h", |
| 585 | "src/cpp/util/time.h", |
| 586 | "src/cpp/client/secure_credentials.cc", |
| 587 | "src/cpp/server/secure_server_credentials.cc", |
| 588 | "src/cpp/client/channel.cc", |
| 589 | "src/cpp/client/channel_arguments.cc", |
| 590 | "src/cpp/client/client_context.cc", |
| 591 | "src/cpp/client/client_unary_call.cc", |
| 592 | "src/cpp/client/create_channel.cc", |
| 593 | "src/cpp/client/credentials.cc", |
| 594 | "src/cpp/client/generic_stub.cc", |
| 595 | "src/cpp/client/insecure_credentials.cc", |
| 596 | "src/cpp/client/internal_stub.cc", |
| 597 | "src/cpp/common/call.cc", |
| 598 | "src/cpp/common/completion_queue.cc", |
| 599 | "src/cpp/common/rpc_method.cc", |
| 600 | "src/cpp/proto/proto_utils.cc", |
| 601 | "src/cpp/server/async_generic_service.cc", |
| 602 | "src/cpp/server/insecure_server_credentials.cc", |
| 603 | "src/cpp/server/server.cc", |
| 604 | "src/cpp/server/server_builder.cc", |
| 605 | "src/cpp/server/server_context.cc", |
| 606 | "src/cpp/server/server_credentials.cc", |
| 607 | "src/cpp/server/thread_pool.cc", |
| 608 | "src/cpp/util/byte_buffer.cc", |
| 609 | "src/cpp/util/slice.cc", |
| 610 | "src/cpp/util/status.cc", |
| 611 | "src/cpp/util/time.cc", |
| 612 | ], |
| 613 | hdrs = [ |
| 614 | "include/grpc++/async_generic_service.h", |
| 615 | "include/grpc++/async_unary_call.h", |
| 616 | "include/grpc++/byte_buffer.h", |
| 617 | "include/grpc++/channel_arguments.h", |
| 618 | "include/grpc++/channel_interface.h", |
| 619 | "include/grpc++/client_context.h", |
| 620 | "include/grpc++/completion_queue.h", |
| 621 | "include/grpc++/config.h", |
| 622 | "include/grpc++/create_channel.h", |
| 623 | "include/grpc++/credentials.h", |
| 624 | "include/grpc++/generic_stub.h", |
| 625 | "include/grpc++/impl/call.h", |
| 626 | "include/grpc++/impl/client_unary_call.h", |
| 627 | "include/grpc++/impl/internal_stub.h", |
| 628 | "include/grpc++/impl/rpc_method.h", |
| 629 | "include/grpc++/impl/rpc_service_method.h", |
| 630 | "include/grpc++/impl/service_type.h", |
Yang Gao | b0b518e | 2015-04-13 14:53:25 -0700 | [diff] [blame] | 631 | "include/grpc++/impl/sync.h", |
| 632 | "include/grpc++/impl/sync_cxx11.h", |
| 633 | "include/grpc++/impl/sync_no_cxx11.h", |
| 634 | "include/grpc++/impl/thd.h", |
| 635 | "include/grpc++/impl/thd_cxx11.h", |
| 636 | "include/grpc++/impl/thd_no_cxx11.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 637 | "include/grpc++/server.h", |
| 638 | "include/grpc++/server_builder.h", |
| 639 | "include/grpc++/server_context.h", |
| 640 | "include/grpc++/server_credentials.h", |
| 641 | "include/grpc++/slice.h", |
| 642 | "include/grpc++/status.h", |
| 643 | "include/grpc++/status_code_enum.h", |
| 644 | "include/grpc++/stream.h", |
| 645 | "include/grpc++/thread_pool_interface.h", |
| 646 | ], |
| 647 | includes = [ |
| 648 | "include", |
| 649 | ".", |
| 650 | ], |
| 651 | deps = [ |
| 652 | "//external:protobuf_clib", |
| 653 | ":gpr", |
| 654 | ":grpc", |
| 655 | ], |
| 656 | ) |
| 657 | |
| 658 | |
| 659 | cc_library( |
| 660 | name = "grpc++_unsecure", |
| 661 | srcs = [ |
| 662 | "src/cpp/client/channel.h", |
| 663 | "src/cpp/proto/proto_utils.h", |
| 664 | "src/cpp/server/thread_pool.h", |
| 665 | "src/cpp/util/time.h", |
| 666 | "src/cpp/client/channel.cc", |
| 667 | "src/cpp/client/channel_arguments.cc", |
| 668 | "src/cpp/client/client_context.cc", |
| 669 | "src/cpp/client/client_unary_call.cc", |
| 670 | "src/cpp/client/create_channel.cc", |
| 671 | "src/cpp/client/credentials.cc", |
| 672 | "src/cpp/client/generic_stub.cc", |
| 673 | "src/cpp/client/insecure_credentials.cc", |
| 674 | "src/cpp/client/internal_stub.cc", |
| 675 | "src/cpp/common/call.cc", |
| 676 | "src/cpp/common/completion_queue.cc", |
| 677 | "src/cpp/common/rpc_method.cc", |
| 678 | "src/cpp/proto/proto_utils.cc", |
| 679 | "src/cpp/server/async_generic_service.cc", |
| 680 | "src/cpp/server/insecure_server_credentials.cc", |
| 681 | "src/cpp/server/server.cc", |
| 682 | "src/cpp/server/server_builder.cc", |
| 683 | "src/cpp/server/server_context.cc", |
| 684 | "src/cpp/server/server_credentials.cc", |
| 685 | "src/cpp/server/thread_pool.cc", |
| 686 | "src/cpp/util/byte_buffer.cc", |
| 687 | "src/cpp/util/slice.cc", |
| 688 | "src/cpp/util/status.cc", |
| 689 | "src/cpp/util/time.cc", |
| 690 | ], |
| 691 | hdrs = [ |
| 692 | "include/grpc++/async_generic_service.h", |
| 693 | "include/grpc++/async_unary_call.h", |
| 694 | "include/grpc++/byte_buffer.h", |
| 695 | "include/grpc++/channel_arguments.h", |
| 696 | "include/grpc++/channel_interface.h", |
| 697 | "include/grpc++/client_context.h", |
| 698 | "include/grpc++/completion_queue.h", |
| 699 | "include/grpc++/config.h", |
| 700 | "include/grpc++/create_channel.h", |
| 701 | "include/grpc++/credentials.h", |
| 702 | "include/grpc++/generic_stub.h", |
| 703 | "include/grpc++/impl/call.h", |
| 704 | "include/grpc++/impl/client_unary_call.h", |
| 705 | "include/grpc++/impl/internal_stub.h", |
| 706 | "include/grpc++/impl/rpc_method.h", |
| 707 | "include/grpc++/impl/rpc_service_method.h", |
| 708 | "include/grpc++/impl/service_type.h", |
Yang Gao | b0b518e | 2015-04-13 14:53:25 -0700 | [diff] [blame] | 709 | "include/grpc++/impl/sync.h", |
| 710 | "include/grpc++/impl/sync_cxx11.h", |
| 711 | "include/grpc++/impl/sync_no_cxx11.h", |
| 712 | "include/grpc++/impl/thd.h", |
| 713 | "include/grpc++/impl/thd_cxx11.h", |
| 714 | "include/grpc++/impl/thd_no_cxx11.h", |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 715 | "include/grpc++/server.h", |
| 716 | "include/grpc++/server_builder.h", |
| 717 | "include/grpc++/server_context.h", |
| 718 | "include/grpc++/server_credentials.h", |
| 719 | "include/grpc++/slice.h", |
| 720 | "include/grpc++/status.h", |
| 721 | "include/grpc++/status_code_enum.h", |
| 722 | "include/grpc++/stream.h", |
| 723 | "include/grpc++/thread_pool_interface.h", |
| 724 | ], |
| 725 | includes = [ |
| 726 | "include", |
| 727 | ".", |
| 728 | ], |
| 729 | deps = [ |
| 730 | "//external:protobuf_clib", |
| 731 | ":gpr", |
| 732 | ":grpc_unsecure", |
| 733 | ], |
| 734 | ) |
| 735 | |
| 736 | |
| 737 | cc_library( |
| 738 | name = "grpc_plugin_support", |
| 739 | srcs = [ |
| 740 | "src/compiler/config.h", |
| 741 | "src/compiler/cpp_generator.h", |
| 742 | "src/compiler/cpp_generator_helpers.h", |
| 743 | "src/compiler/generator_helpers.h", |
| 744 | "src/compiler/objective_c_generator.h", |
| 745 | "src/compiler/objective_c_generator_helpers.h", |
| 746 | "src/compiler/python_generator.h", |
| 747 | "src/compiler/ruby_generator.h", |
| 748 | "src/compiler/ruby_generator_helpers-inl.h", |
| 749 | "src/compiler/ruby_generator_map-inl.h", |
| 750 | "src/compiler/ruby_generator_string-inl.h", |
| 751 | "src/compiler/cpp_generator.cc", |
| 752 | "src/compiler/objective_c_generator.cc", |
| 753 | "src/compiler/python_generator.cc", |
| 754 | "src/compiler/ruby_generator.cc", |
| 755 | ], |
| 756 | hdrs = [ |
| 757 | ], |
| 758 | includes = [ |
| 759 | "include", |
| 760 | ".", |
| 761 | ], |
| 762 | deps = [ |
| 763 | "//external:protobuf_compiler", |
| 764 | ], |
| 765 | ) |
| 766 | |
| 767 | |
| 768 | cc_library( |
Yang Gao | 084ef52 | 2015-04-15 11:34:15 -0700 | [diff] [blame] | 769 | name = "pubsub_client_lib", |
| 770 | srcs = [ |
| 771 | "examples/pubsub/label.proto", |
| 772 | "examples/pubsub/empty.proto", |
| 773 | "examples/pubsub/pubsub.proto", |
| 774 | "examples/pubsub/publisher.cc", |
| 775 | "examples/pubsub/subscriber.cc", |
| 776 | ], |
| 777 | hdrs = [ |
| 778 | ], |
| 779 | includes = [ |
| 780 | "include", |
| 781 | ".", |
| 782 | ], |
| 783 | deps = [ |
| 784 | ":grpc++", |
| 785 | ":grpc", |
| 786 | ":gpr", |
| 787 | ], |
| 788 | ) |
| 789 | |
| 790 | |
| 791 | cc_library( |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 792 | name = "grpc_csharp_ext", |
| 793 | srcs = [ |
| 794 | "src/csharp/ext/grpc_csharp_ext.c", |
| 795 | ], |
| 796 | hdrs = [ |
| 797 | ], |
| 798 | includes = [ |
| 799 | "include", |
| 800 | ".", |
| 801 | ], |
| 802 | deps = [ |
| 803 | ":gpr", |
| 804 | ":grpc", |
| 805 | ], |
| 806 | ) |
| 807 | |
| 808 | |
| 809 | |
| 810 | cc_binary( |
| 811 | name = "grpc_cpp_plugin", |
| 812 | srcs = [ |
| 813 | "src/compiler/cpp_plugin.cc", |
| 814 | ], |
| 815 | deps = [ |
| 816 | "//external:protobuf_compiler", |
| 817 | ":grpc_plugin_support", |
| 818 | ], |
| 819 | ) |
| 820 | |
| 821 | |
| 822 | cc_binary( |
| 823 | name = "grpc_objective_c_plugin", |
| 824 | srcs = [ |
| 825 | "src/compiler/objective_c_plugin.cc", |
| 826 | ], |
| 827 | deps = [ |
| 828 | "//external:protobuf_compiler", |
| 829 | ":grpc_plugin_support", |
| 830 | ], |
| 831 | ) |
| 832 | |
| 833 | |
| 834 | cc_binary( |
| 835 | name = "grpc_python_plugin", |
| 836 | srcs = [ |
| 837 | "src/compiler/python_plugin.cc", |
| 838 | ], |
| 839 | deps = [ |
| 840 | "//external:protobuf_compiler", |
| 841 | ":grpc_plugin_support", |
| 842 | ], |
| 843 | ) |
| 844 | |
| 845 | |
| 846 | cc_binary( |
| 847 | name = "grpc_ruby_plugin", |
| 848 | srcs = [ |
| 849 | "src/compiler/ruby_plugin.cc", |
| 850 | ], |
| 851 | deps = [ |
| 852 | "//external:protobuf_compiler", |
| 853 | ":grpc_plugin_support", |
| 854 | ], |
| 855 | ) |
| 856 | |
| 857 | |
| 858 | |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 859 | |
| 860 | |