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