Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 1 | # gRPC Bazel BUILD file. |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 2 | # |
| 3 | # Copyright 2016, Google Inc. |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 4 | # All rights reserved. |
| 5 | # |
| 6 | # Redistribution and use in source and binary forms, with or without |
| 7 | # modification, are permitted provided that the following conditions are |
| 8 | # met: |
| 9 | # |
| 10 | # * Redistributions of source code must retain the above copyright |
| 11 | # notice, this list of conditions and the following disclaimer. |
| 12 | # * Redistributions in binary form must reproduce the above |
| 13 | # copyright notice, this list of conditions and the following disclaimer |
| 14 | # in the documentation and/or other materials provided with the |
| 15 | # distribution. |
| 16 | # * Neither the name of Google Inc. nor the names of its |
| 17 | # contributors may be used to endorse or promote products derived from |
| 18 | # this software without specific prior written permission. |
| 19 | # |
| 20 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 21 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 22 | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 23 | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 24 | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 25 | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 26 | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | |
| 32 | licenses(["notice"]) # 3-clause BSD |
| 33 | |
Piotr Sikora | 12e26a7 | 2016-08-04 15:32:10 -0700 | [diff] [blame] | 34 | exports_files(["LICENSE"]) |
| 35 | |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 36 | package(default_visibility = ["//visibility:public"]) |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 37 | |
Nicolas "Pixel" Noble | 799bd5e | 2016-10-21 01:54:32 +0200 | [diff] [blame] | 38 | load("//bazel:grpc_build_system.bzl", "grpc_cc_library", "grpc_proto_plugin") |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 39 | |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 40 | g_stands_for = "good" |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 41 | |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 42 | core_version = "2.0.0-dev" |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 43 | |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 44 | version = "1.1.0-dev" |
Rob Earhart | b7b8d05 | 2016-03-29 11:35:29 -0700 | [diff] [blame] | 45 | |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 46 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 47 | name = "gpr", |
| 48 | language = "c", |
| 49 | standalone = True, |
| 50 | deps = [ |
| 51 | "gpr_base", |
| 52 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 53 | ) |
| 54 | |
| 55 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 56 | name = "grpc", |
| 57 | srcs = [ |
| 58 | "src/core/lib/surface/init.c", |
| 59 | "src/core/plugin_registry/grpc_plugin_registry.c", |
| 60 | ], |
| 61 | language = "c", |
| 62 | standalone = True, |
| 63 | deps = [ |
| 64 | "census", |
| 65 | "grpc_base", |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 66 | "grpc_lb_policy_grpclb_secure", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 67 | "grpc_lb_policy_pick_first", |
| 68 | "grpc_lb_policy_round_robin", |
| 69 | "grpc_load_reporting", |
| 70 | "grpc_resolver_dns_native", |
| 71 | "grpc_resolver_sockaddr", |
| 72 | "grpc_secure", |
| 73 | "grpc_transport_chttp2_client_insecure", |
| 74 | "grpc_transport_chttp2_client_secure", |
| 75 | "grpc_transport_chttp2_server_insecure", |
| 76 | "grpc_transport_chttp2_server_secure", |
| 77 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 78 | ) |
| 79 | |
| 80 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 81 | name = "grpc_cronet", |
| 82 | srcs = [ |
| 83 | "src/core/lib/surface/init.c", |
| 84 | "src/core/plugin_registry/grpc_cronet_plugin_registry.c", |
| 85 | ], |
| 86 | language = "c", |
| 87 | deps = [ |
| 88 | "grpc_base", |
| 89 | "grpc_transport_chttp2_client_secure", |
| 90 | "grpc_transport_cronet_client_secure", |
| 91 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 92 | ) |
| 93 | |
| 94 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 95 | name = "grpc_unsecure", |
| 96 | srcs = [ |
| 97 | "src/core/lib/surface/init.c", |
| 98 | "src/core/lib/surface/init_unsecure.c", |
| 99 | "src/core/plugin_registry/grpc_unsecure_plugin_registry.c", |
| 100 | ], |
| 101 | language = "c", |
| 102 | standalone = True, |
| 103 | deps = [ |
| 104 | "census", |
| 105 | "grpc_base", |
| 106 | "grpc_lb_policy_grpclb", |
| 107 | "grpc_lb_policy_pick_first", |
| 108 | "grpc_lb_policy_round_robin", |
| 109 | "grpc_load_reporting", |
| 110 | "grpc_resolver_dns_native", |
| 111 | "grpc_resolver_sockaddr", |
| 112 | "grpc_transport_chttp2_client_insecure", |
| 113 | "grpc_transport_chttp2_server_insecure", |
| 114 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 115 | ) |
| 116 | |
| 117 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 118 | name = "grpc++", |
| 119 | srcs = [ |
| 120 | "src/cpp/client/insecure_credentials.cc", |
| 121 | "src/cpp/client/secure_credentials.cc", |
| 122 | "src/cpp/common/auth_property_iterator.cc", |
| 123 | "src/cpp/common/secure_auth_context.cc", |
| 124 | "src/cpp/common/secure_channel_arguments.cc", |
| 125 | "src/cpp/common/secure_create_auth_context.cc", |
| 126 | "src/cpp/server/insecure_server_credentials.cc", |
| 127 | "src/cpp/server/secure_server_credentials.cc", |
| 128 | ], |
| 129 | hdrs = [ |
| 130 | "include/grpc++/impl/codegen/core_codegen.h", |
| 131 | "src/cpp/client/secure_credentials.h", |
| 132 | "src/cpp/common/secure_auth_context.h", |
| 133 | "src/cpp/server/secure_server_credentials.h", |
| 134 | ], |
| 135 | language = "c++", |
| 136 | standalone = True, |
| 137 | deps = [ |
| 138 | "gpr", |
| 139 | "grpc", |
| 140 | "grpc++_base", |
| 141 | "grpc++_codegen_base", |
| 142 | "grpc++_codegen_base_src", |
Jan Tattermusch | aead5aa | 2017-02-10 11:00:29 -0800 | [diff] [blame] | 143 | "grpc++_codegen_proto", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 144 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 145 | ) |
| 146 | |
| 147 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 148 | name = "grpc++_unsecure", |
| 149 | srcs = [ |
| 150 | "src/cpp/client/insecure_credentials.cc", |
| 151 | "src/cpp/common/insecure_create_auth_context.cc", |
| 152 | "src/cpp/server/insecure_server_credentials.cc", |
| 153 | ], |
| 154 | language = "c++", |
| 155 | standalone = True, |
| 156 | deps = [ |
| 157 | "gpr", |
| 158 | "grpc++_base", |
| 159 | "grpc++_codegen_base", |
| 160 | "grpc++_codegen_base_src", |
| 161 | "grpc_unsecure", |
| 162 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 163 | ) |
| 164 | |
| 165 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 166 | name = "grpc_plugin_support", |
| 167 | srcs = [ |
| 168 | "src/compiler/cpp_generator.cc", |
| 169 | "src/compiler/csharp_generator.cc", |
| 170 | "src/compiler/node_generator.cc", |
| 171 | "src/compiler/objective_c_generator.cc", |
| 172 | "src/compiler/php_generator.cc", |
| 173 | "src/compiler/python_generator.cc", |
| 174 | "src/compiler/ruby_generator.cc", |
| 175 | ], |
| 176 | hdrs = [ |
| 177 | "src/compiler/config.h", |
| 178 | "src/compiler/cpp_generator.h", |
| 179 | "src/compiler/cpp_generator_helpers.h", |
| 180 | "src/compiler/csharp_generator.h", |
| 181 | "src/compiler/csharp_generator_helpers.h", |
| 182 | "src/compiler/generator_helpers.h", |
| 183 | "src/compiler/node_generator.h", |
| 184 | "src/compiler/node_generator_helpers.h", |
| 185 | "src/compiler/objective_c_generator.h", |
| 186 | "src/compiler/objective_c_generator_helpers.h", |
| 187 | "src/compiler/php_generator.h", |
| 188 | "src/compiler/php_generator_helpers.h", |
| 189 | "src/compiler/python_generator.h", |
| 190 | "src/compiler/ruby_generator.h", |
| 191 | "src/compiler/ruby_generator_helpers-inl.h", |
| 192 | "src/compiler/ruby_generator_map-inl.h", |
| 193 | "src/compiler/ruby_generator_string-inl.h", |
| 194 | ], |
| 195 | external_deps = [ |
Nicolas "Pixel" Noble | 4dc6431 | 2016-10-20 23:07:37 +0200 | [diff] [blame] | 196 | "protobuf_clib", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 197 | ], |
| 198 | language = "c++", |
| 199 | deps = [ |
| 200 | "grpc++_config_proto", |
| 201 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 202 | ) |
| 203 | |
Nicolas "Pixel" Noble | 4dc6431 | 2016-10-20 23:07:37 +0200 | [diff] [blame] | 204 | grpc_proto_plugin( |
| 205 | name = "grpc_cpp_plugin", |
| 206 | srcs = ["src/compiler/cpp_plugin.cc"], |
| 207 | deps = [":grpc_plugin_support"], |
| 208 | ) |
| 209 | |
| 210 | grpc_proto_plugin( |
| 211 | name = "grpc_csharp_plugin", |
| 212 | srcs = ["src/compiler/csharp_plugin.cc"], |
| 213 | deps = [":grpc_plugin_support"], |
| 214 | ) |
| 215 | |
| 216 | grpc_proto_plugin( |
| 217 | name = "grpc_node_plugin", |
| 218 | srcs = ["src/compiler/node_plugin.cc"], |
| 219 | deps = [":grpc_plugin_support"], |
| 220 | ) |
| 221 | |
| 222 | grpc_proto_plugin( |
| 223 | name = "grpc_objective_c_plugin", |
| 224 | srcs = ["src/compiler/objective_c_plugin.cc"], |
| 225 | deps = [":grpc_plugin_support"], |
| 226 | ) |
| 227 | |
| 228 | grpc_proto_plugin( |
| 229 | name = "grpc_php_plugin", |
| 230 | srcs = ["src/compiler/php_plugin.cc"], |
| 231 | deps = [":grpc_plugin_support"], |
| 232 | ) |
| 233 | |
| 234 | grpc_proto_plugin( |
| 235 | name = "grpc_python_plugin", |
| 236 | srcs = ["src/compiler/python_plugin.cc"], |
| 237 | deps = [":grpc_plugin_support"], |
| 238 | ) |
| 239 | |
| 240 | grpc_proto_plugin( |
| 241 | name = "grpc_ruby_plugin", |
| 242 | srcs = ["src/compiler/ruby_plugin.cc"], |
| 243 | deps = [":grpc_plugin_support"], |
| 244 | ) |
| 245 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 246 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 247 | name = "grpc_csharp_ext", |
| 248 | srcs = [ |
| 249 | "src/csharp/ext/grpc_csharp_ext.c", |
| 250 | ], |
| 251 | language = "csharp", |
| 252 | deps = [ |
| 253 | "gpr", |
| 254 | "grpc", |
| 255 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 256 | ) |
| 257 | |
| 258 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 259 | name = "census", |
| 260 | srcs = [ |
| 261 | "src/core/ext/census/base_resources.c", |
| 262 | "src/core/ext/census/context.c", |
| 263 | "src/core/ext/census/gen/census.pb.c", |
| 264 | "src/core/ext/census/gen/trace_context.pb.c", |
| 265 | "src/core/ext/census/grpc_context.c", |
| 266 | "src/core/ext/census/grpc_filter.c", |
| 267 | "src/core/ext/census/grpc_plugin.c", |
| 268 | "src/core/ext/census/initialize.c", |
| 269 | "src/core/ext/census/mlog.c", |
| 270 | "src/core/ext/census/operation.c", |
| 271 | "src/core/ext/census/placeholders.c", |
| 272 | "src/core/ext/census/resource.c", |
| 273 | "src/core/ext/census/trace_context.c", |
| 274 | "src/core/ext/census/tracing.c", |
| 275 | ], |
| 276 | hdrs = [ |
| 277 | "src/core/ext/census/aggregation.h", |
| 278 | "src/core/ext/census/base_resources.h", |
| 279 | "src/core/ext/census/census_interface.h", |
| 280 | "src/core/ext/census/census_rpc_stats.h", |
| 281 | "src/core/ext/census/gen/census.pb.h", |
| 282 | "src/core/ext/census/gen/trace_context.pb.h", |
| 283 | "src/core/ext/census/grpc_filter.h", |
| 284 | "src/core/ext/census/mlog.h", |
| 285 | "src/core/ext/census/resource.h", |
| 286 | "src/core/ext/census/rpc_metric_id.h", |
| 287 | "src/core/ext/census/trace_context.h", |
Vizerai | 2b93983 | 2017-01-19 13:12:11 -0800 | [diff] [blame] | 288 | "src/core/ext/census/trace_label.h", |
| 289 | "src/core/ext/census/trace_propagation.h", |
| 290 | "src/core/ext/census/trace_status.h", |
| 291 | "src/core/ext/census/trace_string.h", |
| 292 | "src/core/ext/census/tracing.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 293 | ], |
| 294 | external_deps = [ |
| 295 | "nanopb", |
Vizerai | b0b86d7 | 2017-01-25 13:45:54 -0800 | [diff] [blame] | 296 | "libssl", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 297 | ], |
| 298 | language = "c", |
| 299 | public_hdrs = [ |
| 300 | "include/grpc/census.h", |
| 301 | ], |
| 302 | deps = [ |
| 303 | "grpc_base", |
| 304 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 305 | ) |
| 306 | |
| 307 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 308 | name = "gpr_base", |
| 309 | srcs = [ |
| 310 | "src/core/lib/profiling/basic_timers.c", |
| 311 | "src/core/lib/profiling/stap_timers.c", |
| 312 | "src/core/lib/support/alloc.c", |
| 313 | "src/core/lib/support/avl.c", |
| 314 | "src/core/lib/support/backoff.c", |
| 315 | "src/core/lib/support/cmdline.c", |
| 316 | "src/core/lib/support/cpu_iphone.c", |
| 317 | "src/core/lib/support/cpu_linux.c", |
| 318 | "src/core/lib/support/cpu_posix.c", |
| 319 | "src/core/lib/support/cpu_windows.c", |
| 320 | "src/core/lib/support/env_linux.c", |
| 321 | "src/core/lib/support/env_posix.c", |
| 322 | "src/core/lib/support/env_windows.c", |
| 323 | "src/core/lib/support/histogram.c", |
| 324 | "src/core/lib/support/host_port.c", |
| 325 | "src/core/lib/support/log.c", |
| 326 | "src/core/lib/support/log_android.c", |
| 327 | "src/core/lib/support/log_linux.c", |
| 328 | "src/core/lib/support/log_posix.c", |
| 329 | "src/core/lib/support/log_windows.c", |
| 330 | "src/core/lib/support/mpscq.c", |
| 331 | "src/core/lib/support/murmur_hash.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 332 | "src/core/lib/support/stack_lockfree.c", |
| 333 | "src/core/lib/support/string.c", |
| 334 | "src/core/lib/support/string_posix.c", |
| 335 | "src/core/lib/support/string_util_windows.c", |
| 336 | "src/core/lib/support/string_windows.c", |
| 337 | "src/core/lib/support/subprocess_posix.c", |
| 338 | "src/core/lib/support/subprocess_windows.c", |
| 339 | "src/core/lib/support/sync.c", |
| 340 | "src/core/lib/support/sync_posix.c", |
| 341 | "src/core/lib/support/sync_windows.c", |
| 342 | "src/core/lib/support/thd.c", |
| 343 | "src/core/lib/support/thd_posix.c", |
| 344 | "src/core/lib/support/thd_windows.c", |
| 345 | "src/core/lib/support/time.c", |
| 346 | "src/core/lib/support/time_posix.c", |
| 347 | "src/core/lib/support/time_precise.c", |
| 348 | "src/core/lib/support/time_windows.c", |
| 349 | "src/core/lib/support/tls_pthread.c", |
| 350 | "src/core/lib/support/tmpfile_msys.c", |
| 351 | "src/core/lib/support/tmpfile_posix.c", |
| 352 | "src/core/lib/support/tmpfile_windows.c", |
| 353 | "src/core/lib/support/wrap_memcpy.c", |
| 354 | ], |
| 355 | hdrs = [ |
| 356 | "src/core/lib/profiling/timers.h", |
| 357 | "src/core/lib/support/backoff.h", |
| 358 | "src/core/lib/support/block_annotate.h", |
| 359 | "src/core/lib/support/env.h", |
| 360 | "src/core/lib/support/mpscq.h", |
| 361 | "src/core/lib/support/murmur_hash.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 362 | "src/core/lib/support/stack_lockfree.h", |
| 363 | "src/core/lib/support/string.h", |
| 364 | "src/core/lib/support/string_windows.h", |
| 365 | "src/core/lib/support/thd_internal.h", |
| 366 | "src/core/lib/support/time_precise.h", |
| 367 | "src/core/lib/support/tmpfile.h", |
| 368 | ], |
| 369 | language = "c", |
| 370 | public_hdrs = [ |
| 371 | "include/grpc/support/alloc.h", |
| 372 | "include/grpc/support/atm.h", |
| 373 | "include/grpc/support/atm_gcc_atomic.h", |
| 374 | "include/grpc/support/atm_gcc_sync.h", |
| 375 | "include/grpc/support/atm_windows.h", |
| 376 | "include/grpc/support/avl.h", |
| 377 | "include/grpc/support/cmdline.h", |
| 378 | "include/grpc/support/cpu.h", |
| 379 | "include/grpc/support/histogram.h", |
| 380 | "include/grpc/support/host_port.h", |
| 381 | "include/grpc/support/log.h", |
| 382 | "include/grpc/support/log_windows.h", |
| 383 | "include/grpc/support/port_platform.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 384 | "include/grpc/support/string_util.h", |
| 385 | "include/grpc/support/subprocess.h", |
| 386 | "include/grpc/support/sync.h", |
| 387 | "include/grpc/support/sync_generic.h", |
| 388 | "include/grpc/support/sync_posix.h", |
| 389 | "include/grpc/support/sync_windows.h", |
| 390 | "include/grpc/support/thd.h", |
| 391 | "include/grpc/support/time.h", |
| 392 | "include/grpc/support/tls.h", |
| 393 | "include/grpc/support/tls_gcc.h", |
| 394 | "include/grpc/support/tls_msvc.h", |
| 395 | "include/grpc/support/tls_pthread.h", |
| 396 | "include/grpc/support/useful.h", |
| 397 | ], |
| 398 | deps = [ |
| 399 | "gpr_codegen", |
| 400 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 401 | ) |
| 402 | |
| 403 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 404 | name = "gpr_codegen", |
| 405 | language = "c", |
| 406 | public_hdrs = [ |
| 407 | "include/grpc/impl/codegen/atm.h", |
| 408 | "include/grpc/impl/codegen/atm_gcc_atomic.h", |
| 409 | "include/grpc/impl/codegen/atm_gcc_sync.h", |
| 410 | "include/grpc/impl/codegen/atm_windows.h", |
Mark D. Roth | 348fba2 | 2017-01-06 11:07:30 -0800 | [diff] [blame] | 411 | "include/grpc/impl/codegen/gpr_slice.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 412 | "include/grpc/impl/codegen/gpr_types.h", |
| 413 | "include/grpc/impl/codegen/port_platform.h", |
| 414 | "include/grpc/impl/codegen/slice.h", |
| 415 | "include/grpc/impl/codegen/sync.h", |
| 416 | "include/grpc/impl/codegen/sync_generic.h", |
| 417 | "include/grpc/impl/codegen/sync_posix.h", |
| 418 | "include/grpc/impl/codegen/sync_windows.h", |
| 419 | ], |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 420 | ) |
| 421 | |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 422 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 423 | name = "grpc_base", |
| 424 | srcs = [ |
| 425 | "src/core/lib/channel/channel_args.c", |
| 426 | "src/core/lib/channel/channel_stack.c", |
| 427 | "src/core/lib/channel/channel_stack_builder.c", |
| 428 | "src/core/lib/channel/compress_filter.c", |
| 429 | "src/core/lib/channel/connected_channel.c", |
| 430 | "src/core/lib/channel/deadline_filter.c", |
| 431 | "src/core/lib/channel/handshaker.c", |
Mark D. Roth | 1f0f23c | 2017-01-06 13:07:19 -0800 | [diff] [blame] | 432 | "src/core/lib/channel/handshaker_factory.c", |
| 433 | "src/core/lib/channel/handshaker_registry.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 434 | "src/core/lib/channel/http_client_filter.c", |
| 435 | "src/core/lib/channel/http_server_filter.c", |
Nicolas "Pixel" Noble | 0fc9999 | 2017-01-04 23:50:42 +0100 | [diff] [blame] | 436 | "src/core/lib/channel/message_size_filter.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 437 | "src/core/lib/compression/compression.c", |
| 438 | "src/core/lib/compression/message_compress.c", |
| 439 | "src/core/lib/debug/trace.c", |
| 440 | "src/core/lib/http/format_request.c", |
| 441 | "src/core/lib/http/httpcli.c", |
| 442 | "src/core/lib/http/parser.c", |
| 443 | "src/core/lib/iomgr/closure.c", |
| 444 | "src/core/lib/iomgr/combiner.c", |
| 445 | "src/core/lib/iomgr/endpoint.c", |
| 446 | "src/core/lib/iomgr/endpoint_pair_posix.c", |
Nicolas "Pixel" Noble | 19014de | 2016-10-27 00:33:07 +0200 | [diff] [blame] | 447 | "src/core/lib/iomgr/endpoint_pair_uv.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 448 | "src/core/lib/iomgr/endpoint_pair_windows.c", |
| 449 | "src/core/lib/iomgr/error.c", |
| 450 | "src/core/lib/iomgr/ev_epoll_linux.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 451 | "src/core/lib/iomgr/ev_poll_posix.c", |
| 452 | "src/core/lib/iomgr/ev_posix.c", |
| 453 | "src/core/lib/iomgr/exec_ctx.c", |
| 454 | "src/core/lib/iomgr/executor.c", |
| 455 | "src/core/lib/iomgr/iocp_windows.c", |
| 456 | "src/core/lib/iomgr/iomgr.c", |
| 457 | "src/core/lib/iomgr/iomgr_posix.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 458 | "src/core/lib/iomgr/iomgr_uv.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 459 | "src/core/lib/iomgr/iomgr_windows.c", |
| 460 | "src/core/lib/iomgr/load_file.c", |
| 461 | "src/core/lib/iomgr/network_status_tracker.c", |
| 462 | "src/core/lib/iomgr/polling_entity.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 463 | "src/core/lib/iomgr/pollset_set_uv.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 464 | "src/core/lib/iomgr/pollset_set_windows.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 465 | "src/core/lib/iomgr/pollset_uv.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 466 | "src/core/lib/iomgr/pollset_windows.c", |
| 467 | "src/core/lib/iomgr/resolve_address_posix.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 468 | "src/core/lib/iomgr/resolve_address_uv.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 469 | "src/core/lib/iomgr/resolve_address_windows.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 470 | "src/core/lib/iomgr/resource_quota.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 471 | "src/core/lib/iomgr/sockaddr_utils.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 472 | "src/core/lib/iomgr/socket_mutator.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 473 | "src/core/lib/iomgr/socket_utils_common_posix.c", |
| 474 | "src/core/lib/iomgr/socket_utils_linux.c", |
| 475 | "src/core/lib/iomgr/socket_utils_posix.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 476 | "src/core/lib/iomgr/socket_utils_uv.c", |
| 477 | "src/core/lib/iomgr/socket_utils_windows.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 478 | "src/core/lib/iomgr/socket_windows.c", |
| 479 | "src/core/lib/iomgr/tcp_client_posix.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 480 | "src/core/lib/iomgr/tcp_client_uv.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 481 | "src/core/lib/iomgr/tcp_client_windows.c", |
| 482 | "src/core/lib/iomgr/tcp_posix.c", |
| 483 | "src/core/lib/iomgr/tcp_server_posix.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 484 | "src/core/lib/iomgr/tcp_server_uv.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 485 | "src/core/lib/iomgr/tcp_server_windows.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 486 | "src/core/lib/iomgr/tcp_uv.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 487 | "src/core/lib/iomgr/tcp_windows.c", |
| 488 | "src/core/lib/iomgr/time_averaged_stats.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 489 | "src/core/lib/iomgr/timer_generic.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 490 | "src/core/lib/iomgr/timer_heap.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 491 | "src/core/lib/iomgr/timer_uv.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 492 | "src/core/lib/iomgr/udp_server.c", |
| 493 | "src/core/lib/iomgr/unix_sockets_posix.c", |
| 494 | "src/core/lib/iomgr/unix_sockets_posix_noop.c", |
| 495 | "src/core/lib/iomgr/wakeup_fd_cv.c", |
| 496 | "src/core/lib/iomgr/wakeup_fd_eventfd.c", |
| 497 | "src/core/lib/iomgr/wakeup_fd_nospecial.c", |
| 498 | "src/core/lib/iomgr/wakeup_fd_pipe.c", |
| 499 | "src/core/lib/iomgr/wakeup_fd_posix.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 500 | "src/core/lib/iomgr/workqueue_uv.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 501 | "src/core/lib/iomgr/workqueue_windows.c", |
| 502 | "src/core/lib/json/json.c", |
| 503 | "src/core/lib/json/json_reader.c", |
| 504 | "src/core/lib/json/json_string.c", |
| 505 | "src/core/lib/json/json_writer.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 506 | "src/core/lib/slice/percent_encoding.c", |
| 507 | "src/core/lib/slice/slice.c", |
| 508 | "src/core/lib/slice/slice_buffer.c", |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 509 | "src/core/lib/slice/slice_hash_table.c", |
| 510 | "src/core/lib/slice/slice_intern.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 511 | "src/core/lib/slice/slice_string_helpers.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 512 | "src/core/lib/surface/alarm.c", |
| 513 | "src/core/lib/surface/api_trace.c", |
| 514 | "src/core/lib/surface/byte_buffer.c", |
| 515 | "src/core/lib/surface/byte_buffer_reader.c", |
| 516 | "src/core/lib/surface/call.c", |
| 517 | "src/core/lib/surface/call_details.c", |
| 518 | "src/core/lib/surface/call_log_batch.c", |
| 519 | "src/core/lib/surface/channel.c", |
| 520 | "src/core/lib/surface/channel_init.c", |
| 521 | "src/core/lib/surface/channel_ping.c", |
| 522 | "src/core/lib/surface/channel_stack_type.c", |
| 523 | "src/core/lib/surface/completion_queue.c", |
| 524 | "src/core/lib/surface/event_string.c", |
| 525 | "src/core/lib/surface/lame_client.c", |
| 526 | "src/core/lib/surface/metadata_array.c", |
| 527 | "src/core/lib/surface/server.c", |
| 528 | "src/core/lib/surface/validate_metadata.c", |
| 529 | "src/core/lib/surface/version.c", |
| 530 | "src/core/lib/transport/byte_stream.c", |
| 531 | "src/core/lib/transport/connectivity_state.c", |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 532 | "src/core/lib/transport/error_utils.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 533 | "src/core/lib/transport/metadata.c", |
| 534 | "src/core/lib/transport/metadata_batch.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 535 | "src/core/lib/transport/pid_controller.c", |
Craig Tiller | 5356db3 | 2017-01-27 16:21:25 -0800 | [diff] [blame] | 536 | "src/core/lib/transport/bdp_estimator.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 537 | "src/core/lib/transport/service_config.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 538 | "src/core/lib/transport/static_metadata.c", |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 539 | "src/core/lib/transport/status_conversion.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 540 | "src/core/lib/transport/timeout_encoding.c", |
| 541 | "src/core/lib/transport/transport.c", |
| 542 | "src/core/lib/transport/transport_op_string.c", |
| 543 | ], |
| 544 | hdrs = [ |
| 545 | "src/core/lib/channel/channel_args.h", |
| 546 | "src/core/lib/channel/channel_stack.h", |
| 547 | "src/core/lib/channel/channel_stack_builder.h", |
| 548 | "src/core/lib/channel/compress_filter.h", |
| 549 | "src/core/lib/channel/connected_channel.h", |
| 550 | "src/core/lib/channel/context.h", |
| 551 | "src/core/lib/channel/deadline_filter.h", |
| 552 | "src/core/lib/channel/handshaker.h", |
Mark D. Roth | 1f0f23c | 2017-01-06 13:07:19 -0800 | [diff] [blame] | 553 | "src/core/lib/channel/handshaker_factory.h", |
| 554 | "src/core/lib/channel/handshaker_registry.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 555 | "src/core/lib/channel/http_client_filter.h", |
| 556 | "src/core/lib/channel/http_server_filter.h", |
Nicolas "Pixel" Noble | 0fc9999 | 2017-01-04 23:50:42 +0100 | [diff] [blame] | 557 | "src/core/lib/channel/message_size_filter.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 558 | "src/core/lib/compression/algorithm_metadata.h", |
| 559 | "src/core/lib/compression/message_compress.h", |
| 560 | "src/core/lib/debug/trace.h", |
| 561 | "src/core/lib/http/format_request.h", |
| 562 | "src/core/lib/http/httpcli.h", |
| 563 | "src/core/lib/http/parser.h", |
| 564 | "src/core/lib/iomgr/closure.h", |
| 565 | "src/core/lib/iomgr/combiner.h", |
| 566 | "src/core/lib/iomgr/endpoint.h", |
| 567 | "src/core/lib/iomgr/endpoint_pair.h", |
| 568 | "src/core/lib/iomgr/error.h", |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 569 | "src/core/lib/iomgr/error_internal.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 570 | "src/core/lib/iomgr/ev_epoll_linux.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 571 | "src/core/lib/iomgr/ev_poll_posix.h", |
| 572 | "src/core/lib/iomgr/ev_posix.h", |
| 573 | "src/core/lib/iomgr/exec_ctx.h", |
| 574 | "src/core/lib/iomgr/executor.h", |
| 575 | "src/core/lib/iomgr/iocp_windows.h", |
| 576 | "src/core/lib/iomgr/iomgr.h", |
| 577 | "src/core/lib/iomgr/iomgr_internal.h", |
| 578 | "src/core/lib/iomgr/iomgr_posix.h", |
| 579 | "src/core/lib/iomgr/load_file.h", |
| 580 | "src/core/lib/iomgr/network_status_tracker.h", |
| 581 | "src/core/lib/iomgr/polling_entity.h", |
| 582 | "src/core/lib/iomgr/pollset.h", |
| 583 | "src/core/lib/iomgr/pollset_set.h", |
| 584 | "src/core/lib/iomgr/pollset_set_windows.h", |
Nicolas "Pixel" Noble | 19014de | 2016-10-27 00:33:07 +0200 | [diff] [blame] | 585 | "src/core/lib/iomgr/pollset_uv.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 586 | "src/core/lib/iomgr/pollset_windows.h", |
Nicolas "Pixel" Noble | 19014de | 2016-10-27 00:33:07 +0200 | [diff] [blame] | 587 | "src/core/lib/iomgr/port.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 588 | "src/core/lib/iomgr/resolve_address.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 589 | "src/core/lib/iomgr/resource_quota.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 590 | "src/core/lib/iomgr/sockaddr.h", |
| 591 | "src/core/lib/iomgr/sockaddr_posix.h", |
| 592 | "src/core/lib/iomgr/sockaddr_utils.h", |
| 593 | "src/core/lib/iomgr/sockaddr_windows.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 594 | "src/core/lib/iomgr/socket_mutator.h", |
Nicolas "Pixel" Noble | 19014de | 2016-10-27 00:33:07 +0200 | [diff] [blame] | 595 | "src/core/lib/iomgr/socket_utils.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 596 | "src/core/lib/iomgr/socket_utils_posix.h", |
| 597 | "src/core/lib/iomgr/socket_windows.h", |
| 598 | "src/core/lib/iomgr/tcp_client.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 599 | "src/core/lib/iomgr/tcp_client_posix.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 600 | "src/core/lib/iomgr/tcp_posix.h", |
| 601 | "src/core/lib/iomgr/tcp_server.h", |
Nicolas "Pixel" Noble | 19014de | 2016-10-27 00:33:07 +0200 | [diff] [blame] | 602 | "src/core/lib/iomgr/tcp_uv.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 603 | "src/core/lib/iomgr/tcp_windows.h", |
| 604 | "src/core/lib/iomgr/time_averaged_stats.h", |
| 605 | "src/core/lib/iomgr/timer.h", |
Nicolas "Pixel" Noble | 19014de | 2016-10-27 00:33:07 +0200 | [diff] [blame] | 606 | "src/core/lib/iomgr/timer_generic.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 607 | "src/core/lib/iomgr/timer_heap.h", |
Nicolas "Pixel" Noble | 19014de | 2016-10-27 00:33:07 +0200 | [diff] [blame] | 608 | "src/core/lib/iomgr/timer_uv.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 609 | "src/core/lib/iomgr/udp_server.h", |
| 610 | "src/core/lib/iomgr/unix_sockets_posix.h", |
| 611 | "src/core/lib/iomgr/wakeup_fd_cv.h", |
| 612 | "src/core/lib/iomgr/wakeup_fd_pipe.h", |
| 613 | "src/core/lib/iomgr/wakeup_fd_posix.h", |
| 614 | "src/core/lib/iomgr/workqueue.h", |
Nicolas "Pixel" Noble | 19014de | 2016-10-27 00:33:07 +0200 | [diff] [blame] | 615 | "src/core/lib/iomgr/workqueue_uv.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 616 | "src/core/lib/iomgr/workqueue_windows.h", |
| 617 | "src/core/lib/json/json.h", |
| 618 | "src/core/lib/json/json_common.h", |
| 619 | "src/core/lib/json/json_reader.h", |
| 620 | "src/core/lib/json/json_writer.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 621 | "src/core/lib/slice/percent_encoding.h", |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 622 | "src/core/lib/slice/slice_hash_table.h", |
Craig Tiller | 3ca6019 | 2017-01-04 14:41:29 -0800 | [diff] [blame] | 623 | "src/core/lib/slice/slice_internal.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 624 | "src/core/lib/slice/slice_string_helpers.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 625 | "src/core/lib/surface/api_trace.h", |
| 626 | "src/core/lib/surface/call.h", |
| 627 | "src/core/lib/surface/call_test_only.h", |
| 628 | "src/core/lib/surface/channel.h", |
| 629 | "src/core/lib/surface/channel_init.h", |
| 630 | "src/core/lib/surface/channel_stack_type.h", |
| 631 | "src/core/lib/surface/completion_queue.h", |
| 632 | "src/core/lib/surface/event_string.h", |
| 633 | "src/core/lib/surface/init.h", |
| 634 | "src/core/lib/surface/lame_client.h", |
| 635 | "src/core/lib/surface/server.h", |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 636 | "src/core/lib/surface/validate_metadata.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 637 | "src/core/lib/transport/byte_stream.h", |
| 638 | "src/core/lib/transport/connectivity_state.h", |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 639 | "src/core/lib/transport/error_utils.h", |
| 640 | "src/core/lib/transport/http2_errors.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 641 | "src/core/lib/transport/metadata.h", |
| 642 | "src/core/lib/transport/metadata_batch.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 643 | "src/core/lib/transport/pid_controller.h", |
Craig Tiller | 5356db3 | 2017-01-27 16:21:25 -0800 | [diff] [blame] | 644 | "src/core/lib/transport/bdp_estimator.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 645 | "src/core/lib/transport/service_config.h", |
| 646 | "src/core/lib/transport/static_metadata.h", |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 647 | "src/core/lib/transport/status_conversion.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 648 | "src/core/lib/transport/timeout_encoding.h", |
| 649 | "src/core/lib/transport/transport.h", |
| 650 | "src/core/lib/transport/transport_impl.h", |
| 651 | ], |
| 652 | external_deps = [ |
| 653 | "zlib", |
| 654 | ], |
| 655 | language = "c", |
| 656 | public_hdrs = [ |
| 657 | "include/grpc/byte_buffer.h", |
| 658 | "include/grpc/byte_buffer_reader.h", |
| 659 | "include/grpc/compression.h", |
| 660 | "include/grpc/grpc.h", |
| 661 | "include/grpc/grpc_posix.h", |
| 662 | "include/grpc/grpc_security_constants.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 663 | "include/grpc/slice.h", |
| 664 | "include/grpc/slice_buffer.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 665 | "include/grpc/status.h", |
| 666 | ], |
| 667 | deps = [ |
| 668 | "gpr_base", |
| 669 | "grpc_codegen", |
| 670 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 671 | ) |
| 672 | |
| 673 | grpc_cc_library( |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 674 | name = "grpc_client_channel", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 675 | srcs = [ |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 676 | "src/core/ext/client_channel/channel_connectivity.c", |
| 677 | "src/core/ext/client_channel/client_channel.c", |
| 678 | "src/core/ext/client_channel/client_channel_factory.c", |
| 679 | "src/core/ext/client_channel/client_channel_plugin.c", |
| 680 | "src/core/ext/client_channel/connector.c", |
| 681 | "src/core/ext/client_channel/default_initial_connect_string.c", |
| 682 | "src/core/ext/client_channel/http_connect_handshaker.c", |
Mark D. Roth | d58a985 | 2017-01-18 08:28:57 -0800 | [diff] [blame] | 683 | "src/core/ext/client_channel/http_proxy.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 684 | "src/core/ext/client_channel/initial_connect_string.c", |
| 685 | "src/core/ext/client_channel/lb_policy.c", |
| 686 | "src/core/ext/client_channel/lb_policy_factory.c", |
| 687 | "src/core/ext/client_channel/lb_policy_registry.c", |
| 688 | "src/core/ext/client_channel/parse_address.c", |
Mark D. Roth | 79f2a24 | 2017-01-17 14:13:33 -0800 | [diff] [blame] | 689 | "src/core/ext/client_channel/proxy_mapper.c", |
| 690 | "src/core/ext/client_channel/proxy_mapper_registry.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 691 | "src/core/ext/client_channel/resolver.c", |
| 692 | "src/core/ext/client_channel/resolver_factory.c", |
| 693 | "src/core/ext/client_channel/resolver_registry.c", |
| 694 | "src/core/ext/client_channel/subchannel.c", |
| 695 | "src/core/ext/client_channel/subchannel_index.c", |
| 696 | "src/core/ext/client_channel/uri_parser.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 697 | ], |
| 698 | hdrs = [ |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 699 | "src/core/ext/client_channel/client_channel.h", |
| 700 | "src/core/ext/client_channel/client_channel_factory.h", |
| 701 | "src/core/ext/client_channel/connector.h", |
| 702 | "src/core/ext/client_channel/http_connect_handshaker.h", |
Mark D. Roth | d58a985 | 2017-01-18 08:28:57 -0800 | [diff] [blame] | 703 | "src/core/ext/client_channel/http_proxy.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 704 | "src/core/ext/client_channel/initial_connect_string.h", |
| 705 | "src/core/ext/client_channel/lb_policy.h", |
| 706 | "src/core/ext/client_channel/lb_policy_factory.h", |
| 707 | "src/core/ext/client_channel/lb_policy_registry.h", |
| 708 | "src/core/ext/client_channel/parse_address.h", |
Mark D. Roth | 79f2a24 | 2017-01-17 14:13:33 -0800 | [diff] [blame] | 709 | "src/core/ext/client_channel/proxy_mapper.h", |
| 710 | "src/core/ext/client_channel/proxy_mapper_registry.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 711 | "src/core/ext/client_channel/resolver.h", |
| 712 | "src/core/ext/client_channel/resolver_factory.h", |
| 713 | "src/core/ext/client_channel/resolver_registry.h", |
| 714 | "src/core/ext/client_channel/subchannel.h", |
| 715 | "src/core/ext/client_channel/subchannel_index.h", |
| 716 | "src/core/ext/client_channel/uri_parser.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 717 | ], |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 718 | language = "c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 719 | deps = [ |
| 720 | "grpc_base", |
| 721 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 722 | ) |
| 723 | |
| 724 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 725 | name = "grpc_codegen", |
| 726 | language = "c", |
| 727 | public_hdrs = [ |
| 728 | "include/grpc/impl/codegen/byte_buffer_reader.h", |
| 729 | "include/grpc/impl/codegen/compression_types.h", |
| 730 | "include/grpc/impl/codegen/connectivity_state.h", |
Craig Tiller | 3ca6019 | 2017-01-04 14:41:29 -0800 | [diff] [blame] | 731 | "include/grpc/impl/codegen/exec_ctx_fwd.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 732 | "include/grpc/impl/codegen/grpc_types.h", |
| 733 | "include/grpc/impl/codegen/propagation_bits.h", |
| 734 | "include/grpc/impl/codegen/status.h", |
| 735 | ], |
| 736 | deps = [ |
| 737 | "gpr_codegen", |
| 738 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 739 | ) |
| 740 | |
| 741 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 742 | name = "grpc_lb_policy_grpclb", |
| 743 | srcs = [ |
| 744 | "src/core/ext/lb_policy/grpclb/grpclb.c", |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 745 | "src/core/ext/lb_policy/grpclb/grpclb_channel.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 746 | "src/core/ext/lb_policy/grpclb/load_balancer_api.c", |
| 747 | "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c", |
| 748 | ], |
| 749 | hdrs = [ |
| 750 | "src/core/ext/lb_policy/grpclb/grpclb.h", |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 751 | "src/core/ext/lb_policy/grpclb/grpclb_channel.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 752 | "src/core/ext/lb_policy/grpclb/load_balancer_api.h", |
| 753 | "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h", |
| 754 | ], |
| 755 | external_deps = [ |
| 756 | "nanopb", |
| 757 | ], |
| 758 | language = "c", |
| 759 | deps = [ |
| 760 | "grpc_base", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 761 | "grpc_client_channel", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 762 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 763 | ) |
| 764 | |
| 765 | grpc_cc_library( |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 766 | name = "grpc_lb_policy_grpclb_secure", |
| 767 | srcs = [ |
| 768 | "src/core/ext/lb_policy/grpclb/grpclb.c", |
| 769 | "src/core/ext/lb_policy/grpclb/grpclb_channel_secure.c", |
| 770 | "src/core/ext/lb_policy/grpclb/load_balancer_api.c", |
| 771 | "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c", |
| 772 | ], |
| 773 | hdrs = [ |
| 774 | "src/core/ext/lb_policy/grpclb/grpclb.h", |
| 775 | "src/core/ext/lb_policy/grpclb/grpclb_channel.h", |
| 776 | "src/core/ext/lb_policy/grpclb/load_balancer_api.h", |
| 777 | "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h", |
| 778 | ], |
| 779 | external_deps = [ |
| 780 | "nanopb", |
| 781 | ], |
| 782 | language = "c", |
| 783 | deps = [ |
| 784 | "grpc_base", |
| 785 | "grpc_client_channel", |
| 786 | "grpc_secure", |
| 787 | ], |
| 788 | ) |
| 789 | |
| 790 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 791 | name = "grpc_lb_policy_pick_first", |
| 792 | srcs = [ |
| 793 | "src/core/ext/lb_policy/pick_first/pick_first.c", |
| 794 | ], |
| 795 | language = "c", |
| 796 | deps = [ |
| 797 | "grpc_base", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 798 | "grpc_client_channel", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 799 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 800 | ) |
| 801 | |
| 802 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 803 | name = "grpc_lb_policy_round_robin", |
| 804 | srcs = [ |
| 805 | "src/core/ext/lb_policy/round_robin/round_robin.c", |
| 806 | ], |
| 807 | language = "c", |
| 808 | deps = [ |
| 809 | "grpc_base", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 810 | "grpc_client_channel", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 811 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 812 | ) |
| 813 | |
| 814 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 815 | name = "grpc_load_reporting", |
| 816 | srcs = [ |
| 817 | "src/core/ext/load_reporting/load_reporting.c", |
| 818 | "src/core/ext/load_reporting/load_reporting_filter.c", |
| 819 | ], |
| 820 | hdrs = [ |
| 821 | "src/core/ext/load_reporting/load_reporting.h", |
| 822 | "src/core/ext/load_reporting/load_reporting_filter.h", |
| 823 | ], |
| 824 | language = "c", |
| 825 | deps = [ |
| 826 | "grpc_base", |
| 827 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 828 | ) |
| 829 | |
| 830 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 831 | name = "grpc_resolver_dns_native", |
| 832 | srcs = [ |
| 833 | "src/core/ext/resolver/dns/native/dns_resolver.c", |
| 834 | ], |
| 835 | language = "c", |
| 836 | deps = [ |
| 837 | "grpc_base", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 838 | "grpc_client_channel", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 839 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 840 | ) |
| 841 | |
| 842 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 843 | name = "grpc_resolver_sockaddr", |
| 844 | srcs = [ |
| 845 | "src/core/ext/resolver/sockaddr/sockaddr_resolver.c", |
| 846 | ], |
| 847 | language = "c", |
| 848 | deps = [ |
| 849 | "grpc_base", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 850 | "grpc_client_channel", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 851 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 852 | ) |
| 853 | |
| 854 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 855 | name = "grpc_secure", |
| 856 | srcs = [ |
| 857 | "src/core/lib/http/httpcli_security_connector.c", |
| 858 | "src/core/lib/security/context/security_context.c", |
| 859 | "src/core/lib/security/credentials/composite/composite_credentials.c", |
| 860 | "src/core/lib/security/credentials/credentials.c", |
| 861 | "src/core/lib/security/credentials/credentials_metadata.c", |
| 862 | "src/core/lib/security/credentials/fake/fake_credentials.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 863 | "src/core/lib/security/credentials/google_default/credentials_generic.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 864 | "src/core/lib/security/credentials/google_default/google_default_credentials.c", |
| 865 | "src/core/lib/security/credentials/iam/iam_credentials.c", |
| 866 | "src/core/lib/security/credentials/jwt/json_token.c", |
| 867 | "src/core/lib/security/credentials/jwt/jwt_credentials.c", |
| 868 | "src/core/lib/security/credentials/jwt/jwt_verifier.c", |
| 869 | "src/core/lib/security/credentials/oauth2/oauth2_credentials.c", |
| 870 | "src/core/lib/security/credentials/plugin/plugin_credentials.c", |
| 871 | "src/core/lib/security/credentials/ssl/ssl_credentials.c", |
| 872 | "src/core/lib/security/transport/client_auth_filter.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 873 | "src/core/lib/security/transport/secure_endpoint.c", |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 874 | "src/core/lib/security/transport/lb_targets_info.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 875 | "src/core/lib/security/transport/security_connector.c", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 876 | "src/core/lib/security/transport/security_handshaker.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 877 | "src/core/lib/security/transport/server_auth_filter.c", |
| 878 | "src/core/lib/security/transport/tsi_error.c", |
| 879 | "src/core/lib/security/util/b64.c", |
| 880 | "src/core/lib/security/util/json_util.c", |
| 881 | "src/core/lib/surface/init_secure.c", |
| 882 | ], |
| 883 | hdrs = [ |
| 884 | "src/core/lib/security/context/security_context.h", |
| 885 | "src/core/lib/security/credentials/composite/composite_credentials.h", |
| 886 | "src/core/lib/security/credentials/credentials.h", |
| 887 | "src/core/lib/security/credentials/fake/fake_credentials.h", |
| 888 | "src/core/lib/security/credentials/google_default/google_default_credentials.h", |
| 889 | "src/core/lib/security/credentials/iam/iam_credentials.h", |
| 890 | "src/core/lib/security/credentials/jwt/json_token.h", |
| 891 | "src/core/lib/security/credentials/jwt/jwt_credentials.h", |
| 892 | "src/core/lib/security/credentials/jwt/jwt_verifier.h", |
| 893 | "src/core/lib/security/credentials/oauth2/oauth2_credentials.h", |
| 894 | "src/core/lib/security/credentials/plugin/plugin_credentials.h", |
| 895 | "src/core/lib/security/credentials/ssl/ssl_credentials.h", |
| 896 | "src/core/lib/security/transport/auth_filters.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 897 | "src/core/lib/security/transport/secure_endpoint.h", |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 898 | "src/core/lib/security/transport/lb_targets_info.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 899 | "src/core/lib/security/transport/security_connector.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 900 | "src/core/lib/security/transport/security_handshaker.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 901 | "src/core/lib/security/transport/tsi_error.h", |
| 902 | "src/core/lib/security/util/b64.h", |
| 903 | "src/core/lib/security/util/json_util.h", |
| 904 | ], |
| 905 | language = "c", |
| 906 | public_hdrs = [ |
| 907 | "include/grpc/grpc_security.h", |
| 908 | ], |
| 909 | deps = [ |
| 910 | "grpc_base", |
| 911 | "grpc_transport_chttp2_alpn", |
| 912 | "tsi", |
| 913 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 914 | ) |
| 915 | |
| 916 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 917 | name = "grpc_transport_chttp2", |
| 918 | srcs = [ |
| 919 | "src/core/ext/transport/chttp2/transport/bin_decoder.c", |
| 920 | "src/core/ext/transport/chttp2/transport/bin_encoder.c", |
| 921 | "src/core/ext/transport/chttp2/transport/chttp2_plugin.c", |
| 922 | "src/core/ext/transport/chttp2/transport/chttp2_transport.c", |
| 923 | "src/core/ext/transport/chttp2/transport/frame_data.c", |
| 924 | "src/core/ext/transport/chttp2/transport/frame_goaway.c", |
| 925 | "src/core/ext/transport/chttp2/transport/frame_ping.c", |
| 926 | "src/core/ext/transport/chttp2/transport/frame_rst_stream.c", |
| 927 | "src/core/ext/transport/chttp2/transport/frame_settings.c", |
| 928 | "src/core/ext/transport/chttp2/transport/frame_window_update.c", |
| 929 | "src/core/ext/transport/chttp2/transport/hpack_encoder.c", |
| 930 | "src/core/ext/transport/chttp2/transport/hpack_parser.c", |
| 931 | "src/core/ext/transport/chttp2/transport/hpack_table.c", |
| 932 | "src/core/ext/transport/chttp2/transport/huffsyms.c", |
| 933 | "src/core/ext/transport/chttp2/transport/incoming_metadata.c", |
| 934 | "src/core/ext/transport/chttp2/transport/parsing.c", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 935 | "src/core/ext/transport/chttp2/transport/stream_lists.c", |
| 936 | "src/core/ext/transport/chttp2/transport/stream_map.c", |
| 937 | "src/core/ext/transport/chttp2/transport/varint.c", |
| 938 | "src/core/ext/transport/chttp2/transport/writing.c", |
| 939 | ], |
| 940 | hdrs = [ |
| 941 | "src/core/ext/transport/chttp2/transport/bin_decoder.h", |
| 942 | "src/core/ext/transport/chttp2/transport/bin_encoder.h", |
| 943 | "src/core/ext/transport/chttp2/transport/chttp2_transport.h", |
| 944 | "src/core/ext/transport/chttp2/transport/frame.h", |
| 945 | "src/core/ext/transport/chttp2/transport/frame_data.h", |
| 946 | "src/core/ext/transport/chttp2/transport/frame_goaway.h", |
| 947 | "src/core/ext/transport/chttp2/transport/frame_ping.h", |
| 948 | "src/core/ext/transport/chttp2/transport/frame_rst_stream.h", |
| 949 | "src/core/ext/transport/chttp2/transport/frame_settings.h", |
| 950 | "src/core/ext/transport/chttp2/transport/frame_window_update.h", |
| 951 | "src/core/ext/transport/chttp2/transport/hpack_encoder.h", |
| 952 | "src/core/ext/transport/chttp2/transport/hpack_parser.h", |
| 953 | "src/core/ext/transport/chttp2/transport/hpack_table.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 954 | "src/core/ext/transport/chttp2/transport/huffsyms.h", |
| 955 | "src/core/ext/transport/chttp2/transport/incoming_metadata.h", |
| 956 | "src/core/ext/transport/chttp2/transport/internal.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 957 | "src/core/ext/transport/chttp2/transport/stream_map.h", |
| 958 | "src/core/ext/transport/chttp2/transport/varint.h", |
| 959 | ], |
| 960 | language = "c", |
| 961 | deps = [ |
| 962 | "grpc_base", |
| 963 | "grpc_transport_chttp2_alpn", |
| 964 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 965 | ) |
| 966 | |
| 967 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 968 | name = "grpc_transport_chttp2_alpn", |
| 969 | srcs = [ |
| 970 | "src/core/ext/transport/chttp2/alpn/alpn.c", |
| 971 | ], |
| 972 | hdrs = [ |
| 973 | "src/core/ext/transport/chttp2/alpn/alpn.h", |
| 974 | ], |
| 975 | language = "c", |
| 976 | deps = [ |
| 977 | "gpr", |
| 978 | ], |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 979 | ) |
| 980 | |
| 981 | grpc_cc_library( |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 982 | name = "grpc_transport_chttp2_client_connector", |
| 983 | srcs = [ |
| 984 | "src/core/ext/transport/chttp2/client/chttp2_connector.c", |
| 985 | ], |
| 986 | hdrs = [ |
| 987 | "src/core/ext/transport/chttp2/client/chttp2_connector.h", |
| 988 | ], |
| 989 | language = "c", |
| 990 | deps = [ |
| 991 | "grpc_base", |
| 992 | "grpc_client_channel", |
| 993 | "grpc_transport_chttp2", |
| 994 | ], |
Nicolas "Pixel" Noble | f6edf68 | 2015-03-31 05:17:34 +0200 | [diff] [blame] | 995 | ) |
| 996 | |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 997 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 998 | name = "grpc_transport_chttp2_client_insecure", |
| 999 | srcs = [ |
| 1000 | "src/core/ext/transport/chttp2/client/insecure/channel_create.c", |
| 1001 | "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c", |
| 1002 | ], |
| 1003 | language = "c", |
| 1004 | deps = [ |
| 1005 | "grpc_base", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 1006 | "grpc_client_channel", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1007 | "grpc_transport_chttp2", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 1008 | "grpc_transport_chttp2_client_connector", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1009 | ], |
Makarand Dharmapurikar | 38d8055 | 2016-06-01 15:02:04 -0700 | [diff] [blame] | 1010 | ) |
| 1011 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 1012 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1013 | name = "grpc_transport_chttp2_client_secure", |
| 1014 | srcs = [ |
| 1015 | "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c", |
| 1016 | ], |
| 1017 | language = "c", |
| 1018 | deps = [ |
| 1019 | "grpc_base", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 1020 | "grpc_client_channel", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1021 | "grpc_secure", |
| 1022 | "grpc_transport_chttp2", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 1023 | "grpc_transport_chttp2_client_connector", |
| 1024 | ], |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1025 | ) |
| 1026 | |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 1027 | grpc_cc_library( |
| 1028 | name = "grpc_transport_chttp2_server", |
| 1029 | srcs = [ |
| 1030 | "src/core/ext/transport/chttp2/server/chttp2_server.c", |
| 1031 | ], |
| 1032 | hdrs = [ |
| 1033 | "src/core/ext/transport/chttp2/server/chttp2_server.h", |
| 1034 | ], |
| 1035 | language = "c", |
| 1036 | deps = [ |
| 1037 | "grpc_base", |
| 1038 | "grpc_transport_chttp2", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1039 | ], |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1040 | ) |
| 1041 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 1042 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1043 | name = "grpc_transport_chttp2_server_insecure", |
| 1044 | srcs = [ |
| 1045 | "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c", |
| 1046 | "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c", |
| 1047 | ], |
| 1048 | language = "c", |
| 1049 | deps = [ |
| 1050 | "grpc_base", |
| 1051 | "grpc_transport_chttp2", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 1052 | "grpc_transport_chttp2_server", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1053 | ], |
Garrett Casto | 931a26b | 2016-10-04 09:18:29 -0700 | [diff] [blame] | 1054 | ) |
| 1055 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 1056 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1057 | name = "grpc_transport_chttp2_server_secure", |
| 1058 | srcs = [ |
| 1059 | "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c", |
| 1060 | ], |
| 1061 | language = "c", |
| 1062 | deps = [ |
| 1063 | "grpc_base", |
| 1064 | "grpc_secure", |
| 1065 | "grpc_transport_chttp2", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 1066 | "grpc_transport_chttp2_server", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1067 | ], |
Yuchen Zeng | c84ed68 | 2016-05-04 16:30:11 -0700 | [diff] [blame] | 1068 | ) |
| 1069 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 1070 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1071 | name = "grpc_transport_cronet_client_secure", |
| 1072 | srcs = [ |
| 1073 | "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c", |
| 1074 | "src/core/ext/transport/cronet/transport/cronet_api_dummy.c", |
| 1075 | "src/core/ext/transport/cronet/transport/cronet_transport.c", |
| 1076 | ], |
| 1077 | hdrs = [ |
Muxi Yan | bb2e8af | 2017-01-31 15:58:06 -0800 | [diff] [blame] | 1078 | "third_party/objective_c/Cronet/bidirectional_stream_c.h", |
Muxi Yan | 0a2fae9 | 2017-02-01 14:49:03 -0800 | [diff] [blame] | 1079 | "src/core/ext/transport/cronet/transport/cronet_transport.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1080 | ], |
| 1081 | language = "c", |
| 1082 | public_hdrs = [ |
| 1083 | "include/grpc/grpc_cronet.h", |
| 1084 | "include/grpc/grpc_security.h", |
| 1085 | "include/grpc/grpc_security_constants.h", |
| 1086 | ], |
| 1087 | deps = [ |
| 1088 | "grpc_base", |
| 1089 | "grpc_transport_chttp2", |
| 1090 | ], |
Craig Tiller | 03915e5 | 2016-04-07 09:15:10 -0700 | [diff] [blame] | 1091 | ) |
| 1092 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 1093 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1094 | name = "tsi", |
| 1095 | srcs = [ |
| 1096 | "src/core/lib/tsi/fake_transport_security.c", |
| 1097 | "src/core/lib/tsi/ssl_transport_security.c", |
| 1098 | "src/core/lib/tsi/transport_security.c", |
| 1099 | ], |
| 1100 | hdrs = [ |
| 1101 | "src/core/lib/tsi/fake_transport_security.h", |
| 1102 | "src/core/lib/tsi/ssl_transport_security.h", |
| 1103 | "src/core/lib/tsi/ssl_types.h", |
| 1104 | "src/core/lib/tsi/transport_security.h", |
| 1105 | "src/core/lib/tsi/transport_security_interface.h", |
| 1106 | ], |
| 1107 | external_deps = [ |
| 1108 | "libssl", |
| 1109 | ], |
| 1110 | language = "c", |
| 1111 | deps = [ |
| 1112 | "gpr", |
| 1113 | ], |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1114 | ) |
| 1115 | |
Nicolas "Pixel" Noble | 31d11db | 2016-10-20 09:29:46 +0200 | [diff] [blame] | 1116 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1117 | name = "grpc++_base", |
| 1118 | srcs = [ |
| 1119 | "src/cpp/client/channel_cc.cc", |
| 1120 | "src/cpp/client/client_context.cc", |
| 1121 | "src/cpp/client/create_channel.cc", |
| 1122 | "src/cpp/client/create_channel_internal.cc", |
| 1123 | "src/cpp/client/create_channel_posix.cc", |
| 1124 | "src/cpp/client/credentials_cc.cc", |
| 1125 | "src/cpp/client/generic_stub.cc", |
| 1126 | "src/cpp/common/channel_arguments.cc", |
| 1127 | "src/cpp/common/channel_filter.cc", |
| 1128 | "src/cpp/common/completion_queue_cc.cc", |
| 1129 | "src/cpp/common/core_codegen.cc", |
| 1130 | "src/cpp/common/rpc_method.cc", |
Nicolas "Pixel" Noble | 24263c3 | 2017-01-11 01:03:09 +0100 | [diff] [blame] | 1131 | "src/cpp/common/version_cc.cc", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1132 | "src/cpp/server/async_generic_service.cc", |
| 1133 | "src/cpp/server/create_default_thread_pool.cc", |
| 1134 | "src/cpp/server/dynamic_thread_pool.cc", |
| 1135 | "src/cpp/server/server_builder.cc", |
| 1136 | "src/cpp/server/server_cc.cc", |
| 1137 | "src/cpp/server/server_context.cc", |
| 1138 | "src/cpp/server/server_credentials.cc", |
| 1139 | "src/cpp/server/server_posix.cc", |
Nicolas "Pixel" Noble | 24263c3 | 2017-01-11 01:03:09 +0100 | [diff] [blame] | 1140 | "src/cpp/thread_manager/thread_manager.cc", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1141 | "src/cpp/util/byte_buffer_cc.cc", |
| 1142 | "src/cpp/util/slice_cc.cc", |
| 1143 | "src/cpp/util/status.cc", |
| 1144 | "src/cpp/util/string_ref.cc", |
| 1145 | "src/cpp/util/time_cc.cc", |
| 1146 | ], |
| 1147 | hdrs = [ |
| 1148 | "src/cpp/client/create_channel_internal.h", |
| 1149 | "src/cpp/common/channel_filter.h", |
| 1150 | "src/cpp/server/dynamic_thread_pool.h", |
| 1151 | "src/cpp/server/thread_pool_interface.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 1152 | "src/cpp/thread_manager/thread_manager.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1153 | ], |
| 1154 | language = "c++", |
| 1155 | public_hdrs = [ |
| 1156 | "include/grpc++/alarm.h", |
| 1157 | "include/grpc++/channel.h", |
| 1158 | "include/grpc++/client_context.h", |
| 1159 | "include/grpc++/completion_queue.h", |
| 1160 | "include/grpc++/create_channel.h", |
| 1161 | "include/grpc++/create_channel_posix.h", |
| 1162 | "include/grpc++/generic/async_generic_service.h", |
| 1163 | "include/grpc++/generic/generic_stub.h", |
| 1164 | "include/grpc++/grpc++.h", |
| 1165 | "include/grpc++/impl/call.h", |
| 1166 | "include/grpc++/impl/client_unary_call.h", |
| 1167 | "include/grpc++/impl/codegen/core_codegen.h", |
| 1168 | "include/grpc++/impl/grpc_library.h", |
| 1169 | "include/grpc++/impl/method_handler_impl.h", |
| 1170 | "include/grpc++/impl/rpc_method.h", |
| 1171 | "include/grpc++/impl/rpc_service_method.h", |
| 1172 | "include/grpc++/impl/serialization_traits.h", |
| 1173 | "include/grpc++/impl/server_builder_option.h", |
| 1174 | "include/grpc++/impl/server_builder_plugin.h", |
| 1175 | "include/grpc++/impl/server_initializer.h", |
| 1176 | "include/grpc++/impl/service_type.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1177 | "include/grpc++/impl/sync_cxx11.h", |
| 1178 | "include/grpc++/impl/sync_no_cxx11.h", |
Nicolas "Pixel" Noble | 203860a | 2016-12-29 01:38:26 +0100 | [diff] [blame] | 1179 | "include/grpc++/resource_quota.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1180 | "include/grpc++/security/auth_context.h", |
| 1181 | "include/grpc++/security/auth_metadata_processor.h", |
| 1182 | "include/grpc++/security/credentials.h", |
| 1183 | "include/grpc++/security/server_credentials.h", |
| 1184 | "include/grpc++/server.h", |
| 1185 | "include/grpc++/server_builder.h", |
| 1186 | "include/grpc++/server_context.h", |
| 1187 | "include/grpc++/server_posix.h", |
| 1188 | "include/grpc++/support/async_stream.h", |
| 1189 | "include/grpc++/support/async_unary_call.h", |
| 1190 | "include/grpc++/support/byte_buffer.h", |
| 1191 | "include/grpc++/support/channel_arguments.h", |
| 1192 | "include/grpc++/support/config.h", |
| 1193 | "include/grpc++/support/slice.h", |
| 1194 | "include/grpc++/support/status.h", |
| 1195 | "include/grpc++/support/status_code_enum.h", |
| 1196 | "include/grpc++/support/string_ref.h", |
| 1197 | "include/grpc++/support/stub_options.h", |
| 1198 | "include/grpc++/support/sync_stream.h", |
| 1199 | "include/grpc++/support/time.h", |
| 1200 | ], |
| 1201 | deps = [ |
| 1202 | "grpc", |
| 1203 | "grpc++_codegen_base", |
| 1204 | ], |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1205 | ) |
| 1206 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 1207 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1208 | name = "grpc++_codegen_base", |
| 1209 | language = "c++", |
| 1210 | public_hdrs = [ |
| 1211 | "include/grpc++/impl/codegen/async_stream.h", |
| 1212 | "include/grpc++/impl/codegen/async_unary_call.h", |
| 1213 | "include/grpc++/impl/codegen/call.h", |
| 1214 | "include/grpc++/impl/codegen/call_hook.h", |
| 1215 | "include/grpc++/impl/codegen/channel_interface.h", |
| 1216 | "include/grpc++/impl/codegen/client_context.h", |
| 1217 | "include/grpc++/impl/codegen/client_unary_call.h", |
| 1218 | "include/grpc++/impl/codegen/completion_queue.h", |
| 1219 | "include/grpc++/impl/codegen/completion_queue_tag.h", |
| 1220 | "include/grpc++/impl/codegen/config.h", |
| 1221 | "include/grpc++/impl/codegen/core_codegen_interface.h", |
| 1222 | "include/grpc++/impl/codegen/create_auth_context.h", |
| 1223 | "include/grpc++/impl/codegen/grpc_library.h", |
yang-g | 988b47c | 2017-01-31 09:51:45 -0800 | [diff] [blame] | 1224 | "include/grpc++/impl/codegen/metadata_map.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1225 | "include/grpc++/impl/codegen/method_handler_impl.h", |
| 1226 | "include/grpc++/impl/codegen/rpc_method.h", |
| 1227 | "include/grpc++/impl/codegen/rpc_service_method.h", |
| 1228 | "include/grpc++/impl/codegen/security/auth_context.h", |
| 1229 | "include/grpc++/impl/codegen/serialization_traits.h", |
| 1230 | "include/grpc++/impl/codegen/server_context.h", |
| 1231 | "include/grpc++/impl/codegen/server_interface.h", |
| 1232 | "include/grpc++/impl/codegen/service_type.h", |
yang-g | 988b47c | 2017-01-31 09:51:45 -0800 | [diff] [blame] | 1233 | "include/grpc++/impl/codegen/slice.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1234 | "include/grpc++/impl/codegen/status.h", |
| 1235 | "include/grpc++/impl/codegen/status_code_enum.h", |
| 1236 | "include/grpc++/impl/codegen/status_helper.h", |
| 1237 | "include/grpc++/impl/codegen/string_ref.h", |
| 1238 | "include/grpc++/impl/codegen/stub_options.h", |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1239 | "include/grpc++/impl/codegen/sync_stream.h", |
| 1240 | "include/grpc++/impl/codegen/time.h", |
| 1241 | ], |
| 1242 | deps = [ |
| 1243 | "grpc_codegen", |
| 1244 | ], |
Craig Tiller | da179ce | 2016-02-09 12:01:53 -0800 | [diff] [blame] | 1245 | ) |
| 1246 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 1247 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1248 | name = "grpc++_codegen_base_src", |
| 1249 | srcs = [ |
| 1250 | "src/cpp/codegen/codegen_init.cc", |
| 1251 | ], |
| 1252 | language = "c++", |
| 1253 | deps = [ |
| 1254 | "grpc++_codegen_base", |
| 1255 | ], |
Jorge Canizales | 140bca8 | 2015-06-20 09:47:00 -0700 | [diff] [blame] | 1256 | ) |
| 1257 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 1258 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1259 | name = "grpc++_codegen_proto", |
| 1260 | language = "c++", |
| 1261 | public_hdrs = [ |
| 1262 | "include/grpc++/impl/codegen/proto_utils.h", |
| 1263 | ], |
| 1264 | deps = [ |
| 1265 | "grpc++_codegen_base", |
| 1266 | "grpc++_config_proto", |
| 1267 | ], |
Ming Zhao | 3c0ba0c | 2015-04-10 12:05:22 -0700 | [diff] [blame] | 1268 | ) |
| 1269 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 1270 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1271 | name = "grpc++_config_proto", |
| 1272 | language = "c++", |
| 1273 | public_hdrs = [ |
| 1274 | "include/grpc++/impl/codegen/config_protobuf.h", |
| 1275 | ], |
yang-g | f89eed9 | 2017-01-11 15:10:43 -0800 | [diff] [blame] | 1276 | external_deps = [ |
| 1277 | "protobuf", |
| 1278 | ], |
Jan Tattermusch | 2d92495 | 2015-05-06 10:23:17 -0700 | [diff] [blame] | 1279 | ) |
| 1280 | |
Nicolas "Pixel" Noble | 7e7fd96 | 2016-10-20 22:00:08 +0200 | [diff] [blame] | 1281 | grpc_cc_library( |
Nicolas "Pixel" Noble | d58c375 | 2016-10-20 22:30:16 +0200 | [diff] [blame] | 1282 | name = "thrift_util", |
| 1283 | language = "c++", |
| 1284 | public_hdrs = [ |
| 1285 | "include/grpc++/impl/codegen/thrift_serializer.h", |
| 1286 | "include/grpc++/impl/codegen/thrift_utils.h", |
| 1287 | ], |
| 1288 | deps = [ |
| 1289 | "grpc++_codegen_base", |
| 1290 | ], |
Jorge Canizales | 50f1982 | 2015-06-28 23:48:30 -0700 | [diff] [blame] | 1291 | ) |