Muxi Yan | 27e9db4 | 2017-01-30 09:21:05 -0800 | [diff] [blame] | 1 | # This file has been automatically generated from a template file. |
| 2 | # Please make modifications to `templates/gRPC-Core.podspec.template` |
| 3 | # instead. This file can be regenerated from the template by running |
| 4 | # `tools/buildgen/generate_projects.sh`. |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 5 | |
Muxi Yan | 27e9db4 | 2017-01-30 09:21:05 -0800 | [diff] [blame] | 6 | # gRPC Core CocoaPods podspec |
| 7 | # |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 8 | # Copyright 2015, Google Inc. |
| 9 | # All rights reserved. |
| 10 | # |
| 11 | # Redistribution and use in source and binary forms, with or without |
| 12 | # modification, are permitted provided that the following conditions are |
| 13 | # met: |
| 14 | # |
| 15 | # * Redistributions of source code must retain the above copyright |
| 16 | # notice, this list of conditions and the following disclaimer. |
| 17 | # * Redistributions in binary form must reproduce the above |
| 18 | # copyright notice, this list of conditions and the following disclaimer |
| 19 | # in the documentation and/or other materials provided with the |
| 20 | # distribution. |
| 21 | # * Neither the name of Google Inc. nor the names of its |
| 22 | # contributors may be used to endorse or promote products derived from |
| 23 | # this software without specific prior written permission. |
| 24 | # |
| 25 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 26 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 27 | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 28 | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 29 | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 30 | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 31 | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 32 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 33 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 34 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 35 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 36 | |
| 37 | |
| 38 | Pod::Spec.new do |s| |
| 39 | s.name = 'gRPC-Core' |
David Garcia Quintas | 9e1acc0 | 2017-04-13 16:30:15 -0700 | [diff] [blame] | 40 | version = '1.4.0-dev' |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 41 | s.version = version |
| 42 | s.summary = 'Core cross-platform gRPC library, written in C' |
| 43 | s.homepage = 'http://www.grpc.io' |
| 44 | s.license = 'New BSD' |
| 45 | s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' } |
| 46 | |
| 47 | s.source = { |
| 48 | :git => 'https://github.com/grpc/grpc.git', |
Muxi Yan | 690aee6 | 2017-01-27 02:52:47 +0000 | [diff] [blame] | 49 | :tag => "v#{version}", |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 50 | # TODO(jcanizales): Depend explicitly on the nanopb pod, and disable submodules. |
Jorge Canizales | 66c8ddd | 2016-06-08 17:39:40 -0700 | [diff] [blame] | 51 | :submodules => true, |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Muxi Yan | 37d3fba | 2017-02-28 16:14:40 -0800 | [diff] [blame] | 54 | s.ios.deployment_target = '7.0' |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 55 | s.osx.deployment_target = '10.9' |
| 56 | s.requires_arc = false |
| 57 | |
| 58 | name = 'grpc' |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 59 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 60 | # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework. |
| 61 | # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include |
| 62 | # <gRPC-Core/grpc.h>`. |
| 63 | s.module_name = name |
| 64 | |
| 65 | # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of |
| 66 | # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`). |
| 67 | # |
| 68 | # TODO(jcanizales): Debug why this doesn't work on macOS. |
Jorge Canizales | 3775074 | 2016-06-08 20:10:20 -0700 | [diff] [blame] | 69 | s.header_mappings_dir = 'include/grpc' |
| 70 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 71 | # The above has an undesired effect when creating a static library: It forces users to write |
| 72 | # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and |
| 73 | # because Cocoapods lets omit the pod name when including headers of static libraries, the |
| 74 | # following lets users write `#include <grpc/grpc.h>`. |
| 75 | s.header_dir = name |
Jorge Canizales | 3775074 | 2016-06-08 20:10:20 -0700 | [diff] [blame] | 76 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 77 | # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core. |
Jorge Canizales | 547f065 | 2016-05-01 19:52:21 -0700 | [diff] [blame] | 78 | s.module_map = 'include/grpc/module.modulemap' |
| 79 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 80 | # To compile the library, we need the user headers search path (quoted includes) to point to the |
| 81 | # root of the repo, and the system headers search path (angled includes) to point to `include/`. |
| 82 | # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build |
| 83 | # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that. |
| 84 | # |
| 85 | # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it |
| 86 | # is taken as an implementation detail. We've asked for an alternative, and have been told that |
| 87 | # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386 |
| 88 | # |
| 89 | # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from |
| 90 | # its remote repo. For local development of this library, enabled by using `:path` in the Podfile, |
| 91 | # that assumption is wrong. In such case, the following settings need to be reset with the |
| 92 | # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the |
| 93 | # Podfile; see `src/objective-c/tests/Podfile` for an example. |
| 94 | src_root = '$(PODS_ROOT)/gRPC-Core' |
| 95 | s.pod_target_xcconfig = { |
| 96 | 'GRPC_SRC_ROOT' => src_root, |
| 97 | 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"', |
| 98 | 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"', |
| 99 | # If we don't set these two settings, `include/grpc/support/time.h` and |
| 100 | # `src/core/lib/support/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the |
| 101 | # build. |
| 102 | 'USE_HEADERMAP' => 'NO', |
| 103 | 'ALWAYS_SEARCH_USER_PATHS' => 'NO', |
| 104 | } |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 105 | |
Muxi Yan | e04089e | 2016-07-15 16:35:20 -0700 | [diff] [blame] | 106 | s.default_subspecs = 'Interface', 'Implementation' |
Yuchen Zeng | 9e4c8eb | 2016-11-18 01:06:57 -0800 | [diff] [blame] | 107 | s.compiler_flags = '-DGRPC_ARES=0' |
Muxi Yan | e04089e | 2016-07-15 16:35:20 -0700 | [diff] [blame] | 108 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 109 | # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its |
| 110 | # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't |
| 111 | # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in |
| 112 | # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason |
| 113 | # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one |
| 114 | # for public headers and the other for implementation. Each gets its own `header_mappings_dir`, |
| 115 | # making the linter happy. |
| 116 | # |
| 117 | # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It |
| 118 | # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`. |
| 119 | s.subspec 'Interface' do |ss| |
| 120 | ss.header_mappings_dir = 'include/grpc' |
| 121 | |
| 122 | ss.source_files = 'include/grpc/support/alloc.h', |
| 123 | 'include/grpc/support/atm.h', |
| 124 | 'include/grpc/support/atm_gcc_atomic.h', |
| 125 | 'include/grpc/support/atm_gcc_sync.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 126 | 'include/grpc/support/atm_windows.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 127 | 'include/grpc/support/avl.h', |
| 128 | 'include/grpc/support/cmdline.h', |
| 129 | 'include/grpc/support/cpu.h', |
| 130 | 'include/grpc/support/histogram.h', |
| 131 | 'include/grpc/support/host_port.h', |
| 132 | 'include/grpc/support/log.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 133 | 'include/grpc/support/log_windows.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 134 | 'include/grpc/support/port_platform.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 135 | 'include/grpc/support/string_util.h', |
| 136 | 'include/grpc/support/subprocess.h', |
| 137 | 'include/grpc/support/sync.h', |
| 138 | 'include/grpc/support/sync_generic.h', |
| 139 | 'include/grpc/support/sync_posix.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 140 | 'include/grpc/support/sync_windows.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 141 | 'include/grpc/support/thd.h', |
| 142 | 'include/grpc/support/time.h', |
| 143 | 'include/grpc/support/tls.h', |
| 144 | 'include/grpc/support/tls_gcc.h', |
| 145 | 'include/grpc/support/tls_msvc.h', |
| 146 | 'include/grpc/support/tls_pthread.h', |
| 147 | 'include/grpc/support/useful.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 148 | 'include/grpc/impl/codegen/atm.h', |
| 149 | 'include/grpc/impl/codegen/atm_gcc_atomic.h', |
| 150 | 'include/grpc/impl/codegen/atm_gcc_sync.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 151 | 'include/grpc/impl/codegen/atm_windows.h', |
Mark D. Roth | 4d2ea02 | 2016-12-12 07:12:27 -0800 | [diff] [blame] | 152 | 'include/grpc/impl/codegen/gpr_slice.h', |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 153 | 'include/grpc/impl/codegen/gpr_types.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 154 | 'include/grpc/impl/codegen/port_platform.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 155 | 'include/grpc/impl/codegen/sync.h', |
| 156 | 'include/grpc/impl/codegen/sync_generic.h', |
| 157 | 'include/grpc/impl/codegen/sync_posix.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 158 | 'include/grpc/impl/codegen/sync_windows.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 159 | 'include/grpc/byte_buffer.h', |
| 160 | 'include/grpc/byte_buffer_reader.h', |
| 161 | 'include/grpc/compression.h', |
| 162 | 'include/grpc/grpc.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 163 | 'include/grpc/grpc_posix.h', |
Nicolas "Pixel" Noble | a469e5d | 2016-08-16 22:09:27 +0200 | [diff] [blame] | 164 | 'include/grpc/grpc_security_constants.h', |
David Garcia Quintas | f31f096 | 2017-02-10 14:53:58 -0800 | [diff] [blame] | 165 | 'include/grpc/load_reporting.h', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 166 | 'include/grpc/slice.h', |
| 167 | 'include/grpc/slice_buffer.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 168 | 'include/grpc/status.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 169 | 'include/grpc/impl/codegen/byte_buffer_reader.h', |
| 170 | 'include/grpc/impl/codegen/compression_types.h', |
| 171 | 'include/grpc/impl/codegen/connectivity_state.h', |
Craig Tiller | b995e8b | 2016-12-12 06:36:43 -0800 | [diff] [blame] | 172 | 'include/grpc/impl/codegen/exec_ctx_fwd.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 173 | 'include/grpc/impl/codegen/grpc_types.h', |
| 174 | 'include/grpc/impl/codegen/propagation_bits.h', |
Craig Tiller | 790f6af | 2017-03-30 12:39:24 -0700 | [diff] [blame] | 175 | 'include/grpc/impl/codegen/slice.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 176 | 'include/grpc/impl/codegen/status.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 177 | 'include/grpc/impl/codegen/atm.h', |
| 178 | 'include/grpc/impl/codegen/atm_gcc_atomic.h', |
| 179 | 'include/grpc/impl/codegen/atm_gcc_sync.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 180 | 'include/grpc/impl/codegen/atm_windows.h', |
Mark D. Roth | 4d2ea02 | 2016-12-12 07:12:27 -0800 | [diff] [blame] | 181 | 'include/grpc/impl/codegen/gpr_slice.h', |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 182 | 'include/grpc/impl/codegen/gpr_types.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 183 | 'include/grpc/impl/codegen/port_platform.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 184 | 'include/grpc/impl/codegen/sync.h', |
| 185 | 'include/grpc/impl/codegen/sync_generic.h', |
| 186 | 'include/grpc/impl/codegen/sync_posix.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 187 | 'include/grpc/impl/codegen/sync_windows.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 188 | 'include/grpc/grpc_security.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 189 | 'include/grpc/census.h' |
| 190 | end |
| 191 | s.subspec 'Implementation' do |ss| |
| 192 | ss.header_mappings_dir = '.' |
| 193 | ss.libraries = 'z' |
| 194 | ss.dependency "#{s.name}/Interface", version |
Muxi Yan | 690aee6 | 2017-01-27 02:52:47 +0000 | [diff] [blame] | 195 | ss.dependency 'BoringSSL', '~> 8.0' |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 196 | |
| 197 | # To save you from scrolling, this is the last part of the podspec. |
| 198 | ss.source_files = 'src/core/lib/profiling/timers.h', |
Craig Tiller | 9202b3f | 2017-03-12 22:30:38 -0700 | [diff] [blame] | 199 | 'src/core/lib/support/arena.h', |
Craig Tiller | 4d780a5 | 2017-04-12 13:47:18 -0700 | [diff] [blame] | 200 | 'src/core/lib/support/atomic.h', |
| 201 | 'src/core/lib/support/atomic_with_atm.h', |
| 202 | 'src/core/lib/support/atomic_with_std.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 203 | 'src/core/lib/support/backoff.h', |
| 204 | 'src/core/lib/support/block_annotate.h', |
| 205 | 'src/core/lib/support/env.h', |
Craig Tiller | b3d7010 | 2017-03-31 14:17:09 -0700 | [diff] [blame] | 206 | 'src/core/lib/support/memory.h', |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 207 | 'src/core/lib/support/mpscq.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 208 | 'src/core/lib/support/murmur_hash.h', |
Craig Tiller | edbf2b9 | 2017-02-27 07:24:00 -0800 | [diff] [blame] | 209 | 'src/core/lib/support/spinlock.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 210 | 'src/core/lib/support/stack_lockfree.h', |
| 211 | 'src/core/lib/support/string.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 212 | 'src/core/lib/support/string_windows.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 213 | 'src/core/lib/support/thd_internal.h', |
| 214 | 'src/core/lib/support/time_precise.h', |
| 215 | 'src/core/lib/support/tmpfile.h', |
| 216 | 'src/core/lib/profiling/basic_timers.c', |
| 217 | 'src/core/lib/profiling/stap_timers.c', |
| 218 | 'src/core/lib/support/alloc.c', |
Craig Tiller | 9202b3f | 2017-03-12 22:30:38 -0700 | [diff] [blame] | 219 | 'src/core/lib/support/arena.c', |
Mark D. Roth | fecba53 | 2017-03-17 09:50:48 -0700 | [diff] [blame] | 220 | 'src/core/lib/support/atm.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 221 | 'src/core/lib/support/avl.c', |
| 222 | 'src/core/lib/support/backoff.c', |
| 223 | 'src/core/lib/support/cmdline.c', |
| 224 | 'src/core/lib/support/cpu_iphone.c', |
| 225 | 'src/core/lib/support/cpu_linux.c', |
| 226 | 'src/core/lib/support/cpu_posix.c', |
| 227 | 'src/core/lib/support/cpu_windows.c', |
| 228 | 'src/core/lib/support/env_linux.c', |
| 229 | 'src/core/lib/support/env_posix.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 230 | 'src/core/lib/support/env_windows.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 231 | 'src/core/lib/support/histogram.c', |
| 232 | 'src/core/lib/support/host_port.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 233 | 'src/core/lib/support/log.c', |
| 234 | 'src/core/lib/support/log_android.c', |
| 235 | 'src/core/lib/support/log_linux.c', |
| 236 | 'src/core/lib/support/log_posix.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 237 | 'src/core/lib/support/log_windows.c', |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 238 | 'src/core/lib/support/mpscq.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 239 | 'src/core/lib/support/murmur_hash.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 240 | 'src/core/lib/support/stack_lockfree.c', |
| 241 | 'src/core/lib/support/string.c', |
| 242 | 'src/core/lib/support/string_posix.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 243 | 'src/core/lib/support/string_util_windows.c', |
| 244 | 'src/core/lib/support/string_windows.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 245 | 'src/core/lib/support/subprocess_posix.c', |
| 246 | 'src/core/lib/support/subprocess_windows.c', |
| 247 | 'src/core/lib/support/sync.c', |
| 248 | 'src/core/lib/support/sync_posix.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 249 | 'src/core/lib/support/sync_windows.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 250 | 'src/core/lib/support/thd.c', |
| 251 | 'src/core/lib/support/thd_posix.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 252 | 'src/core/lib/support/thd_windows.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 253 | 'src/core/lib/support/time.c', |
| 254 | 'src/core/lib/support/time_posix.c', |
| 255 | 'src/core/lib/support/time_precise.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 256 | 'src/core/lib/support/time_windows.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 257 | 'src/core/lib/support/tls_pthread.c', |
| 258 | 'src/core/lib/support/tmpfile_msys.c', |
| 259 | 'src/core/lib/support/tmpfile_posix.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 260 | 'src/core/lib/support/tmpfile_windows.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 261 | 'src/core/lib/support/wrap_memcpy.c', |
| 262 | 'src/core/lib/channel/channel_args.h', |
| 263 | 'src/core/lib/channel/channel_stack.h', |
| 264 | 'src/core/lib/channel/channel_stack_builder.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 265 | 'src/core/lib/channel/connected_channel.h', |
| 266 | 'src/core/lib/channel/context.h', |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 267 | 'src/core/lib/channel/handshaker.h', |
Mark D. Roth | 1f0f23c | 2017-01-06 13:07:19 -0800 | [diff] [blame] | 268 | 'src/core/lib/channel/handshaker_factory.h', |
| 269 | 'src/core/lib/channel/handshaker_registry.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 270 | 'src/core/lib/compression/algorithm_metadata.h', |
| 271 | 'src/core/lib/compression/message_compress.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 272 | 'src/core/lib/http/format_request.h', |
| 273 | 'src/core/lib/http/httpcli.h', |
| 274 | 'src/core/lib/http/parser.h', |
| 275 | 'src/core/lib/iomgr/closure.h', |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 276 | 'src/core/lib/iomgr/combiner.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 277 | 'src/core/lib/iomgr/endpoint.h', |
| 278 | 'src/core/lib/iomgr/endpoint_pair.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 279 | 'src/core/lib/iomgr/error.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 280 | 'src/core/lib/iomgr/error_internal.h', |
Craig Tiller | c67cc99 | 2017-04-27 10:15:51 -0700 | [diff] [blame] | 281 | 'src/core/lib/iomgr/ev_epoll1_linux.h', |
Sree Kuchibhotla | 5a1a3b4 | 2017-05-05 13:14:45 -0700 | [diff] [blame] | 282 | 'src/core/lib/iomgr/ev_epoll_limited_pollers_linux.h', |
Sree Kuchibhotla | d4fc32e | 2017-05-02 14:15:12 -0700 | [diff] [blame] | 283 | 'src/core/lib/iomgr/ev_epoll_thread_pool_linux.h', |
Craig Tiller | f4360d7 | 2017-04-07 08:51:00 -0700 | [diff] [blame] | 284 | 'src/core/lib/iomgr/ev_epollex_linux.h', |
Craig Tiller | c67cc99 | 2017-04-27 10:15:51 -0700 | [diff] [blame] | 285 | 'src/core/lib/iomgr/ev_epollsig_linux.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 286 | 'src/core/lib/iomgr/ev_poll_posix.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 287 | 'src/core/lib/iomgr/ev_posix.h', |
| 288 | 'src/core/lib/iomgr/exec_ctx.h', |
| 289 | 'src/core/lib/iomgr/executor.h', |
| 290 | 'src/core/lib/iomgr/iocp_windows.h', |
| 291 | 'src/core/lib/iomgr/iomgr.h', |
| 292 | 'src/core/lib/iomgr/iomgr_internal.h', |
| 293 | 'src/core/lib/iomgr/iomgr_posix.h', |
Craig Tiller | 819cd88 | 2017-04-25 13:18:22 -0700 | [diff] [blame] | 294 | 'src/core/lib/iomgr/is_epollexclusive_available.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 295 | 'src/core/lib/iomgr/load_file.h', |
Craig Tiller | 376887d | 2017-04-06 08:27:03 -0700 | [diff] [blame] | 296 | 'src/core/lib/iomgr/lockfree_event.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 297 | 'src/core/lib/iomgr/network_status_tracker.h', |
| 298 | 'src/core/lib/iomgr/polling_entity.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 299 | 'src/core/lib/iomgr/pollset.h', |
| 300 | 'src/core/lib/iomgr/pollset_set.h', |
| 301 | 'src/core/lib/iomgr/pollset_set_windows.h', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 302 | 'src/core/lib/iomgr/pollset_uv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 303 | 'src/core/lib/iomgr/pollset_windows.h', |
murgatroid99 | 5407089 | 2016-08-08 17:01:18 -0700 | [diff] [blame] | 304 | 'src/core/lib/iomgr/port.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 305 | 'src/core/lib/iomgr/resolve_address.h', |
Craig Tiller | 20afa3d | 2016-10-17 14:52:14 -0700 | [diff] [blame] | 306 | 'src/core/lib/iomgr/resource_quota.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 307 | 'src/core/lib/iomgr/sockaddr.h', |
| 308 | 'src/core/lib/iomgr/sockaddr_posix.h', |
| 309 | 'src/core/lib/iomgr/sockaddr_utils.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 310 | 'src/core/lib/iomgr/sockaddr_windows.h', |
Michael Warres | c46b3eb | 2017-02-22 22:57:04 -0500 | [diff] [blame] | 311 | 'src/core/lib/iomgr/socket_factory_posix.h', |
Yuchen Zeng | de3daf5 | 2016-10-13 17:26:26 -0700 | [diff] [blame] | 312 | 'src/core/lib/iomgr/socket_mutator.h', |
murgatroid99 | 79b3227 | 2016-08-08 13:38:30 -0700 | [diff] [blame] | 313 | 'src/core/lib/iomgr/socket_utils.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 314 | 'src/core/lib/iomgr/socket_utils_posix.h', |
| 315 | 'src/core/lib/iomgr/socket_windows.h', |
Craig Tiller | 819cd88 | 2017-04-25 13:18:22 -0700 | [diff] [blame] | 316 | 'src/core/lib/iomgr/sys_epoll_wrapper.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 317 | 'src/core/lib/iomgr/tcp_client.h', |
Craig Tiller | 8695876 | 2016-09-23 12:05:34 -0700 | [diff] [blame] | 318 | 'src/core/lib/iomgr/tcp_client_posix.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 319 | 'src/core/lib/iomgr/tcp_posix.h', |
| 320 | 'src/core/lib/iomgr/tcp_server.h', |
Yuchen Zeng | 47155ed | 2017-03-13 17:18:07 -0700 | [diff] [blame] | 321 | 'src/core/lib/iomgr/tcp_server_utils_posix.h', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 322 | 'src/core/lib/iomgr/tcp_uv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 323 | 'src/core/lib/iomgr/tcp_windows.h', |
| 324 | 'src/core/lib/iomgr/time_averaged_stats.h', |
| 325 | 'src/core/lib/iomgr/timer.h', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 326 | 'src/core/lib/iomgr/timer_generic.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 327 | 'src/core/lib/iomgr/timer_heap.h', |
Craig Tiller | c357179 | 2017-05-02 12:33:38 -0700 | [diff] [blame] | 328 | 'src/core/lib/iomgr/timer_manager.h', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 329 | 'src/core/lib/iomgr/timer_uv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 330 | 'src/core/lib/iomgr/udp_server.h', |
| 331 | 'src/core/lib/iomgr/unix_sockets_posix.h', |
Ken Payson | 31caabd | 2016-08-06 21:27:29 -0700 | [diff] [blame] | 332 | 'src/core/lib/iomgr/wakeup_fd_cv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 333 | 'src/core/lib/iomgr/wakeup_fd_pipe.h', |
| 334 | 'src/core/lib/iomgr/wakeup_fd_posix.h', |
| 335 | 'src/core/lib/iomgr/workqueue.h', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 336 | 'src/core/lib/iomgr/workqueue_uv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 337 | 'src/core/lib/iomgr/workqueue_windows.h', |
| 338 | 'src/core/lib/json/json.h', |
| 339 | 'src/core/lib/json/json_common.h', |
| 340 | 'src/core/lib/json/json_reader.h', |
| 341 | 'src/core/lib/json/json_writer.h', |
Craig Tiller | 790f6af | 2017-03-30 12:39:24 -0700 | [diff] [blame] | 342 | 'src/core/lib/slice/b64.h', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 343 | 'src/core/lib/slice/percent_encoding.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 344 | 'src/core/lib/slice/slice_hash_table.h', |
Craig Tiller | 30d50fe | 2016-12-06 19:34:32 -0800 | [diff] [blame] | 345 | 'src/core/lib/slice/slice_internal.h', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 346 | 'src/core/lib/slice/slice_string_helpers.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 347 | 'src/core/lib/surface/api_trace.h', |
| 348 | 'src/core/lib/surface/call.h', |
| 349 | 'src/core/lib/surface/call_test_only.h', |
| 350 | 'src/core/lib/surface/channel.h', |
| 351 | 'src/core/lib/surface/channel_init.h', |
| 352 | 'src/core/lib/surface/channel_stack_type.h', |
| 353 | 'src/core/lib/surface/completion_queue.h', |
Sree Kuchibhotla | bf18428 | 2017-03-21 15:18:58 -0700 | [diff] [blame] | 354 | 'src/core/lib/surface/completion_queue_factory.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 355 | 'src/core/lib/surface/event_string.h', |
| 356 | 'src/core/lib/surface/init.h', |
| 357 | 'src/core/lib/surface/lame_client.h', |
| 358 | 'src/core/lib/surface/server.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 359 | 'src/core/lib/surface/validate_metadata.h', |
Craig Tiller | 9e0066b | 2016-10-20 14:04:18 -0700 | [diff] [blame] | 360 | 'src/core/lib/transport/bdp_estimator.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 361 | 'src/core/lib/transport/byte_stream.h', |
| 362 | 'src/core/lib/transport/connectivity_state.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 363 | 'src/core/lib/transport/error_utils.h', |
| 364 | 'src/core/lib/transport/http2_errors.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 365 | 'src/core/lib/transport/metadata.h', |
| 366 | 'src/core/lib/transport/metadata_batch.h', |
Craig Tiller | dd2fa64 | 2016-10-20 15:46:32 -0700 | [diff] [blame] | 367 | 'src/core/lib/transport/pid_controller.h', |
Mark D. Roth | ea846a0 | 2016-11-03 11:32:54 -0700 | [diff] [blame] | 368 | 'src/core/lib/transport/service_config.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 369 | 'src/core/lib/transport/static_metadata.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 370 | 'src/core/lib/transport/status_conversion.h', |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 371 | 'src/core/lib/transport/timeout_encoding.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 372 | 'src/core/lib/transport/transport.h', |
| 373 | 'src/core/lib/transport/transport_impl.h', |
Craig Tiller | 1f47730 | 2017-05-05 11:01:25 -0700 | [diff] [blame] | 374 | 'src/core/lib/debug/trace.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 375 | 'src/core/ext/transport/chttp2/transport/bin_decoder.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 376 | 'src/core/ext/transport/chttp2/transport/bin_encoder.h', |
| 377 | 'src/core/ext/transport/chttp2/transport/chttp2_transport.h', |
| 378 | 'src/core/ext/transport/chttp2/transport/frame.h', |
| 379 | 'src/core/ext/transport/chttp2/transport/frame_data.h', |
| 380 | 'src/core/ext/transport/chttp2/transport/frame_goaway.h', |
| 381 | 'src/core/ext/transport/chttp2/transport/frame_ping.h', |
| 382 | 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h', |
| 383 | 'src/core/ext/transport/chttp2/transport/frame_settings.h', |
| 384 | 'src/core/ext/transport/chttp2/transport/frame_window_update.h', |
| 385 | 'src/core/ext/transport/chttp2/transport/hpack_encoder.h', |
| 386 | 'src/core/ext/transport/chttp2/transport/hpack_parser.h', |
| 387 | 'src/core/ext/transport/chttp2/transport/hpack_table.h', |
Craig Tiller | c8f62bc | 2017-04-03 16:25:45 -0700 | [diff] [blame] | 388 | 'src/core/ext/transport/chttp2/transport/http2_settings.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 389 | 'src/core/ext/transport/chttp2/transport/huffsyms.h', |
| 390 | 'src/core/ext/transport/chttp2/transport/incoming_metadata.h', |
| 391 | 'src/core/ext/transport/chttp2/transport/internal.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 392 | 'src/core/ext/transport/chttp2/transport/stream_map.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 393 | 'src/core/ext/transport/chttp2/transport/varint.h', |
| 394 | 'src/core/ext/transport/chttp2/alpn/alpn.h', |
Craig Tiller | af76743 | 2017-04-03 13:54:31 -0700 | [diff] [blame] | 395 | 'src/core/ext/filters/http/client/http_client_filter.h', |
Craig Tiller | a24b971 | 2017-04-06 09:03:21 -0700 | [diff] [blame] | 396 | 'src/core/ext/filters/http/message_compress/message_compress_filter.h', |
Craig Tiller | af76743 | 2017-04-03 13:54:31 -0700 | [diff] [blame] | 397 | 'src/core/ext/filters/http/server/http_server_filter.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 398 | 'src/core/lib/security/context/security_context.h', |
| 399 | 'src/core/lib/security/credentials/composite/composite_credentials.h', |
| 400 | 'src/core/lib/security/credentials/credentials.h', |
| 401 | 'src/core/lib/security/credentials/fake/fake_credentials.h', |
| 402 | 'src/core/lib/security/credentials/google_default/google_default_credentials.h', |
| 403 | 'src/core/lib/security/credentials/iam/iam_credentials.h', |
| 404 | 'src/core/lib/security/credentials/jwt/json_token.h', |
| 405 | 'src/core/lib/security/credentials/jwt/jwt_credentials.h', |
| 406 | 'src/core/lib/security/credentials/jwt/jwt_verifier.h', |
| 407 | 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h', |
| 408 | 'src/core/lib/security/credentials/plugin/plugin_credentials.h', |
| 409 | 'src/core/lib/security/credentials/ssl/ssl_credentials.h', |
| 410 | 'src/core/lib/security/transport/auth_filters.h', |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 411 | 'src/core/lib/security/transport/lb_targets_info.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 412 | 'src/core/lib/security/transport/secure_endpoint.h', |
| 413 | 'src/core/lib/security/transport/security_connector.h', |
Mark D. Roth | 071cacf | 2016-11-17 13:17:56 -0800 | [diff] [blame] | 414 | 'src/core/lib/security/transport/security_handshaker.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 415 | 'src/core/lib/security/transport/tsi_error.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 416 | 'src/core/lib/security/util/json_util.h', |
Craig Tiller | 134fed3 | 2017-03-28 14:27:18 -0700 | [diff] [blame] | 417 | 'src/core/tsi/fake_transport_security.h', |
| 418 | 'src/core/tsi/ssl_transport_security.h', |
| 419 | 'src/core/tsi/ssl_types.h', |
| 420 | 'src/core/tsi/transport_security.h', |
jiangtaoli2016 | e69881d | 2017-04-10 14:29:43 -0700 | [diff] [blame] | 421 | 'src/core/tsi/transport_security_adapter.h', |
Craig Tiller | 134fed3 | 2017-03-28 14:27:18 -0700 | [diff] [blame] | 422 | 'src/core/tsi/transport_security_interface.h', |
Mark D. Roth | 7140382 | 2016-12-02 10:51:39 -0800 | [diff] [blame] | 423 | 'src/core/ext/transport/chttp2/server/chttp2_server.h', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 424 | 'src/core/ext/filters/client_channel/client_channel.h', |
| 425 | 'src/core/ext/filters/client_channel/client_channel_factory.h', |
| 426 | 'src/core/ext/filters/client_channel/connector.h', |
| 427 | 'src/core/ext/filters/client_channel/http_connect_handshaker.h', |
| 428 | 'src/core/ext/filters/client_channel/http_proxy.h', |
| 429 | 'src/core/ext/filters/client_channel/lb_policy.h', |
| 430 | 'src/core/ext/filters/client_channel/lb_policy_factory.h', |
| 431 | 'src/core/ext/filters/client_channel/lb_policy_registry.h', |
| 432 | 'src/core/ext/filters/client_channel/parse_address.h', |
| 433 | 'src/core/ext/filters/client_channel/proxy_mapper.h', |
| 434 | 'src/core/ext/filters/client_channel/proxy_mapper_registry.h', |
| 435 | 'src/core/ext/filters/client_channel/resolver.h', |
| 436 | 'src/core/ext/filters/client_channel/resolver_factory.h', |
| 437 | 'src/core/ext/filters/client_channel/resolver_registry.h', |
| 438 | 'src/core/ext/filters/client_channel/retry_throttle.h', |
| 439 | 'src/core/ext/filters/client_channel/subchannel.h', |
| 440 | 'src/core/ext/filters/client_channel/subchannel_index.h', |
| 441 | 'src/core/ext/filters/client_channel/uri_parser.h', |
Craig Tiller | 71d6ce6 | 2017-04-06 09:10:09 -0700 | [diff] [blame] | 442 | 'src/core/ext/filters/deadline/deadline_filter.h', |
Mark D. Roth | 8686cab | 2016-11-17 13:12:17 -0800 | [diff] [blame] | 443 | 'src/core/ext/transport/chttp2/client/chttp2_connector.h', |
Mark D. Roth | 09e458c | 2017-05-02 08:13:26 -0700 | [diff] [blame] | 444 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 445 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h', |
| 446 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h', |
Mark D. Roth | 09e458c | 2017-05-02 08:13:26 -0700 | [diff] [blame] | 447 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 448 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h', |
| 449 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 450 | 'third_party/nanopb/pb.h', |
| 451 | 'third_party/nanopb/pb_common.h', |
| 452 | 'third_party/nanopb/pb_decode.h', |
| 453 | 'third_party/nanopb/pb_encode.h', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 454 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h', |
| 455 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h', |
| 456 | 'src/core/ext/filters/load_reporting/load_reporting.h', |
| 457 | 'src/core/ext/filters/load_reporting/load_reporting_filter.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 458 | 'src/core/ext/census/aggregation.h', |
Alistair Veitch | 3abd27e | 2016-07-21 17:29:04 -0700 | [diff] [blame] | 459 | 'src/core/ext/census/base_resources.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 460 | 'src/core/ext/census/census_interface.h', |
| 461 | 'src/core/ext/census/census_rpc_stats.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 462 | 'src/core/ext/census/gen/census.pb.h', |
Alistair Veitch | a0c69f9 | 2016-08-31 12:01:27 -0700 | [diff] [blame] | 463 | 'src/core/ext/census/gen/trace_context.pb.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 464 | 'src/core/ext/census/grpc_filter.h', |
| 465 | 'src/core/ext/census/mlog.h', |
Alistair Veitch | 3abd27e | 2016-07-21 17:29:04 -0700 | [diff] [blame] | 466 | 'src/core/ext/census/resource.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 467 | 'src/core/ext/census/rpc_metric_id.h', |
Vizerai | 12d1fc6 | 2016-09-09 14:22:19 -0700 | [diff] [blame] | 468 | 'src/core/ext/census/trace_context.h', |
Vizerai | 0e5b67f | 2017-01-20 14:02:18 -0800 | [diff] [blame] | 469 | 'src/core/ext/census/trace_label.h', |
| 470 | 'src/core/ext/census/trace_propagation.h', |
| 471 | 'src/core/ext/census/trace_status.h', |
| 472 | 'src/core/ext/census/trace_string.h', |
| 473 | 'src/core/ext/census/tracing.h', |
Craig Tiller | 6d4894e | 2017-03-31 17:22:06 -0700 | [diff] [blame] | 474 | 'src/core/ext/filters/max_age/max_age_filter.h', |
Craig Tiller | 9b3648a | 2017-04-03 12:25:19 -0700 | [diff] [blame] | 475 | 'src/core/ext/filters/message_size/message_size_filter.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 476 | 'src/core/lib/surface/init.c', |
| 477 | 'src/core/lib/channel/channel_args.c', |
| 478 | 'src/core/lib/channel/channel_stack.c', |
| 479 | 'src/core/lib/channel/channel_stack_builder.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 480 | 'src/core/lib/channel/connected_channel.c', |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 481 | 'src/core/lib/channel/handshaker.c', |
Mark D. Roth | 1f0f23c | 2017-01-06 13:07:19 -0800 | [diff] [blame] | 482 | 'src/core/lib/channel/handshaker_factory.c', |
| 483 | 'src/core/lib/channel/handshaker_registry.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 484 | 'src/core/lib/compression/compression.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 485 | 'src/core/lib/compression/message_compress.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 486 | 'src/core/lib/http/format_request.c', |
| 487 | 'src/core/lib/http/httpcli.c', |
| 488 | 'src/core/lib/http/parser.c', |
| 489 | 'src/core/lib/iomgr/closure.c', |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 490 | 'src/core/lib/iomgr/combiner.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 491 | 'src/core/lib/iomgr/endpoint.c', |
| 492 | 'src/core/lib/iomgr/endpoint_pair_posix.c', |
murgatroid99 | c36f6ea | 2016-10-03 09:24:09 -0700 | [diff] [blame] | 493 | 'src/core/lib/iomgr/endpoint_pair_uv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 494 | 'src/core/lib/iomgr/endpoint_pair_windows.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 495 | 'src/core/lib/iomgr/error.c', |
Craig Tiller | c67cc99 | 2017-04-27 10:15:51 -0700 | [diff] [blame] | 496 | 'src/core/lib/iomgr/ev_epoll1_linux.c', |
Sree Kuchibhotla | 5a1a3b4 | 2017-05-05 13:14:45 -0700 | [diff] [blame] | 497 | 'src/core/lib/iomgr/ev_epoll_limited_pollers_linux.c', |
Sree Kuchibhotla | d4fc32e | 2017-05-02 14:15:12 -0700 | [diff] [blame] | 498 | 'src/core/lib/iomgr/ev_epoll_thread_pool_linux.c', |
Craig Tiller | f4360d7 | 2017-04-07 08:51:00 -0700 | [diff] [blame] | 499 | 'src/core/lib/iomgr/ev_epollex_linux.c', |
Craig Tiller | c67cc99 | 2017-04-27 10:15:51 -0700 | [diff] [blame] | 500 | 'src/core/lib/iomgr/ev_epollsig_linux.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 501 | 'src/core/lib/iomgr/ev_poll_posix.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 502 | 'src/core/lib/iomgr/ev_posix.c', |
| 503 | 'src/core/lib/iomgr/exec_ctx.c', |
| 504 | 'src/core/lib/iomgr/executor.c', |
| 505 | 'src/core/lib/iomgr/iocp_windows.c', |
| 506 | 'src/core/lib/iomgr/iomgr.c', |
| 507 | 'src/core/lib/iomgr/iomgr_posix.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 508 | 'src/core/lib/iomgr/iomgr_uv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 509 | 'src/core/lib/iomgr/iomgr_windows.c', |
Craig Tiller | 819cd88 | 2017-04-25 13:18:22 -0700 | [diff] [blame] | 510 | 'src/core/lib/iomgr/is_epollexclusive_available.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 511 | 'src/core/lib/iomgr/load_file.c', |
Craig Tiller | 376887d | 2017-04-06 08:27:03 -0700 | [diff] [blame] | 512 | 'src/core/lib/iomgr/lockfree_event.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 513 | 'src/core/lib/iomgr/network_status_tracker.c', |
| 514 | 'src/core/lib/iomgr/polling_entity.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 515 | 'src/core/lib/iomgr/pollset_set_uv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 516 | 'src/core/lib/iomgr/pollset_set_windows.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 517 | 'src/core/lib/iomgr/pollset_uv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 518 | 'src/core/lib/iomgr/pollset_windows.c', |
| 519 | 'src/core/lib/iomgr/resolve_address_posix.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 520 | 'src/core/lib/iomgr/resolve_address_uv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 521 | 'src/core/lib/iomgr/resolve_address_windows.c', |
Craig Tiller | 20afa3d | 2016-10-17 14:52:14 -0700 | [diff] [blame] | 522 | 'src/core/lib/iomgr/resource_quota.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 523 | 'src/core/lib/iomgr/sockaddr_utils.c', |
Michael Warres | c46b3eb | 2017-02-22 22:57:04 -0500 | [diff] [blame] | 524 | 'src/core/lib/iomgr/socket_factory_posix.c', |
Yuchen Zeng | de3daf5 | 2016-10-13 17:26:26 -0700 | [diff] [blame] | 525 | 'src/core/lib/iomgr/socket_mutator.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 526 | 'src/core/lib/iomgr/socket_utils_common_posix.c', |
| 527 | 'src/core/lib/iomgr/socket_utils_linux.c', |
| 528 | 'src/core/lib/iomgr/socket_utils_posix.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 529 | 'src/core/lib/iomgr/socket_utils_uv.c', |
murgatroid99 | 79b3227 | 2016-08-08 13:38:30 -0700 | [diff] [blame] | 530 | 'src/core/lib/iomgr/socket_utils_windows.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 531 | 'src/core/lib/iomgr/socket_windows.c', |
| 532 | 'src/core/lib/iomgr/tcp_client_posix.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 533 | 'src/core/lib/iomgr/tcp_client_uv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 534 | 'src/core/lib/iomgr/tcp_client_windows.c', |
| 535 | 'src/core/lib/iomgr/tcp_posix.c', |
| 536 | 'src/core/lib/iomgr/tcp_server_posix.c', |
Yuchen Zeng | 68745bb | 2017-03-14 17:51:07 -0700 | [diff] [blame] | 537 | 'src/core/lib/iomgr/tcp_server_utils_posix_common.c', |
Yuchen Zeng | 47155ed | 2017-03-13 17:18:07 -0700 | [diff] [blame] | 538 | 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.c', |
| 539 | 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 540 | 'src/core/lib/iomgr/tcp_server_uv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 541 | 'src/core/lib/iomgr/tcp_server_windows.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 542 | 'src/core/lib/iomgr/tcp_uv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 543 | 'src/core/lib/iomgr/tcp_windows.c', |
| 544 | 'src/core/lib/iomgr/time_averaged_stats.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 545 | 'src/core/lib/iomgr/timer_generic.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 546 | 'src/core/lib/iomgr/timer_heap.c', |
Craig Tiller | c357179 | 2017-05-02 12:33:38 -0700 | [diff] [blame] | 547 | 'src/core/lib/iomgr/timer_manager.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 548 | 'src/core/lib/iomgr/timer_uv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 549 | 'src/core/lib/iomgr/udp_server.c', |
| 550 | 'src/core/lib/iomgr/unix_sockets_posix.c', |
| 551 | 'src/core/lib/iomgr/unix_sockets_posix_noop.c', |
Ken Payson | 31caabd | 2016-08-06 21:27:29 -0700 | [diff] [blame] | 552 | 'src/core/lib/iomgr/wakeup_fd_cv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 553 | 'src/core/lib/iomgr/wakeup_fd_eventfd.c', |
| 554 | 'src/core/lib/iomgr/wakeup_fd_nospecial.c', |
| 555 | 'src/core/lib/iomgr/wakeup_fd_pipe.c', |
| 556 | 'src/core/lib/iomgr/wakeup_fd_posix.c', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 557 | 'src/core/lib/iomgr/workqueue_uv.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 558 | 'src/core/lib/iomgr/workqueue_windows.c', |
| 559 | 'src/core/lib/json/json.c', |
| 560 | 'src/core/lib/json/json_reader.c', |
| 561 | 'src/core/lib/json/json_string.c', |
| 562 | 'src/core/lib/json/json_writer.c', |
Craig Tiller | 29b527f | 2017-03-30 10:27:20 -0700 | [diff] [blame] | 563 | 'src/core/lib/slice/b64.c', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 564 | 'src/core/lib/slice/percent_encoding.c', |
| 565 | 'src/core/lib/slice/slice.c', |
| 566 | 'src/core/lib/slice/slice_buffer.c', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 567 | 'src/core/lib/slice/slice_hash_table.c', |
| 568 | 'src/core/lib/slice/slice_intern.c', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 569 | 'src/core/lib/slice/slice_string_helpers.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 570 | 'src/core/lib/surface/alarm.c', |
| 571 | 'src/core/lib/surface/api_trace.c', |
| 572 | 'src/core/lib/surface/byte_buffer.c', |
| 573 | 'src/core/lib/surface/byte_buffer_reader.c', |
| 574 | 'src/core/lib/surface/call.c', |
| 575 | 'src/core/lib/surface/call_details.c', |
| 576 | 'src/core/lib/surface/call_log_batch.c', |
| 577 | 'src/core/lib/surface/channel.c', |
| 578 | 'src/core/lib/surface/channel_init.c', |
| 579 | 'src/core/lib/surface/channel_ping.c', |
| 580 | 'src/core/lib/surface/channel_stack_type.c', |
| 581 | 'src/core/lib/surface/completion_queue.c', |
Sree Kuchibhotla | bf18428 | 2017-03-21 15:18:58 -0700 | [diff] [blame] | 582 | 'src/core/lib/surface/completion_queue_factory.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 583 | 'src/core/lib/surface/event_string.c', |
Craig Tiller | 8ebb544 | 2017-04-07 16:01:55 -0700 | [diff] [blame] | 584 | 'src/core/lib/surface/lame_client.cc', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 585 | 'src/core/lib/surface/metadata_array.c', |
| 586 | 'src/core/lib/surface/server.c', |
| 587 | 'src/core/lib/surface/validate_metadata.c', |
| 588 | 'src/core/lib/surface/version.c', |
Craig Tiller | 9e0066b | 2016-10-20 14:04:18 -0700 | [diff] [blame] | 589 | 'src/core/lib/transport/bdp_estimator.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 590 | 'src/core/lib/transport/byte_stream.c', |
| 591 | 'src/core/lib/transport/connectivity_state.c', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 592 | 'src/core/lib/transport/error_utils.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 593 | 'src/core/lib/transport/metadata.c', |
| 594 | 'src/core/lib/transport/metadata_batch.c', |
Craig Tiller | dd2fa64 | 2016-10-20 15:46:32 -0700 | [diff] [blame] | 595 | 'src/core/lib/transport/pid_controller.c', |
Mark D. Roth | ea846a0 | 2016-11-03 11:32:54 -0700 | [diff] [blame] | 596 | 'src/core/lib/transport/service_config.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 597 | 'src/core/lib/transport/static_metadata.c', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 598 | 'src/core/lib/transport/status_conversion.c', |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 599 | 'src/core/lib/transport/timeout_encoding.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 600 | 'src/core/lib/transport/transport.c', |
| 601 | 'src/core/lib/transport/transport_op_string.c', |
Craig Tiller | 1f47730 | 2017-05-05 11:01:25 -0700 | [diff] [blame] | 602 | 'src/core/lib/debug/trace.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 603 | 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 604 | 'src/core/ext/transport/chttp2/transport/bin_decoder.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 605 | 'src/core/ext/transport/chttp2/transport/bin_encoder.c', |
| 606 | 'src/core/ext/transport/chttp2/transport/chttp2_plugin.c', |
| 607 | 'src/core/ext/transport/chttp2/transport/chttp2_transport.c', |
| 608 | 'src/core/ext/transport/chttp2/transport/frame_data.c', |
| 609 | 'src/core/ext/transport/chttp2/transport/frame_goaway.c', |
| 610 | 'src/core/ext/transport/chttp2/transport/frame_ping.c', |
| 611 | 'src/core/ext/transport/chttp2/transport/frame_rst_stream.c', |
| 612 | 'src/core/ext/transport/chttp2/transport/frame_settings.c', |
| 613 | 'src/core/ext/transport/chttp2/transport/frame_window_update.c', |
| 614 | 'src/core/ext/transport/chttp2/transport/hpack_encoder.c', |
| 615 | 'src/core/ext/transport/chttp2/transport/hpack_parser.c', |
| 616 | 'src/core/ext/transport/chttp2/transport/hpack_table.c', |
Craig Tiller | c8f62bc | 2017-04-03 16:25:45 -0700 | [diff] [blame] | 617 | 'src/core/ext/transport/chttp2/transport/http2_settings.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 618 | 'src/core/ext/transport/chttp2/transport/huffsyms.c', |
| 619 | 'src/core/ext/transport/chttp2/transport/incoming_metadata.c', |
| 620 | 'src/core/ext/transport/chttp2/transport/parsing.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 621 | 'src/core/ext/transport/chttp2/transport/stream_lists.c', |
| 622 | 'src/core/ext/transport/chttp2/transport/stream_map.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 623 | 'src/core/ext/transport/chttp2/transport/varint.c', |
| 624 | 'src/core/ext/transport/chttp2/transport/writing.c', |
| 625 | 'src/core/ext/transport/chttp2/alpn/alpn.c', |
Craig Tiller | af76743 | 2017-04-03 13:54:31 -0700 | [diff] [blame] | 626 | 'src/core/ext/filters/http/client/http_client_filter.c', |
Craig Tiller | af76743 | 2017-04-03 13:54:31 -0700 | [diff] [blame] | 627 | 'src/core/ext/filters/http/http_filters_plugin.c', |
Craig Tiller | 71d6ce6 | 2017-04-06 09:10:09 -0700 | [diff] [blame] | 628 | 'src/core/ext/filters/http/message_compress/message_compress_filter.c', |
Craig Tiller | af76743 | 2017-04-03 13:54:31 -0700 | [diff] [blame] | 629 | 'src/core/ext/filters/http/server/http_server_filter.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 630 | 'src/core/lib/http/httpcli_security_connector.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 631 | 'src/core/lib/security/context/security_context.c', |
| 632 | 'src/core/lib/security/credentials/composite/composite_credentials.c', |
| 633 | 'src/core/lib/security/credentials/credentials.c', |
| 634 | 'src/core/lib/security/credentials/credentials_metadata.c', |
| 635 | 'src/core/lib/security/credentials/fake/fake_credentials.c', |
murgatroid99 | 7c20590 | 2016-08-09 10:07:42 -0700 | [diff] [blame] | 636 | 'src/core/lib/security/credentials/google_default/credentials_generic.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 637 | 'src/core/lib/security/credentials/google_default/google_default_credentials.c', |
| 638 | 'src/core/lib/security/credentials/iam/iam_credentials.c', |
| 639 | 'src/core/lib/security/credentials/jwt/json_token.c', |
| 640 | 'src/core/lib/security/credentials/jwt/jwt_credentials.c', |
| 641 | 'src/core/lib/security/credentials/jwt/jwt_verifier.c', |
| 642 | 'src/core/lib/security/credentials/oauth2/oauth2_credentials.c', |
| 643 | 'src/core/lib/security/credentials/plugin/plugin_credentials.c', |
| 644 | 'src/core/lib/security/credentials/ssl/ssl_credentials.c', |
| 645 | 'src/core/lib/security/transport/client_auth_filter.c', |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 646 | 'src/core/lib/security/transport/lb_targets_info.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 647 | 'src/core/lib/security/transport/secure_endpoint.c', |
| 648 | 'src/core/lib/security/transport/security_connector.c', |
Mark D. Roth | 071cacf | 2016-11-17 13:17:56 -0800 | [diff] [blame] | 649 | 'src/core/lib/security/transport/security_handshaker.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 650 | 'src/core/lib/security/transport/server_auth_filter.c', |
| 651 | 'src/core/lib/security/transport/tsi_error.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 652 | 'src/core/lib/security/util/json_util.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 653 | 'src/core/lib/surface/init_secure.c', |
Craig Tiller | 134fed3 | 2017-03-28 14:27:18 -0700 | [diff] [blame] | 654 | 'src/core/tsi/fake_transport_security.c', |
| 655 | 'src/core/tsi/ssl_transport_security.c', |
| 656 | 'src/core/tsi/transport_security.c', |
jiangtaoli2016 | e69881d | 2017-04-10 14:29:43 -0700 | [diff] [blame] | 657 | 'src/core/tsi/transport_security_adapter.c', |
Mark D. Roth | 7140382 | 2016-12-02 10:51:39 -0800 | [diff] [blame] | 658 | 'src/core/ext/transport/chttp2/server/chttp2_server.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 659 | 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.c', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 660 | 'src/core/ext/filters/client_channel/channel_connectivity.c', |
| 661 | 'src/core/ext/filters/client_channel/client_channel.c', |
| 662 | 'src/core/ext/filters/client_channel/client_channel_factory.c', |
| 663 | 'src/core/ext/filters/client_channel/client_channel_plugin.c', |
| 664 | 'src/core/ext/filters/client_channel/connector.c', |
| 665 | 'src/core/ext/filters/client_channel/http_connect_handshaker.c', |
| 666 | 'src/core/ext/filters/client_channel/http_proxy.c', |
| 667 | 'src/core/ext/filters/client_channel/lb_policy.c', |
| 668 | 'src/core/ext/filters/client_channel/lb_policy_factory.c', |
| 669 | 'src/core/ext/filters/client_channel/lb_policy_registry.c', |
| 670 | 'src/core/ext/filters/client_channel/parse_address.c', |
| 671 | 'src/core/ext/filters/client_channel/proxy_mapper.c', |
| 672 | 'src/core/ext/filters/client_channel/proxy_mapper_registry.c', |
| 673 | 'src/core/ext/filters/client_channel/resolver.c', |
| 674 | 'src/core/ext/filters/client_channel/resolver_factory.c', |
| 675 | 'src/core/ext/filters/client_channel/resolver_registry.c', |
| 676 | 'src/core/ext/filters/client_channel/retry_throttle.c', |
| 677 | 'src/core/ext/filters/client_channel/subchannel.c', |
| 678 | 'src/core/ext/filters/client_channel/subchannel_index.c', |
| 679 | 'src/core/ext/filters/client_channel/uri_parser.c', |
Craig Tiller | 71d6ce6 | 2017-04-06 09:10:09 -0700 | [diff] [blame] | 680 | 'src/core/ext/filters/deadline/deadline_filter.c', |
Mark D. Roth | 8686cab | 2016-11-17 13:12:17 -0800 | [diff] [blame] | 681 | 'src/core/ext/transport/chttp2/client/chttp2_connector.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 682 | 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 683 | 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 684 | 'src/core/ext/transport/chttp2/client/insecure/channel_create.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 685 | 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c', |
Mark D. Roth | 09e458c | 2017-05-02 08:13:26 -0700 | [diff] [blame] | 686 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.c', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 687 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c', |
| 688 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.c', |
Mark D. Roth | 09e458c | 2017-05-02 08:13:26 -0700 | [diff] [blame] | 689 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.c', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 690 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.c', |
| 691 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 692 | 'third_party/nanopb/pb_common.c', |
| 693 | 'third_party/nanopb/pb_decode.c', |
| 694 | 'third_party/nanopb/pb_encode.c', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 695 | 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.c', |
| 696 | 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.c', |
| 697 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.c', |
| 698 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.c', |
| 699 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.c', |
| 700 | 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.c', |
| 701 | 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.c', |
| 702 | 'src/core/ext/filters/load_reporting/load_reporting.c', |
| 703 | 'src/core/ext/filters/load_reporting/load_reporting_filter.c', |
Alistair Veitch | 3abd27e | 2016-07-21 17:29:04 -0700 | [diff] [blame] | 704 | 'src/core/ext/census/base_resources.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 705 | 'src/core/ext/census/context.c', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 706 | 'src/core/ext/census/gen/census.pb.c', |
Alistair Veitch | a0c69f9 | 2016-08-31 12:01:27 -0700 | [diff] [blame] | 707 | 'src/core/ext/census/gen/trace_context.pb.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 708 | 'src/core/ext/census/grpc_context.c', |
| 709 | 'src/core/ext/census/grpc_filter.c', |
| 710 | 'src/core/ext/census/grpc_plugin.c', |
| 711 | 'src/core/ext/census/initialize.c', |
| 712 | 'src/core/ext/census/mlog.c', |
| 713 | 'src/core/ext/census/operation.c', |
| 714 | 'src/core/ext/census/placeholders.c', |
Alistair Veitch | 3abd27e | 2016-07-21 17:29:04 -0700 | [diff] [blame] | 715 | 'src/core/ext/census/resource.c', |
Vizerai | 12d1fc6 | 2016-09-09 14:22:19 -0700 | [diff] [blame] | 716 | 'src/core/ext/census/trace_context.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 717 | 'src/core/ext/census/tracing.c', |
Craig Tiller | 6d4894e | 2017-03-31 17:22:06 -0700 | [diff] [blame] | 718 | 'src/core/ext/filters/max_age/max_age_filter.c', |
Craig Tiller | 9b3648a | 2017-04-03 12:25:19 -0700 | [diff] [blame] | 719 | 'src/core/ext/filters/message_size/message_size_filter.c', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 720 | 'src/core/plugin_registry/grpc_plugin_registry.c' |
| 721 | |
| 722 | ss.private_header_files = 'src/core/lib/profiling/timers.h', |
Craig Tiller | 9202b3f | 2017-03-12 22:30:38 -0700 | [diff] [blame] | 723 | 'src/core/lib/support/arena.h', |
Craig Tiller | 4d780a5 | 2017-04-12 13:47:18 -0700 | [diff] [blame] | 724 | 'src/core/lib/support/atomic.h', |
| 725 | 'src/core/lib/support/atomic_with_atm.h', |
| 726 | 'src/core/lib/support/atomic_with_std.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 727 | 'src/core/lib/support/backoff.h', |
| 728 | 'src/core/lib/support/block_annotate.h', |
| 729 | 'src/core/lib/support/env.h', |
Craig Tiller | b3d7010 | 2017-03-31 14:17:09 -0700 | [diff] [blame] | 730 | 'src/core/lib/support/memory.h', |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 731 | 'src/core/lib/support/mpscq.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 732 | 'src/core/lib/support/murmur_hash.h', |
Craig Tiller | edbf2b9 | 2017-02-27 07:24:00 -0800 | [diff] [blame] | 733 | 'src/core/lib/support/spinlock.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 734 | 'src/core/lib/support/stack_lockfree.h', |
| 735 | 'src/core/lib/support/string.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 736 | 'src/core/lib/support/string_windows.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 737 | 'src/core/lib/support/thd_internal.h', |
| 738 | 'src/core/lib/support/time_precise.h', |
| 739 | 'src/core/lib/support/tmpfile.h', |
| 740 | 'src/core/lib/channel/channel_args.h', |
| 741 | 'src/core/lib/channel/channel_stack.h', |
| 742 | 'src/core/lib/channel/channel_stack_builder.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 743 | 'src/core/lib/channel/connected_channel.h', |
| 744 | 'src/core/lib/channel/context.h', |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 745 | 'src/core/lib/channel/handshaker.h', |
Mark D. Roth | 1f0f23c | 2017-01-06 13:07:19 -0800 | [diff] [blame] | 746 | 'src/core/lib/channel/handshaker_factory.h', |
| 747 | 'src/core/lib/channel/handshaker_registry.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 748 | 'src/core/lib/compression/algorithm_metadata.h', |
| 749 | 'src/core/lib/compression/message_compress.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 750 | 'src/core/lib/http/format_request.h', |
| 751 | 'src/core/lib/http/httpcli.h', |
| 752 | 'src/core/lib/http/parser.h', |
| 753 | 'src/core/lib/iomgr/closure.h', |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 754 | 'src/core/lib/iomgr/combiner.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 755 | 'src/core/lib/iomgr/endpoint.h', |
| 756 | 'src/core/lib/iomgr/endpoint_pair.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 757 | 'src/core/lib/iomgr/error.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 758 | 'src/core/lib/iomgr/error_internal.h', |
Craig Tiller | c67cc99 | 2017-04-27 10:15:51 -0700 | [diff] [blame] | 759 | 'src/core/lib/iomgr/ev_epoll1_linux.h', |
Sree Kuchibhotla | 5a1a3b4 | 2017-05-05 13:14:45 -0700 | [diff] [blame] | 760 | 'src/core/lib/iomgr/ev_epoll_limited_pollers_linux.h', |
Sree Kuchibhotla | d4fc32e | 2017-05-02 14:15:12 -0700 | [diff] [blame] | 761 | 'src/core/lib/iomgr/ev_epoll_thread_pool_linux.h', |
Craig Tiller | f4360d7 | 2017-04-07 08:51:00 -0700 | [diff] [blame] | 762 | 'src/core/lib/iomgr/ev_epollex_linux.h', |
Craig Tiller | c67cc99 | 2017-04-27 10:15:51 -0700 | [diff] [blame] | 763 | 'src/core/lib/iomgr/ev_epollsig_linux.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 764 | 'src/core/lib/iomgr/ev_poll_posix.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 765 | 'src/core/lib/iomgr/ev_posix.h', |
| 766 | 'src/core/lib/iomgr/exec_ctx.h', |
| 767 | 'src/core/lib/iomgr/executor.h', |
| 768 | 'src/core/lib/iomgr/iocp_windows.h', |
| 769 | 'src/core/lib/iomgr/iomgr.h', |
| 770 | 'src/core/lib/iomgr/iomgr_internal.h', |
| 771 | 'src/core/lib/iomgr/iomgr_posix.h', |
Craig Tiller | 819cd88 | 2017-04-25 13:18:22 -0700 | [diff] [blame] | 772 | 'src/core/lib/iomgr/is_epollexclusive_available.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 773 | 'src/core/lib/iomgr/load_file.h', |
Craig Tiller | 376887d | 2017-04-06 08:27:03 -0700 | [diff] [blame] | 774 | 'src/core/lib/iomgr/lockfree_event.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 775 | 'src/core/lib/iomgr/network_status_tracker.h', |
| 776 | 'src/core/lib/iomgr/polling_entity.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 777 | 'src/core/lib/iomgr/pollset.h', |
| 778 | 'src/core/lib/iomgr/pollset_set.h', |
| 779 | 'src/core/lib/iomgr/pollset_set_windows.h', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 780 | 'src/core/lib/iomgr/pollset_uv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 781 | 'src/core/lib/iomgr/pollset_windows.h', |
murgatroid99 | 5407089 | 2016-08-08 17:01:18 -0700 | [diff] [blame] | 782 | 'src/core/lib/iomgr/port.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 783 | 'src/core/lib/iomgr/resolve_address.h', |
Craig Tiller | 20afa3d | 2016-10-17 14:52:14 -0700 | [diff] [blame] | 784 | 'src/core/lib/iomgr/resource_quota.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 785 | 'src/core/lib/iomgr/sockaddr.h', |
| 786 | 'src/core/lib/iomgr/sockaddr_posix.h', |
| 787 | 'src/core/lib/iomgr/sockaddr_utils.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 788 | 'src/core/lib/iomgr/sockaddr_windows.h', |
Michael Warres | c46b3eb | 2017-02-22 22:57:04 -0500 | [diff] [blame] | 789 | 'src/core/lib/iomgr/socket_factory_posix.h', |
Yuchen Zeng | de3daf5 | 2016-10-13 17:26:26 -0700 | [diff] [blame] | 790 | 'src/core/lib/iomgr/socket_mutator.h', |
murgatroid99 | 79b3227 | 2016-08-08 13:38:30 -0700 | [diff] [blame] | 791 | 'src/core/lib/iomgr/socket_utils.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 792 | 'src/core/lib/iomgr/socket_utils_posix.h', |
| 793 | 'src/core/lib/iomgr/socket_windows.h', |
Craig Tiller | 819cd88 | 2017-04-25 13:18:22 -0700 | [diff] [blame] | 794 | 'src/core/lib/iomgr/sys_epoll_wrapper.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 795 | 'src/core/lib/iomgr/tcp_client.h', |
Craig Tiller | 8695876 | 2016-09-23 12:05:34 -0700 | [diff] [blame] | 796 | 'src/core/lib/iomgr/tcp_client_posix.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 797 | 'src/core/lib/iomgr/tcp_posix.h', |
| 798 | 'src/core/lib/iomgr/tcp_server.h', |
Yuchen Zeng | 47155ed | 2017-03-13 17:18:07 -0700 | [diff] [blame] | 799 | 'src/core/lib/iomgr/tcp_server_utils_posix.h', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 800 | 'src/core/lib/iomgr/tcp_uv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 801 | 'src/core/lib/iomgr/tcp_windows.h', |
| 802 | 'src/core/lib/iomgr/time_averaged_stats.h', |
| 803 | 'src/core/lib/iomgr/timer.h', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 804 | 'src/core/lib/iomgr/timer_generic.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 805 | 'src/core/lib/iomgr/timer_heap.h', |
Craig Tiller | c357179 | 2017-05-02 12:33:38 -0700 | [diff] [blame] | 806 | 'src/core/lib/iomgr/timer_manager.h', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 807 | 'src/core/lib/iomgr/timer_uv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 808 | 'src/core/lib/iomgr/udp_server.h', |
| 809 | 'src/core/lib/iomgr/unix_sockets_posix.h', |
Ken Payson | 31caabd | 2016-08-06 21:27:29 -0700 | [diff] [blame] | 810 | 'src/core/lib/iomgr/wakeup_fd_cv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 811 | 'src/core/lib/iomgr/wakeup_fd_pipe.h', |
| 812 | 'src/core/lib/iomgr/wakeup_fd_posix.h', |
| 813 | 'src/core/lib/iomgr/workqueue.h', |
murgatroid99 | 9030c81 | 2016-09-16 13:25:08 -0700 | [diff] [blame] | 814 | 'src/core/lib/iomgr/workqueue_uv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 815 | 'src/core/lib/iomgr/workqueue_windows.h', |
| 816 | 'src/core/lib/json/json.h', |
| 817 | 'src/core/lib/json/json_common.h', |
| 818 | 'src/core/lib/json/json_reader.h', |
| 819 | 'src/core/lib/json/json_writer.h', |
Craig Tiller | 790f6af | 2017-03-30 12:39:24 -0700 | [diff] [blame] | 820 | 'src/core/lib/slice/b64.h', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 821 | 'src/core/lib/slice/percent_encoding.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 822 | 'src/core/lib/slice/slice_hash_table.h', |
Craig Tiller | 30d50fe | 2016-12-06 19:34:32 -0800 | [diff] [blame] | 823 | 'src/core/lib/slice/slice_internal.h', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 824 | 'src/core/lib/slice/slice_string_helpers.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 825 | 'src/core/lib/surface/api_trace.h', |
| 826 | 'src/core/lib/surface/call.h', |
| 827 | 'src/core/lib/surface/call_test_only.h', |
| 828 | 'src/core/lib/surface/channel.h', |
| 829 | 'src/core/lib/surface/channel_init.h', |
| 830 | 'src/core/lib/surface/channel_stack_type.h', |
| 831 | 'src/core/lib/surface/completion_queue.h', |
Sree Kuchibhotla | bf18428 | 2017-03-21 15:18:58 -0700 | [diff] [blame] | 832 | 'src/core/lib/surface/completion_queue_factory.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 833 | 'src/core/lib/surface/event_string.h', |
| 834 | 'src/core/lib/surface/init.h', |
| 835 | 'src/core/lib/surface/lame_client.h', |
| 836 | 'src/core/lib/surface/server.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 837 | 'src/core/lib/surface/validate_metadata.h', |
Craig Tiller | 9e0066b | 2016-10-20 14:04:18 -0700 | [diff] [blame] | 838 | 'src/core/lib/transport/bdp_estimator.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 839 | 'src/core/lib/transport/byte_stream.h', |
| 840 | 'src/core/lib/transport/connectivity_state.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 841 | 'src/core/lib/transport/error_utils.h', |
| 842 | 'src/core/lib/transport/http2_errors.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 843 | 'src/core/lib/transport/metadata.h', |
| 844 | 'src/core/lib/transport/metadata_batch.h', |
Craig Tiller | dd2fa64 | 2016-10-20 15:46:32 -0700 | [diff] [blame] | 845 | 'src/core/lib/transport/pid_controller.h', |
Mark D. Roth | ea846a0 | 2016-11-03 11:32:54 -0700 | [diff] [blame] | 846 | 'src/core/lib/transport/service_config.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 847 | 'src/core/lib/transport/static_metadata.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 848 | 'src/core/lib/transport/status_conversion.h', |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 849 | 'src/core/lib/transport/timeout_encoding.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 850 | 'src/core/lib/transport/transport.h', |
| 851 | 'src/core/lib/transport/transport_impl.h', |
Craig Tiller | 1f47730 | 2017-05-05 11:01:25 -0700 | [diff] [blame] | 852 | 'src/core/lib/debug/trace.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 853 | 'src/core/ext/transport/chttp2/transport/bin_decoder.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 854 | 'src/core/ext/transport/chttp2/transport/bin_encoder.h', |
| 855 | 'src/core/ext/transport/chttp2/transport/chttp2_transport.h', |
| 856 | 'src/core/ext/transport/chttp2/transport/frame.h', |
| 857 | 'src/core/ext/transport/chttp2/transport/frame_data.h', |
| 858 | 'src/core/ext/transport/chttp2/transport/frame_goaway.h', |
| 859 | 'src/core/ext/transport/chttp2/transport/frame_ping.h', |
| 860 | 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h', |
| 861 | 'src/core/ext/transport/chttp2/transport/frame_settings.h', |
| 862 | 'src/core/ext/transport/chttp2/transport/frame_window_update.h', |
| 863 | 'src/core/ext/transport/chttp2/transport/hpack_encoder.h', |
| 864 | 'src/core/ext/transport/chttp2/transport/hpack_parser.h', |
| 865 | 'src/core/ext/transport/chttp2/transport/hpack_table.h', |
Craig Tiller | c8f62bc | 2017-04-03 16:25:45 -0700 | [diff] [blame] | 866 | 'src/core/ext/transport/chttp2/transport/http2_settings.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 867 | 'src/core/ext/transport/chttp2/transport/huffsyms.h', |
| 868 | 'src/core/ext/transport/chttp2/transport/incoming_metadata.h', |
| 869 | 'src/core/ext/transport/chttp2/transport/internal.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 870 | 'src/core/ext/transport/chttp2/transport/stream_map.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 871 | 'src/core/ext/transport/chttp2/transport/varint.h', |
| 872 | 'src/core/ext/transport/chttp2/alpn/alpn.h', |
Craig Tiller | af76743 | 2017-04-03 13:54:31 -0700 | [diff] [blame] | 873 | 'src/core/ext/filters/http/client/http_client_filter.h', |
Craig Tiller | a24b971 | 2017-04-06 09:03:21 -0700 | [diff] [blame] | 874 | 'src/core/ext/filters/http/message_compress/message_compress_filter.h', |
Craig Tiller | af76743 | 2017-04-03 13:54:31 -0700 | [diff] [blame] | 875 | 'src/core/ext/filters/http/server/http_server_filter.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 876 | 'src/core/lib/security/context/security_context.h', |
| 877 | 'src/core/lib/security/credentials/composite/composite_credentials.h', |
| 878 | 'src/core/lib/security/credentials/credentials.h', |
| 879 | 'src/core/lib/security/credentials/fake/fake_credentials.h', |
| 880 | 'src/core/lib/security/credentials/google_default/google_default_credentials.h', |
| 881 | 'src/core/lib/security/credentials/iam/iam_credentials.h', |
| 882 | 'src/core/lib/security/credentials/jwt/json_token.h', |
| 883 | 'src/core/lib/security/credentials/jwt/jwt_credentials.h', |
| 884 | 'src/core/lib/security/credentials/jwt/jwt_verifier.h', |
| 885 | 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h', |
| 886 | 'src/core/lib/security/credentials/plugin/plugin_credentials.h', |
| 887 | 'src/core/lib/security/credentials/ssl/ssl_credentials.h', |
| 888 | 'src/core/lib/security/transport/auth_filters.h', |
David Garcia Quintas | 0129150 | 2017-02-07 13:26:41 -0800 | [diff] [blame] | 889 | 'src/core/lib/security/transport/lb_targets_info.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 890 | 'src/core/lib/security/transport/secure_endpoint.h', |
| 891 | 'src/core/lib/security/transport/security_connector.h', |
Mark D. Roth | 071cacf | 2016-11-17 13:17:56 -0800 | [diff] [blame] | 892 | 'src/core/lib/security/transport/security_handshaker.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 893 | 'src/core/lib/security/transport/tsi_error.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 894 | 'src/core/lib/security/util/json_util.h', |
Craig Tiller | 134fed3 | 2017-03-28 14:27:18 -0700 | [diff] [blame] | 895 | 'src/core/tsi/fake_transport_security.h', |
| 896 | 'src/core/tsi/ssl_transport_security.h', |
| 897 | 'src/core/tsi/ssl_types.h', |
| 898 | 'src/core/tsi/transport_security.h', |
jiangtaoli2016 | e69881d | 2017-04-10 14:29:43 -0700 | [diff] [blame] | 899 | 'src/core/tsi/transport_security_adapter.h', |
Craig Tiller | 134fed3 | 2017-03-28 14:27:18 -0700 | [diff] [blame] | 900 | 'src/core/tsi/transport_security_interface.h', |
Mark D. Roth | 7140382 | 2016-12-02 10:51:39 -0800 | [diff] [blame] | 901 | 'src/core/ext/transport/chttp2/server/chttp2_server.h', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 902 | 'src/core/ext/filters/client_channel/client_channel.h', |
| 903 | 'src/core/ext/filters/client_channel/client_channel_factory.h', |
| 904 | 'src/core/ext/filters/client_channel/connector.h', |
| 905 | 'src/core/ext/filters/client_channel/http_connect_handshaker.h', |
| 906 | 'src/core/ext/filters/client_channel/http_proxy.h', |
| 907 | 'src/core/ext/filters/client_channel/lb_policy.h', |
| 908 | 'src/core/ext/filters/client_channel/lb_policy_factory.h', |
| 909 | 'src/core/ext/filters/client_channel/lb_policy_registry.h', |
| 910 | 'src/core/ext/filters/client_channel/parse_address.h', |
| 911 | 'src/core/ext/filters/client_channel/proxy_mapper.h', |
| 912 | 'src/core/ext/filters/client_channel/proxy_mapper_registry.h', |
| 913 | 'src/core/ext/filters/client_channel/resolver.h', |
| 914 | 'src/core/ext/filters/client_channel/resolver_factory.h', |
| 915 | 'src/core/ext/filters/client_channel/resolver_registry.h', |
| 916 | 'src/core/ext/filters/client_channel/retry_throttle.h', |
| 917 | 'src/core/ext/filters/client_channel/subchannel.h', |
| 918 | 'src/core/ext/filters/client_channel/subchannel_index.h', |
| 919 | 'src/core/ext/filters/client_channel/uri_parser.h', |
Craig Tiller | 71d6ce6 | 2017-04-06 09:10:09 -0700 | [diff] [blame] | 920 | 'src/core/ext/filters/deadline/deadline_filter.h', |
Mark D. Roth | 8686cab | 2016-11-17 13:12:17 -0800 | [diff] [blame] | 921 | 'src/core/ext/transport/chttp2/client/chttp2_connector.h', |
Mark D. Roth | 09e458c | 2017-05-02 08:13:26 -0700 | [diff] [blame] | 922 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 923 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h', |
| 924 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h', |
Mark D. Roth | 09e458c | 2017-05-02 08:13:26 -0700 | [diff] [blame] | 925 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 926 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h', |
| 927 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 928 | 'third_party/nanopb/pb.h', |
| 929 | 'third_party/nanopb/pb_common.h', |
| 930 | 'third_party/nanopb/pb_decode.h', |
| 931 | 'third_party/nanopb/pb_encode.h', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 932 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h', |
| 933 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h', |
| 934 | 'src/core/ext/filters/load_reporting/load_reporting.h', |
| 935 | 'src/core/ext/filters/load_reporting/load_reporting_filter.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 936 | 'src/core/ext/census/aggregation.h', |
Alistair Veitch | 3abd27e | 2016-07-21 17:29:04 -0700 | [diff] [blame] | 937 | 'src/core/ext/census/base_resources.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 938 | 'src/core/ext/census/census_interface.h', |
| 939 | 'src/core/ext/census/census_rpc_stats.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 940 | 'src/core/ext/census/gen/census.pb.h', |
Alistair Veitch | a0c69f9 | 2016-08-31 12:01:27 -0700 | [diff] [blame] | 941 | 'src/core/ext/census/gen/trace_context.pb.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 942 | 'src/core/ext/census/grpc_filter.h', |
| 943 | 'src/core/ext/census/mlog.h', |
Alistair Veitch | 3abd27e | 2016-07-21 17:29:04 -0700 | [diff] [blame] | 944 | 'src/core/ext/census/resource.h', |
Vizerai | 12d1fc6 | 2016-09-09 14:22:19 -0700 | [diff] [blame] | 945 | 'src/core/ext/census/rpc_metric_id.h', |
Vizerai | 0e5b67f | 2017-01-20 14:02:18 -0800 | [diff] [blame] | 946 | 'src/core/ext/census/trace_context.h', |
| 947 | 'src/core/ext/census/trace_label.h', |
| 948 | 'src/core/ext/census/trace_propagation.h', |
| 949 | 'src/core/ext/census/trace_status.h', |
| 950 | 'src/core/ext/census/trace_string.h', |
Craig Tiller | 6d4894e | 2017-03-31 17:22:06 -0700 | [diff] [blame] | 951 | 'src/core/ext/census/tracing.h', |
Craig Tiller | 9b3648a | 2017-04-03 12:25:19 -0700 | [diff] [blame] | 952 | 'src/core/ext/filters/max_age/max_age_filter.h', |
| 953 | 'src/core/ext/filters/message_size/message_size_filter.h' |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 954 | end |
Nicolas "Pixel" Noble | 20b8333 | 2016-07-21 19:28:38 +0200 | [diff] [blame] | 955 | |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 956 | s.subspec 'Cronet-Interface' do |ss| |
| 957 | ss.header_mappings_dir = 'include/grpc' |
Muxi Yan | e38b012 | 2017-03-16 20:53:41 -0700 | [diff] [blame] | 958 | ss.source_files = 'include/grpc/grpc_cronet.h' |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 959 | end |
| 960 | |
Muxi Yan | f8372c6 | 2016-07-29 09:58:55 -0700 | [diff] [blame] | 961 | s.subspec 'Cronet-Implementation' do |ss| |
Muxi Yan | 2a5072e | 2016-07-27 15:10:22 -0700 | [diff] [blame] | 962 | ss.header_mappings_dir = '.' |
Muxi Yan | e2de92f | 2017-01-31 16:30:52 -0800 | [diff] [blame] | 963 | |
| 964 | ss.dependency "#{s.name}/Interface", version |
| 965 | ss.dependency "#{s.name}/Implementation", version |
| 966 | ss.dependency "#{s.name}/Cronet-Interface", version |
| 967 | |
Muxi Yan | 2a5072e | 2016-07-27 15:10:22 -0700 | [diff] [blame] | 968 | ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.c', |
Muxi Yan | e38b012 | 2017-03-16 20:53:41 -0700 | [diff] [blame] | 969 | 'src/core/ext/transport/cronet/transport/cronet_transport.{c,h}', |
Muxi Yan | f0a1269 | 2017-01-31 16:36:56 -0800 | [diff] [blame] | 970 | 'third_party/objective_c/Cronet/bidirectional_stream_c.h' |
Muxi Yan | 2a5072e | 2016-07-27 15:10:22 -0700 | [diff] [blame] | 971 | end |
| 972 | |
Muxi Yan | f8372c6 | 2016-07-29 09:58:55 -0700 | [diff] [blame] | 973 | s.subspec 'Tests' do |ss| |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 974 | ss.header_mappings_dir = '.' |
| 975 | |
Muxi Yan | e2de92f | 2017-01-31 16:30:52 -0800 | [diff] [blame] | 976 | ss.dependency "#{s.name}/Interface", version |
| 977 | ss.dependency "#{s.name}/Implementation", version |
| 978 | |
Muxi Yan | 2a5072e | 2016-07-27 15:10:22 -0700 | [diff] [blame] | 979 | ss.source_files = 'test/core/end2end/cq_verifier.{c,h}', |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 980 | 'test/core/end2end/end2end_tests.{c,h}', |
Muxi Yan | 53c4c28 | 2016-11-08 13:34:02 -0800 | [diff] [blame] | 981 | 'test/core/end2end/end2end_test_utils.c', |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 982 | 'test/core/end2end/tests/*.{c,h}', |
| 983 | 'test/core/end2end/data/*.{c,h}', |
Muxi Yan | e38b012 | 2017-03-16 20:53:41 -0700 | [diff] [blame] | 984 | 'test/core/util/debugger_macros.{c,h}', |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 985 | 'test/core/util/test_config.{c,h}', |
| 986 | 'test/core/util/port.h', |
Craig Tiller | 46ab5f5 | 2017-02-28 08:40:19 -0800 | [diff] [blame] | 987 | 'test/core/util/port.c', |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 988 | 'test/core/util/port_server_client.{c,h}' |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 989 | end |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 990 | end |