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' |
Srini Polavarapu | c79c156 | 2018-06-08 17:01:18 -0700 | [diff] [blame] | 25 | version = '1.14.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 | 3d2081b | 2017-10-31 10:27:46 -0700 | [diff] [blame] | 37 | # gRPC podspecs depend on fix for https://github.com/CocoaPods/CocoaPods/issues/6024, |
| 38 | # which was released in Cocoapods v1.2.0. |
| 39 | s.cocoapods_version = '>= 1.2.0' |
| 40 | |
Muxi Yan | 37d3fba | 2017-02-28 16:14:40 -0800 | [diff] [blame] | 41 | s.ios.deployment_target = '7.0' |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 42 | s.osx.deployment_target = '10.9' |
| 43 | s.requires_arc = false |
| 44 | |
| 45 | name = 'grpc' |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 46 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 47 | # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework. |
| 48 | # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include |
| 49 | # <gRPC-Core/grpc.h>`. |
| 50 | s.module_name = name |
| 51 | |
| 52 | # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of |
| 53 | # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`). |
| 54 | # |
| 55 | # TODO(jcanizales): Debug why this doesn't work on macOS. |
Jorge Canizales | 3775074 | 2016-06-08 20:10:20 -0700 | [diff] [blame] | 56 | s.header_mappings_dir = 'include/grpc' |
| 57 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 58 | # The above has an undesired effect when creating a static library: It forces users to write |
| 59 | # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and |
| 60 | # because Cocoapods lets omit the pod name when including headers of static libraries, the |
| 61 | # following lets users write `#include <grpc/grpc.h>`. |
| 62 | s.header_dir = name |
Jorge Canizales | 3775074 | 2016-06-08 20:10:20 -0700 | [diff] [blame] | 63 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 64 | # 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] | 65 | s.module_map = 'include/grpc/module.modulemap' |
| 66 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 67 | # To compile the library, we need the user headers search path (quoted includes) to point to the |
| 68 | # root of the repo, and the system headers search path (angled includes) to point to `include/`. |
| 69 | # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build |
| 70 | # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that. |
| 71 | # |
| 72 | # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it |
| 73 | # is taken as an implementation detail. We've asked for an alternative, and have been told that |
| 74 | # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386 |
| 75 | # |
| 76 | # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from |
| 77 | # its remote repo. For local development of this library, enabled by using `:path` in the Podfile, |
| 78 | # that assumption is wrong. In such case, the following settings need to be reset with the |
| 79 | # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the |
| 80 | # Podfile; see `src/objective-c/tests/Podfile` for an example. |
| 81 | src_root = '$(PODS_ROOT)/gRPC-Core' |
| 82 | s.pod_target_xcconfig = { |
| 83 | 'GRPC_SRC_ROOT' => src_root, |
| 84 | 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"', |
| 85 | 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"', |
| 86 | # If we don't set these two settings, `include/grpc/support/time.h` and |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 87 | # `src/core/lib/gpr/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 88 | # build. |
| 89 | 'USE_HEADERMAP' => 'NO', |
| 90 | 'ALWAYS_SEARCH_USER_PATHS' => 'NO', |
Muxi Yan | 9ecc215 | 2017-09-29 17:08:59 -0700 | [diff] [blame] | 91 | 'GCC_PREPROCESSOR_DEFINITIONS' => '"$(inherited)" "COCOAPODS=1" "PB_NO_PACKED_STRUCTS=1"', |
Muxi Yan | 94d669e | 2017-10-22 14:56:10 -0700 | [diff] [blame] | 92 | 'CLANG_WARN_STRICT_PROTOTYPES' => 'NO', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 93 | } |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 94 | |
Muxi Yan | e04089e | 2016-07-15 16:35:20 -0700 | [diff] [blame] | 95 | s.default_subspecs = 'Interface', 'Implementation' |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 96 | s.compiler_flags = '-DGRPC_ARES=0', '-DPB_FIELD_16BIT' |
Muxi Yan | ae6bca4 | 2017-10-19 18:14:02 -0700 | [diff] [blame] | 97 | s.libraries = 'c++' |
Muxi Yan | e04089e | 2016-07-15 16:35:20 -0700 | [diff] [blame] | 98 | |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 99 | # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its |
| 100 | # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't |
| 101 | # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in |
| 102 | # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason |
| 103 | # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one |
| 104 | # for public headers and the other for implementation. Each gets its own `header_mappings_dir`, |
| 105 | # making the linter happy. |
| 106 | # |
| 107 | # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It |
| 108 | # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`. |
| 109 | s.subspec 'Interface' do |ss| |
| 110 | ss.header_mappings_dir = 'include/grpc' |
| 111 | |
| 112 | ss.source_files = 'include/grpc/support/alloc.h', |
| 113 | 'include/grpc/support/atm.h', |
| 114 | 'include/grpc/support/atm_gcc_atomic.h', |
Muxi Yan | cd97297 | 2017-10-06 13:46:27 -0700 | [diff] [blame] | 115 | 'include/grpc/support/atm_gcc_sync.h', |
| 116 | 'include/grpc/support/atm_windows.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 117 | 'include/grpc/support/cpu.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 118 | 'include/grpc/support/log.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 119 | 'include/grpc/support/log_windows.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 120 | 'include/grpc/support/port_platform.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 121 | 'include/grpc/support/string_util.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 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', |
Vijay Pai | c745690 | 2018-02-12 10:28:24 -0800 | [diff] [blame] | 127 | 'include/grpc/support/thd_id.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 128 | 'include/grpc/support/time.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 129 | 'include/grpc/impl/codegen/atm.h', |
| 130 | 'include/grpc/impl/codegen/atm_gcc_atomic.h', |
Muxi Yan | cd97297 | 2017-10-06 13:46:27 -0700 | [diff] [blame] | 131 | 'include/grpc/impl/codegen/atm_gcc_sync.h', |
| 132 | 'include/grpc/impl/codegen/atm_windows.h', |
Ken Payson | 9714e03 | 2017-10-10 11:18:49 -0700 | [diff] [blame] | 133 | 'include/grpc/impl/codegen/fork.h', |
Mark D. Roth | 4d2ea02 | 2016-12-12 07:12:27 -0800 | [diff] [blame] | 134 | 'include/grpc/impl/codegen/gpr_slice.h', |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 135 | 'include/grpc/impl/codegen/gpr_types.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 136 | 'include/grpc/impl/codegen/port_platform.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 137 | 'include/grpc/impl/codegen/sync.h', |
yang-g | 9ff6031 | 2017-08-24 09:08:21 -0700 | [diff] [blame] | 138 | 'include/grpc/impl/codegen/sync_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 139 | 'include/grpc/impl/codegen/sync_generic.h', |
| 140 | 'include/grpc/impl/codegen/sync_posix.h', |
Muxi Yan | cd97297 | 2017-10-06 13:46:27 -0700 | [diff] [blame] | 141 | 'include/grpc/impl/codegen/sync_windows.h', |
Vijay Pai | efce6e1 | 2017-09-14 09:07:50 -0700 | [diff] [blame] | 142 | 'include/grpc/impl/codegen/byte_buffer.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 143 | 'include/grpc/impl/codegen/byte_buffer_reader.h', |
| 144 | 'include/grpc/impl/codegen/compression_types.h', |
| 145 | 'include/grpc/impl/codegen/connectivity_state.h', |
| 146 | 'include/grpc/impl/codegen/grpc_types.h', |
| 147 | 'include/grpc/impl/codegen/propagation_bits.h', |
Craig Tiller | 790f6af | 2017-03-30 12:39:24 -0700 | [diff] [blame] | 148 | 'include/grpc/impl/codegen/slice.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 149 | 'include/grpc/impl/codegen/status.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 150 | 'include/grpc/impl/codegen/atm.h', |
| 151 | 'include/grpc/impl/codegen/atm_gcc_atomic.h', |
Muxi Yan | cd97297 | 2017-10-06 13:46:27 -0700 | [diff] [blame] | 152 | 'include/grpc/impl/codegen/atm_gcc_sync.h', |
| 153 | 'include/grpc/impl/codegen/atm_windows.h', |
Ken Payson | 9714e03 | 2017-10-10 11:18:49 -0700 | [diff] [blame] | 154 | 'include/grpc/impl/codegen/fork.h', |
Mark D. Roth | 4d2ea02 | 2016-12-12 07:12:27 -0800 | [diff] [blame] | 155 | 'include/grpc/impl/codegen/gpr_slice.h', |
David Garcia Quintas | 8c5424f | 2016-08-01 22:49:00 -0700 | [diff] [blame] | 156 | 'include/grpc/impl/codegen/gpr_types.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 157 | 'include/grpc/impl/codegen/port_platform.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 158 | 'include/grpc/impl/codegen/sync.h', |
yang-g | 9ff6031 | 2017-08-24 09:08:21 -0700 | [diff] [blame] | 159 | 'include/grpc/impl/codegen/sync_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 160 | 'include/grpc/impl/codegen/sync_generic.h', |
| 161 | 'include/grpc/impl/codegen/sync_posix.h', |
Muxi Yan | cd97297 | 2017-10-06 13:46:27 -0700 | [diff] [blame] | 162 | 'include/grpc/impl/codegen/sync_windows.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 163 | 'include/grpc/grpc_security.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 164 | 'include/grpc/byte_buffer.h', |
| 165 | 'include/grpc/byte_buffer_reader.h', |
| 166 | 'include/grpc/compression.h', |
Ken Payson | 9714e03 | 2017-10-10 11:18:49 -0700 | [diff] [blame] | 167 | 'include/grpc/fork.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 168 | 'include/grpc/grpc.h', |
| 169 | 'include/grpc/grpc_posix.h', |
| 170 | 'include/grpc/grpc_security_constants.h', |
| 171 | 'include/grpc/load_reporting.h', |
| 172 | 'include/grpc/slice.h', |
| 173 | 'include/grpc/slice_buffer.h', |
| 174 | 'include/grpc/status.h', |
| 175 | 'include/grpc/support/workaround_list.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 176 | 'include/grpc/census.h' |
| 177 | end |
| 178 | s.subspec 'Implementation' do |ss| |
| 179 | ss.header_mappings_dir = '.' |
| 180 | ss.libraries = 'z' |
| 181 | ss.dependency "#{s.name}/Interface", version |
Matt Kwong | 74958c5 | 2018-01-30 11:52:02 -0800 | [diff] [blame] | 182 | ss.dependency 'BoringSSL', '~> 10.0' |
Muxi Yan | ad272c9 | 2017-06-29 16:18:43 -0700 | [diff] [blame] | 183 | ss.dependency 'nanopb', '~> 0.3' |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 184 | |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 185 | # To save you from scrolling, this is the last part of the podspec. |
Mark D. Roth | 4f2b0fd | 2018-01-19 12:12:23 -0800 | [diff] [blame] | 186 | ss.source_files = 'src/core/lib/gpr/arena.h', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 187 | 'src/core/lib/gpr/env.h', |
Vijay Pai | ae376bf | 2018-01-25 22:54:02 -0800 | [diff] [blame] | 188 | 'src/core/lib/gpr/host_port.h', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 189 | 'src/core/lib/gpr/mpscq.h', |
| 190 | 'src/core/lib/gpr/murmur_hash.h', |
| 191 | 'src/core/lib/gpr/spinlock.h', |
| 192 | 'src/core/lib/gpr/string.h', |
| 193 | 'src/core/lib/gpr/string_windows.h', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 194 | 'src/core/lib/gpr/time_precise.h', |
Vijay Pai | b6cf123 | 2018-01-25 21:02:26 -0800 | [diff] [blame] | 195 | 'src/core/lib/gpr/tls.h', |
| 196 | 'src/core/lib/gpr/tls_gcc.h', |
| 197 | 'src/core/lib/gpr/tls_msvc.h', |
| 198 | 'src/core/lib/gpr/tls_pthread.h', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 199 | 'src/core/lib/gpr/tmpfile.h', |
Vijay Pai | d4d0a30 | 2018-01-25 13:24:03 -0800 | [diff] [blame] | 200 | 'src/core/lib/gpr/useful.h', |
Mark D. Roth | 4f2b0fd | 2018-01-19 12:12:23 -0800 | [diff] [blame] | 201 | 'src/core/lib/gprpp/abstract.h', |
| 202 | 'src/core/lib/gprpp/atomic.h', |
| 203 | 'src/core/lib/gprpp/atomic_with_atm.h', |
| 204 | 'src/core/lib/gprpp/atomic_with_std.h', |
kpayson64 | 701e70d | 2018-04-30 17:40:00 -0700 | [diff] [blame] | 205 | 'src/core/lib/gprpp/fork.h', |
Mark D. Roth | 4f2b0fd | 2018-01-19 12:12:23 -0800 | [diff] [blame] | 206 | 'src/core/lib/gprpp/manual_constructor.h', |
| 207 | 'src/core/lib/gprpp/memory.h', |
Vijay Pai | da69355 | 2018-02-16 22:59:03 -0800 | [diff] [blame] | 208 | 'src/core/lib/gprpp/thd.h', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 209 | 'src/core/lib/profiling/timers.h', |
| 210 | 'src/core/lib/gpr/alloc.cc', |
| 211 | 'src/core/lib/gpr/arena.cc', |
| 212 | 'src/core/lib/gpr/atm.cc', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 213 | 'src/core/lib/gpr/cpu_iphone.cc', |
| 214 | 'src/core/lib/gpr/cpu_linux.cc', |
| 215 | 'src/core/lib/gpr/cpu_posix.cc', |
| 216 | 'src/core/lib/gpr/cpu_windows.cc', |
| 217 | 'src/core/lib/gpr/env_linux.cc', |
| 218 | 'src/core/lib/gpr/env_posix.cc', |
| 219 | 'src/core/lib/gpr/env_windows.cc', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 220 | 'src/core/lib/gpr/host_port.cc', |
| 221 | 'src/core/lib/gpr/log.cc', |
| 222 | 'src/core/lib/gpr/log_android.cc', |
| 223 | 'src/core/lib/gpr/log_linux.cc', |
| 224 | 'src/core/lib/gpr/log_posix.cc', |
| 225 | 'src/core/lib/gpr/log_windows.cc', |
| 226 | 'src/core/lib/gpr/mpscq.cc', |
| 227 | 'src/core/lib/gpr/murmur_hash.cc', |
| 228 | 'src/core/lib/gpr/string.cc', |
| 229 | 'src/core/lib/gpr/string_posix.cc', |
| 230 | 'src/core/lib/gpr/string_util_windows.cc', |
| 231 | 'src/core/lib/gpr/string_windows.cc', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 232 | 'src/core/lib/gpr/sync.cc', |
| 233 | 'src/core/lib/gpr/sync_posix.cc', |
| 234 | 'src/core/lib/gpr/sync_windows.cc', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 235 | 'src/core/lib/gpr/time.cc', |
| 236 | 'src/core/lib/gpr/time_posix.cc', |
| 237 | 'src/core/lib/gpr/time_precise.cc', |
| 238 | 'src/core/lib/gpr/time_windows.cc', |
| 239 | 'src/core/lib/gpr/tls_pthread.cc', |
| 240 | 'src/core/lib/gpr/tmpfile_msys.cc', |
| 241 | 'src/core/lib/gpr/tmpfile_posix.cc', |
| 242 | 'src/core/lib/gpr/tmpfile_windows.cc', |
| 243 | 'src/core/lib/gpr/wrap_memcpy.cc', |
kpayson64 | 701e70d | 2018-04-30 17:40:00 -0700 | [diff] [blame] | 244 | 'src/core/lib/gprpp/fork.cc', |
Vijay Pai | da69355 | 2018-02-16 22:59:03 -0800 | [diff] [blame] | 245 | 'src/core/lib/gprpp/thd_posix.cc', |
| 246 | 'src/core/lib/gprpp/thd_windows.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 247 | 'src/core/lib/profiling/basic_timers.cc', |
| 248 | 'src/core/lib/profiling/stap_timers.cc', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 249 | 'src/core/ext/transport/chttp2/transport/bin_decoder.h', |
| 250 | 'src/core/ext/transport/chttp2/transport/bin_encoder.h', |
| 251 | 'src/core/ext/transport/chttp2/transport/chttp2_transport.h', |
Craig Tiller | 3273648 | 2017-10-12 22:02:28 -0700 | [diff] [blame] | 252 | 'src/core/ext/transport/chttp2/transport/flow_control.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 253 | 'src/core/ext/transport/chttp2/transport/frame.h', |
| 254 | 'src/core/ext/transport/chttp2/transport/frame_data.h', |
| 255 | 'src/core/ext/transport/chttp2/transport/frame_goaway.h', |
| 256 | 'src/core/ext/transport/chttp2/transport/frame_ping.h', |
| 257 | 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h', |
| 258 | 'src/core/ext/transport/chttp2/transport/frame_settings.h', |
| 259 | 'src/core/ext/transport/chttp2/transport/frame_window_update.h', |
| 260 | 'src/core/ext/transport/chttp2/transport/hpack_encoder.h', |
| 261 | 'src/core/ext/transport/chttp2/transport/hpack_parser.h', |
| 262 | 'src/core/ext/transport/chttp2/transport/hpack_table.h', |
| 263 | 'src/core/ext/transport/chttp2/transport/http2_settings.h', |
| 264 | 'src/core/ext/transport/chttp2/transport/huffsyms.h', |
| 265 | 'src/core/ext/transport/chttp2/transport/incoming_metadata.h', |
| 266 | 'src/core/ext/transport/chttp2/transport/internal.h', |
| 267 | 'src/core/ext/transport/chttp2/transport/stream_map.h', |
| 268 | 'src/core/ext/transport/chttp2/transport/varint.h', |
| 269 | 'src/core/ext/transport/chttp2/alpn/alpn.h', |
| 270 | 'src/core/ext/filters/http/client/http_client_filter.h', |
| 271 | 'src/core/ext/filters/http/message_compress/message_compress_filter.h', |
| 272 | 'src/core/ext/filters/http/server/http_server_filter.h', |
Yihua Zhang | 392dad7 | 2018-05-03 20:12:20 -0700 | [diff] [blame] | 273 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 274 | 'src/core/lib/security/context/security_context.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 275 | 'src/core/lib/security/credentials/alts/alts_credentials.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 276 | 'src/core/lib/security/credentials/composite/composite_credentials.h', |
| 277 | 'src/core/lib/security/credentials/credentials.h', |
| 278 | 'src/core/lib/security/credentials/fake/fake_credentials.h', |
| 279 | 'src/core/lib/security/credentials/google_default/google_default_credentials.h', |
| 280 | 'src/core/lib/security/credentials/iam/iam_credentials.h', |
| 281 | 'src/core/lib/security/credentials/jwt/json_token.h', |
| 282 | 'src/core/lib/security/credentials/jwt/jwt_credentials.h', |
| 283 | 'src/core/lib/security/credentials/jwt/jwt_verifier.h', |
| 284 | 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h', |
| 285 | 'src/core/lib/security/credentials/plugin/plugin_credentials.h', |
| 286 | 'src/core/lib/security/credentials/ssl/ssl_credentials.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 287 | 'src/core/lib/security/security_connector/alts_security_connector.h', |
Yihua Zhang | 75f0a9f | 2018-02-20 10:09:47 -0800 | [diff] [blame] | 288 | 'src/core/lib/security/security_connector/security_connector.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 289 | 'src/core/lib/security/transport/auth_filters.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 290 | 'src/core/lib/security/transport/secure_endpoint.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 291 | 'src/core/lib/security/transport/security_handshaker.h', |
Mark D. Roth | 3e7f2df | 2018-02-26 13:17:06 -0800 | [diff] [blame] | 292 | 'src/core/lib/security/transport/target_authority_table.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 293 | 'src/core/lib/security/transport/tsi_error.h', |
| 294 | 'src/core/lib/security/util/json_util.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 295 | 'src/core/tsi/alts/crypt/gsec.h', |
| 296 | 'src/core/tsi/alts/frame_protector/alts_counter.h', |
| 297 | 'src/core/tsi/alts/frame_protector/alts_crypter.h', |
| 298 | 'src/core/tsi/alts/frame_protector/alts_frame_protector.h', |
| 299 | 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h', |
| 300 | 'src/core/tsi/alts/frame_protector/frame_handler.h', |
| 301 | 'src/core/tsi/alts/handshaker/alts_handshaker_client.h', |
| 302 | 'src/core/tsi/alts/handshaker/alts_tsi_event.h', |
| 303 | 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h', |
| 304 | 'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h', |
| 305 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h', |
| 306 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h', |
| 307 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h', |
| 308 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h', |
| 309 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h', |
| 310 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h', |
| 311 | 'src/core/lib/security/credentials/alts/check_gcp_environment.h', |
| 312 | 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h', |
| 313 | 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h', |
| 314 | 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h', |
| 315 | 'src/core/tsi/alts/handshaker/alts_tsi_utils.h', |
| 316 | 'src/core/tsi/alts/handshaker/transport_security_common_api.h', |
| 317 | 'src/core/tsi/alts/handshaker/altscontext.pb.h', |
| 318 | 'src/core/tsi/alts/handshaker/handshaker.pb.h', |
| 319 | 'src/core/tsi/alts/handshaker/transport_security_common.pb.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 320 | 'src/core/tsi/transport_security.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 321 | 'src/core/tsi/transport_security_interface.h', |
David Garcia Quintas | 49f625f | 2018-03-27 11:23:49 -0700 | [diff] [blame] | 322 | 'src/core/ext/transport/chttp2/client/authority.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 323 | 'src/core/ext/transport/chttp2/client/chttp2_connector.h', |
Yuchen Zeng | 0bad30a | 2017-10-05 21:47:39 -0700 | [diff] [blame] | 324 | 'src/core/ext/filters/client_channel/backup_poller.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 325 | 'src/core/ext/filters/client_channel/client_channel.h', |
| 326 | 'src/core/ext/filters/client_channel/client_channel_factory.h', |
| 327 | 'src/core/ext/filters/client_channel/connector.h', |
| 328 | 'src/core/ext/filters/client_channel/http_connect_handshaker.h', |
| 329 | 'src/core/ext/filters/client_channel/http_proxy.h', |
| 330 | 'src/core/ext/filters/client_channel/lb_policy.h', |
| 331 | 'src/core/ext/filters/client_channel/lb_policy_factory.h', |
| 332 | 'src/core/ext/filters/client_channel/lb_policy_registry.h', |
Mark D. Roth | 3e7f2df | 2018-02-26 13:17:06 -0800 | [diff] [blame] | 333 | 'src/core/ext/filters/client_channel/method_params.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 334 | 'src/core/ext/filters/client_channel/parse_address.h', |
| 335 | 'src/core/ext/filters/client_channel/proxy_mapper.h', |
| 336 | 'src/core/ext/filters/client_channel/proxy_mapper_registry.h', |
| 337 | 'src/core/ext/filters/client_channel/resolver.h', |
| 338 | 'src/core/ext/filters/client_channel/resolver_factory.h', |
| 339 | 'src/core/ext/filters/client_channel/resolver_registry.h', |
| 340 | 'src/core/ext/filters/client_channel/retry_throttle.h', |
| 341 | 'src/core/ext/filters/client_channel/subchannel.h', |
| 342 | 'src/core/ext/filters/client_channel/subchannel_index.h', |
| 343 | 'src/core/ext/filters/client_channel/uri_parser.h', |
| 344 | 'src/core/ext/filters/deadline/deadline_filter.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 345 | 'src/core/tsi/alts_transport_security.h', |
| 346 | 'src/core/tsi/fake_transport_security.h', |
Ruslan Nigmatullin | 99d0cee | 2018-03-20 09:18:29 -0700 | [diff] [blame] | 347 | 'src/core/tsi/ssl/session_cache/ssl_session.h', |
| 348 | 'src/core/tsi/ssl/session_cache/ssl_session_cache.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 349 | 'src/core/tsi/ssl_transport_security.h', |
| 350 | 'src/core/tsi/ssl_types.h', |
| 351 | 'src/core/tsi/transport_security_grpc.h', |
| 352 | 'src/core/ext/transport/chttp2/server/chttp2_server.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 353 | 'src/core/ext/transport/inproc/inproc_transport.h', |
Vijay Pai | 8f4fbb1 | 2018-02-08 10:04:08 -0800 | [diff] [blame] | 354 | 'src/core/lib/avl/avl.h', |
Craig Tiller | 2014a37 | 2017-07-21 15:36:11 -0700 | [diff] [blame] | 355 | 'src/core/lib/backoff/backoff.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 356 | 'src/core/lib/channel/channel_args.h', |
| 357 | 'src/core/lib/channel/channel_stack.h', |
| 358 | 'src/core/lib/channel/channel_stack_builder.h', |
ncteisen | 3b42f83 | 2018-03-19 13:22:35 -0700 | [diff] [blame] | 359 | 'src/core/lib/channel/channel_trace.h', |
ncteisen | bba8840 | 2018-05-11 11:54:41 -0400 | [diff] [blame] | 360 | 'src/core/lib/channel/channelz_registry.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 361 | 'src/core/lib/channel/connected_channel.h', |
| 362 | 'src/core/lib/channel/context.h', |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 363 | 'src/core/lib/channel/handshaker.h', |
Mark D. Roth | 1f0f23c | 2017-01-06 13:07:19 -0800 | [diff] [blame] | 364 | 'src/core/lib/channel/handshaker_factory.h', |
| 365 | 'src/core/lib/channel/handshaker_registry.h', |
ncteisen | 3b42f83 | 2018-03-19 13:22:35 -0700 | [diff] [blame] | 366 | 'src/core/lib/channel/status_util.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 367 | 'src/core/lib/compression/algorithm_metadata.h', |
Muxi Yan | 92d1bc1 | 2017-09-16 10:09:58 -0700 | [diff] [blame] | 368 | 'src/core/lib/compression/compression_internal.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 369 | 'src/core/lib/compression/message_compress.h', |
Muxi Yan | e87a7e1 | 2017-06-29 16:53:24 -0700 | [diff] [blame] | 370 | 'src/core/lib/compression/stream_compression.h', |
Muxi Yan | bf5484e | 2017-09-01 18:03:03 -0700 | [diff] [blame] | 371 | 'src/core/lib/compression/stream_compression_gzip.h', |
| 372 | 'src/core/lib/compression/stream_compression_identity.h', |
Craig Tiller | 6e73974 | 2017-08-31 11:22:52 -0700 | [diff] [blame] | 373 | 'src/core/lib/debug/stats.h', |
| 374 | 'src/core/lib/debug/stats_data.h', |
Mark D. Roth | 4f2b0fd | 2018-01-19 12:12:23 -0800 | [diff] [blame] | 375 | 'src/core/lib/gprpp/debug_location.h', |
| 376 | 'src/core/lib/gprpp/inlined_vector.h', |
| 377 | 'src/core/lib/gprpp/orphanable.h', |
| 378 | 'src/core/lib/gprpp/ref_counted.h', |
| 379 | 'src/core/lib/gprpp/ref_counted_ptr.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 380 | 'src/core/lib/http/format_request.h', |
| 381 | 'src/core/lib/http/httpcli.h', |
| 382 | 'src/core/lib/http/parser.h', |
Craig Tiller | 43c1b5f | 2017-10-02 14:42:49 -0700 | [diff] [blame] | 383 | 'src/core/lib/iomgr/block_annotate.h', |
Mark D. Roth | 764cf04 | 2017-09-01 09:00:06 -0700 | [diff] [blame] | 384 | 'src/core/lib/iomgr/call_combiner.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 385 | 'src/core/lib/iomgr/closure.h', |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 386 | 'src/core/lib/iomgr/combiner.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 387 | 'src/core/lib/iomgr/endpoint.h', |
| 388 | 'src/core/lib/iomgr/endpoint_pair.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 389 | 'src/core/lib/iomgr/error.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 390 | 'src/core/lib/iomgr/error_internal.h', |
Craig Tiller | c67cc99 | 2017-04-27 10:15:51 -0700 | [diff] [blame] | 391 | 'src/core/lib/iomgr/ev_epoll1_linux.h', |
Craig Tiller | f4360d7 | 2017-04-07 08:51:00 -0700 | [diff] [blame] | 392 | 'src/core/lib/iomgr/ev_epollex_linux.h', |
Craig Tiller | c67cc99 | 2017-04-27 10:15:51 -0700 | [diff] [blame] | 393 | 'src/core/lib/iomgr/ev_epollsig_linux.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 394 | 'src/core/lib/iomgr/ev_poll_posix.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 395 | 'src/core/lib/iomgr/ev_posix.h', |
| 396 | 'src/core/lib/iomgr/exec_ctx.h', |
| 397 | 'src/core/lib/iomgr/executor.h', |
Mark D. Roth | f9bf428 | 2017-08-03 14:47:23 -0700 | [diff] [blame] | 398 | 'src/core/lib/iomgr/gethostname.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 399 | 'src/core/lib/iomgr/iocp_windows.h', |
| 400 | 'src/core/lib/iomgr/iomgr.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 401 | 'src/core/lib/iomgr/iomgr_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 402 | 'src/core/lib/iomgr/iomgr_internal.h', |
| 403 | 'src/core/lib/iomgr/iomgr_posix.h', |
Craig Tiller | 819cd88 | 2017-04-25 13:18:22 -0700 | [diff] [blame] | 404 | 'src/core/lib/iomgr/is_epollexclusive_available.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 405 | 'src/core/lib/iomgr/load_file.h', |
Craig Tiller | 376887d | 2017-04-06 08:27:03 -0700 | [diff] [blame] | 406 | 'src/core/lib/iomgr/lockfree_event.h', |
Yuchen Zeng | f630ff2 | 2017-07-25 13:28:45 -0700 | [diff] [blame] | 407 | 'src/core/lib/iomgr/nameser.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 408 | 'src/core/lib/iomgr/network_status_tracker.h', |
| 409 | 'src/core/lib/iomgr/polling_entity.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 410 | 'src/core/lib/iomgr/pollset.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 411 | 'src/core/lib/iomgr/pollset_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 412 | 'src/core/lib/iomgr/pollset_set.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 413 | 'src/core/lib/iomgr/pollset_set_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 414 | 'src/core/lib/iomgr/pollset_set_windows.h', |
| 415 | 'src/core/lib/iomgr/pollset_windows.h', |
murgatroid99 | 5407089 | 2016-08-08 17:01:18 -0700 | [diff] [blame] | 416 | 'src/core/lib/iomgr/port.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 417 | 'src/core/lib/iomgr/resolve_address.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 418 | 'src/core/lib/iomgr/resolve_address_custom.h', |
Craig Tiller | 20afa3d | 2016-10-17 14:52:14 -0700 | [diff] [blame] | 419 | 'src/core/lib/iomgr/resource_quota.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 420 | 'src/core/lib/iomgr/sockaddr.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 421 | 'src/core/lib/iomgr/sockaddr_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 422 | 'src/core/lib/iomgr/sockaddr_posix.h', |
| 423 | 'src/core/lib/iomgr/sockaddr_utils.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 424 | 'src/core/lib/iomgr/sockaddr_windows.h', |
Michael Warres | c46b3eb | 2017-02-22 22:57:04 -0500 | [diff] [blame] | 425 | 'src/core/lib/iomgr/socket_factory_posix.h', |
Yuchen Zeng | de3daf5 | 2016-10-13 17:26:26 -0700 | [diff] [blame] | 426 | 'src/core/lib/iomgr/socket_mutator.h', |
murgatroid99 | 79b3227 | 2016-08-08 13:38:30 -0700 | [diff] [blame] | 427 | 'src/core/lib/iomgr/socket_utils.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 428 | 'src/core/lib/iomgr/socket_utils_posix.h', |
| 429 | 'src/core/lib/iomgr/socket_windows.h', |
Craig Tiller | 819cd88 | 2017-04-25 13:18:22 -0700 | [diff] [blame] | 430 | 'src/core/lib/iomgr/sys_epoll_wrapper.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 431 | 'src/core/lib/iomgr/tcp_client.h', |
Craig Tiller | 8695876 | 2016-09-23 12:05:34 -0700 | [diff] [blame] | 432 | 'src/core/lib/iomgr/tcp_client_posix.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 433 | 'src/core/lib/iomgr/tcp_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 434 | 'src/core/lib/iomgr/tcp_posix.h', |
| 435 | 'src/core/lib/iomgr/tcp_server.h', |
Yuchen Zeng | 47155ed | 2017-03-13 17:18:07 -0700 | [diff] [blame] | 436 | 'src/core/lib/iomgr/tcp_server_utils_posix.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 437 | 'src/core/lib/iomgr/tcp_windows.h', |
| 438 | 'src/core/lib/iomgr/time_averaged_stats.h', |
| 439 | 'src/core/lib/iomgr/timer.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 440 | 'src/core/lib/iomgr/timer_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 441 | 'src/core/lib/iomgr/timer_heap.h', |
Craig Tiller | c357179 | 2017-05-02 12:33:38 -0700 | [diff] [blame] | 442 | 'src/core/lib/iomgr/timer_manager.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 443 | 'src/core/lib/iomgr/udp_server.h', |
| 444 | 'src/core/lib/iomgr/unix_sockets_posix.h', |
Ken Payson | 31caabd | 2016-08-06 21:27:29 -0700 | [diff] [blame] | 445 | 'src/core/lib/iomgr/wakeup_fd_cv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 446 | 'src/core/lib/iomgr/wakeup_fd_pipe.h', |
| 447 | 'src/core/lib/iomgr/wakeup_fd_posix.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 448 | 'src/core/lib/json/json.h', |
| 449 | 'src/core/lib/json/json_common.h', |
| 450 | 'src/core/lib/json/json_reader.h', |
| 451 | 'src/core/lib/json/json_writer.h', |
Craig Tiller | 790f6af | 2017-03-30 12:39:24 -0700 | [diff] [blame] | 452 | 'src/core/lib/slice/b64.h', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 453 | 'src/core/lib/slice/percent_encoding.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 454 | 'src/core/lib/slice/slice_hash_table.h', |
Craig Tiller | 30d50fe | 2016-12-06 19:34:32 -0800 | [diff] [blame] | 455 | 'src/core/lib/slice/slice_internal.h', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 456 | 'src/core/lib/slice/slice_string_helpers.h', |
David Garcia Quintas | 396d49d | 2018-02-28 16:06:30 -0800 | [diff] [blame] | 457 | 'src/core/lib/slice/slice_weak_hash_table.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 458 | 'src/core/lib/surface/api_trace.h', |
| 459 | 'src/core/lib/surface/call.h', |
| 460 | 'src/core/lib/surface/call_test_only.h', |
| 461 | 'src/core/lib/surface/channel.h', |
| 462 | 'src/core/lib/surface/channel_init.h', |
| 463 | 'src/core/lib/surface/channel_stack_type.h', |
| 464 | 'src/core/lib/surface/completion_queue.h', |
Sree Kuchibhotla | bf18428 | 2017-03-21 15:18:58 -0700 | [diff] [blame] | 465 | 'src/core/lib/surface/completion_queue_factory.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 466 | 'src/core/lib/surface/event_string.h', |
| 467 | 'src/core/lib/surface/init.h', |
| 468 | 'src/core/lib/surface/lame_client.h', |
| 469 | 'src/core/lib/surface/server.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 470 | 'src/core/lib/surface/validate_metadata.h', |
Craig Tiller | 9e0066b | 2016-10-20 14:04:18 -0700 | [diff] [blame] | 471 | 'src/core/lib/transport/bdp_estimator.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 472 | 'src/core/lib/transport/byte_stream.h', |
| 473 | 'src/core/lib/transport/connectivity_state.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 474 | 'src/core/lib/transport/error_utils.h', |
| 475 | 'src/core/lib/transport/http2_errors.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 476 | 'src/core/lib/transport/metadata.h', |
| 477 | 'src/core/lib/transport/metadata_batch.h', |
Craig Tiller | dd2fa64 | 2016-10-20 15:46:32 -0700 | [diff] [blame] | 478 | 'src/core/lib/transport/pid_controller.h', |
Mark D. Roth | ea846a0 | 2016-11-03 11:32:54 -0700 | [diff] [blame] | 479 | 'src/core/lib/transport/service_config.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 480 | 'src/core/lib/transport/static_metadata.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 481 | 'src/core/lib/transport/status_conversion.h', |
Mark D. Roth | 718c834 | 2018-02-28 13:00:04 -0800 | [diff] [blame] | 482 | 'src/core/lib/transport/status_metadata.h', |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 483 | 'src/core/lib/transport/timeout_encoding.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 484 | 'src/core/lib/transport/transport.h', |
| 485 | 'src/core/lib/transport/transport_impl.h', |
Craig Tiller | 1f47730 | 2017-05-05 11:01:25 -0700 | [diff] [blame] | 486 | 'src/core/lib/debug/trace.h', |
Mark D. Roth | 09e458c | 2017-05-02 08:13:26 -0700 | [diff] [blame] | 487 | '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] | 488 | '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] | 489 | '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] | 490 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h', |
| 491 | '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] | 492 | 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h', |
Mark D. Roth | 5e9848e | 2017-10-06 13:59:32 -0700 | [diff] [blame] | 493 | 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.h', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 494 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h', |
| 495 | '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] | 496 | 'src/core/ext/filters/load_reporting/server_load_reporting_filter.h', |
| 497 | 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.h', |
Craig Tiller | 6d4894e | 2017-03-31 17:22:06 -0700 | [diff] [blame] | 498 | 'src/core/ext/filters/max_age/max_age_filter.h', |
Craig Tiller | 9b3648a | 2017-04-03 12:25:19 -0700 | [diff] [blame] | 499 | 'src/core/ext/filters/message_size/message_size_filter.h', |
David Garcia Quintas | 961353a | 2018-03-15 16:11:05 -0700 | [diff] [blame] | 500 | 'src/core/ext/filters/http/client_authority_filter.h', |
Muxi Yan | 29ff466 | 2017-05-15 10:27:55 -0700 | [diff] [blame] | 501 | 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h', |
| 502 | 'src/core/ext/filters/workarounds/workaround_utils.h', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 503 | 'src/core/lib/surface/init.cc', |
Vijay Pai | 8f4fbb1 | 2018-02-08 10:04:08 -0800 | [diff] [blame] | 504 | 'src/core/lib/avl/avl.cc', |
Craig Tiller | d48bd07 | 2017-10-06 11:25:14 -0700 | [diff] [blame] | 505 | 'src/core/lib/backoff/backoff.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 506 | 'src/core/lib/channel/channel_args.cc', |
| 507 | 'src/core/lib/channel/channel_stack.cc', |
| 508 | 'src/core/lib/channel/channel_stack_builder.cc', |
ncteisen | 3b42f83 | 2018-03-19 13:22:35 -0700 | [diff] [blame] | 509 | 'src/core/lib/channel/channel_trace.cc', |
ncteisen | bba8840 | 2018-05-11 11:54:41 -0400 | [diff] [blame] | 510 | 'src/core/lib/channel/channelz_registry.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 511 | 'src/core/lib/channel/connected_channel.cc', |
| 512 | 'src/core/lib/channel/handshaker.cc', |
| 513 | 'src/core/lib/channel/handshaker_factory.cc', |
| 514 | 'src/core/lib/channel/handshaker_registry.cc', |
ncteisen | 3b42f83 | 2018-03-19 13:22:35 -0700 | [diff] [blame] | 515 | 'src/core/lib/channel/status_util.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 516 | 'src/core/lib/compression/compression.cc', |
Muxi Yan | 03fc857 | 2017-10-06 18:47:09 -0700 | [diff] [blame] | 517 | 'src/core/lib/compression/compression_internal.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 518 | 'src/core/lib/compression/message_compress.cc', |
| 519 | 'src/core/lib/compression/stream_compression.cc', |
Yash Tibrewal | bc460fa | 2017-10-02 17:42:41 -0700 | [diff] [blame] | 520 | 'src/core/lib/compression/stream_compression_gzip.cc', |
| 521 | 'src/core/lib/compression/stream_compression_identity.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 522 | 'src/core/lib/debug/stats.cc', |
| 523 | 'src/core/lib/debug/stats_data.cc', |
| 524 | 'src/core/lib/http/format_request.cc', |
| 525 | 'src/core/lib/http/httpcli.cc', |
| 526 | 'src/core/lib/http/parser.cc', |
| 527 | 'src/core/lib/iomgr/call_combiner.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 528 | 'src/core/lib/iomgr/combiner.cc', |
| 529 | 'src/core/lib/iomgr/endpoint.cc', |
| 530 | 'src/core/lib/iomgr/endpoint_pair_posix.cc', |
| 531 | 'src/core/lib/iomgr/endpoint_pair_uv.cc', |
| 532 | 'src/core/lib/iomgr/endpoint_pair_windows.cc', |
| 533 | 'src/core/lib/iomgr/error.cc', |
| 534 | 'src/core/lib/iomgr/ev_epoll1_linux.cc', |
| 535 | 'src/core/lib/iomgr/ev_epollex_linux.cc', |
| 536 | 'src/core/lib/iomgr/ev_epollsig_linux.cc', |
| 537 | 'src/core/lib/iomgr/ev_poll_posix.cc', |
| 538 | 'src/core/lib/iomgr/ev_posix.cc', |
| 539 | 'src/core/lib/iomgr/ev_windows.cc', |
| 540 | 'src/core/lib/iomgr/exec_ctx.cc', |
| 541 | 'src/core/lib/iomgr/executor.cc', |
Nicolas "Pixel" Noble | 18a6837 | 2017-11-20 23:33:22 +0100 | [diff] [blame] | 542 | 'src/core/lib/iomgr/fork_posix.cc', |
| 543 | 'src/core/lib/iomgr/fork_windows.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 544 | 'src/core/lib/iomgr/gethostname_fallback.cc', |
| 545 | 'src/core/lib/iomgr/gethostname_host_name_max.cc', |
| 546 | 'src/core/lib/iomgr/gethostname_sysconf.cc', |
| 547 | 'src/core/lib/iomgr/iocp_windows.cc', |
| 548 | 'src/core/lib/iomgr/iomgr.cc', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 549 | 'src/core/lib/iomgr/iomgr_custom.cc', |
| 550 | 'src/core/lib/iomgr/iomgr_internal.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 551 | 'src/core/lib/iomgr/iomgr_posix.cc', |
| 552 | 'src/core/lib/iomgr/iomgr_uv.cc', |
| 553 | 'src/core/lib/iomgr/iomgr_windows.cc', |
| 554 | 'src/core/lib/iomgr/is_epollexclusive_available.cc', |
| 555 | 'src/core/lib/iomgr/load_file.cc', |
| 556 | 'src/core/lib/iomgr/lockfree_event.cc', |
| 557 | 'src/core/lib/iomgr/network_status_tracker.cc', |
| 558 | 'src/core/lib/iomgr/polling_entity.cc', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 559 | 'src/core/lib/iomgr/pollset.cc', |
| 560 | 'src/core/lib/iomgr/pollset_custom.cc', |
| 561 | 'src/core/lib/iomgr/pollset_set.cc', |
| 562 | 'src/core/lib/iomgr/pollset_set_custom.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 563 | 'src/core/lib/iomgr/pollset_set_windows.cc', |
| 564 | 'src/core/lib/iomgr/pollset_uv.cc', |
| 565 | 'src/core/lib/iomgr/pollset_windows.cc', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 566 | 'src/core/lib/iomgr/resolve_address.cc', |
| 567 | 'src/core/lib/iomgr/resolve_address_custom.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 568 | 'src/core/lib/iomgr/resolve_address_posix.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 569 | 'src/core/lib/iomgr/resolve_address_windows.cc', |
| 570 | 'src/core/lib/iomgr/resource_quota.cc', |
| 571 | 'src/core/lib/iomgr/sockaddr_utils.cc', |
| 572 | 'src/core/lib/iomgr/socket_factory_posix.cc', |
| 573 | 'src/core/lib/iomgr/socket_mutator.cc', |
| 574 | 'src/core/lib/iomgr/socket_utils_common_posix.cc', |
| 575 | 'src/core/lib/iomgr/socket_utils_linux.cc', |
| 576 | 'src/core/lib/iomgr/socket_utils_posix.cc', |
| 577 | 'src/core/lib/iomgr/socket_utils_uv.cc', |
Yash Tibrewal | 26c7803 | 2017-09-28 14:34:43 -0700 | [diff] [blame] | 578 | 'src/core/lib/iomgr/socket_utils_windows.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 579 | 'src/core/lib/iomgr/socket_windows.cc', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 580 | 'src/core/lib/iomgr/tcp_client.cc', |
| 581 | 'src/core/lib/iomgr/tcp_client_custom.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 582 | 'src/core/lib/iomgr/tcp_client_posix.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 583 | 'src/core/lib/iomgr/tcp_client_windows.cc', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 584 | 'src/core/lib/iomgr/tcp_custom.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 585 | 'src/core/lib/iomgr/tcp_posix.cc', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 586 | 'src/core/lib/iomgr/tcp_server.cc', |
| 587 | 'src/core/lib/iomgr/tcp_server_custom.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 588 | 'src/core/lib/iomgr/tcp_server_posix.cc', |
| 589 | 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc', |
| 590 | 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc', |
| 591 | 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 592 | 'src/core/lib/iomgr/tcp_server_windows.cc', |
| 593 | 'src/core/lib/iomgr/tcp_uv.cc', |
| 594 | 'src/core/lib/iomgr/tcp_windows.cc', |
| 595 | 'src/core/lib/iomgr/time_averaged_stats.cc', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 596 | 'src/core/lib/iomgr/timer.cc', |
| 597 | 'src/core/lib/iomgr/timer_custom.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 598 | 'src/core/lib/iomgr/timer_generic.cc', |
| 599 | 'src/core/lib/iomgr/timer_heap.cc', |
| 600 | 'src/core/lib/iomgr/timer_manager.cc', |
| 601 | 'src/core/lib/iomgr/timer_uv.cc', |
| 602 | 'src/core/lib/iomgr/udp_server.cc', |
| 603 | 'src/core/lib/iomgr/unix_sockets_posix.cc', |
| 604 | 'src/core/lib/iomgr/unix_sockets_posix_noop.cc', |
| 605 | 'src/core/lib/iomgr/wakeup_fd_cv.cc', |
| 606 | 'src/core/lib/iomgr/wakeup_fd_eventfd.cc', |
| 607 | 'src/core/lib/iomgr/wakeup_fd_nospecial.cc', |
| 608 | 'src/core/lib/iomgr/wakeup_fd_pipe.cc', |
| 609 | 'src/core/lib/iomgr/wakeup_fd_posix.cc', |
| 610 | 'src/core/lib/json/json.cc', |
| 611 | 'src/core/lib/json/json_reader.cc', |
| 612 | 'src/core/lib/json/json_string.cc', |
| 613 | 'src/core/lib/json/json_writer.cc', |
| 614 | 'src/core/lib/slice/b64.cc', |
| 615 | 'src/core/lib/slice/percent_encoding.cc', |
| 616 | 'src/core/lib/slice/slice.cc', |
| 617 | 'src/core/lib/slice/slice_buffer.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 618 | 'src/core/lib/slice/slice_intern.cc', |
| 619 | 'src/core/lib/slice/slice_string_helpers.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 620 | 'src/core/lib/surface/api_trace.cc', |
| 621 | 'src/core/lib/surface/byte_buffer.cc', |
| 622 | 'src/core/lib/surface/byte_buffer_reader.cc', |
| 623 | 'src/core/lib/surface/call.cc', |
| 624 | 'src/core/lib/surface/call_details.cc', |
| 625 | 'src/core/lib/surface/call_log_batch.cc', |
| 626 | 'src/core/lib/surface/channel.cc', |
| 627 | 'src/core/lib/surface/channel_init.cc', |
| 628 | 'src/core/lib/surface/channel_ping.cc', |
| 629 | 'src/core/lib/surface/channel_stack_type.cc', |
| 630 | 'src/core/lib/surface/completion_queue.cc', |
| 631 | 'src/core/lib/surface/completion_queue_factory.cc', |
| 632 | 'src/core/lib/surface/event_string.cc', |
Craig Tiller | 8ebb544 | 2017-04-07 16:01:55 -0700 | [diff] [blame] | 633 | 'src/core/lib/surface/lame_client.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 634 | 'src/core/lib/surface/metadata_array.cc', |
| 635 | 'src/core/lib/surface/server.cc', |
| 636 | 'src/core/lib/surface/validate_metadata.cc', |
| 637 | 'src/core/lib/surface/version.cc', |
| 638 | 'src/core/lib/transport/bdp_estimator.cc', |
| 639 | 'src/core/lib/transport/byte_stream.cc', |
| 640 | 'src/core/lib/transport/connectivity_state.cc', |
| 641 | 'src/core/lib/transport/error_utils.cc', |
| 642 | 'src/core/lib/transport/metadata.cc', |
| 643 | 'src/core/lib/transport/metadata_batch.cc', |
| 644 | 'src/core/lib/transport/pid_controller.cc', |
| 645 | 'src/core/lib/transport/service_config.cc', |
| 646 | 'src/core/lib/transport/static_metadata.cc', |
| 647 | 'src/core/lib/transport/status_conversion.cc', |
Mark D. Roth | 718c834 | 2018-02-28 13:00:04 -0800 | [diff] [blame] | 648 | 'src/core/lib/transport/status_metadata.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 649 | 'src/core/lib/transport/timeout_encoding.cc', |
| 650 | 'src/core/lib/transport/transport.cc', |
| 651 | 'src/core/lib/transport/transport_op_string.cc', |
| 652 | 'src/core/lib/debug/trace.cc', |
| 653 | 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc', |
| 654 | 'src/core/ext/transport/chttp2/transport/bin_decoder.cc', |
| 655 | 'src/core/ext/transport/chttp2/transport/bin_encoder.cc', |
| 656 | 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc', |
| 657 | 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc', |
| 658 | 'src/core/ext/transport/chttp2/transport/flow_control.cc', |
| 659 | 'src/core/ext/transport/chttp2/transport/frame_data.cc', |
| 660 | 'src/core/ext/transport/chttp2/transport/frame_goaway.cc', |
| 661 | 'src/core/ext/transport/chttp2/transport/frame_ping.cc', |
| 662 | 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc', |
| 663 | 'src/core/ext/transport/chttp2/transport/frame_settings.cc', |
| 664 | 'src/core/ext/transport/chttp2/transport/frame_window_update.cc', |
| 665 | 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc', |
| 666 | 'src/core/ext/transport/chttp2/transport/hpack_parser.cc', |
| 667 | 'src/core/ext/transport/chttp2/transport/hpack_table.cc', |
| 668 | 'src/core/ext/transport/chttp2/transport/http2_settings.cc', |
| 669 | 'src/core/ext/transport/chttp2/transport/huffsyms.cc', |
| 670 | 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc', |
| 671 | 'src/core/ext/transport/chttp2/transport/parsing.cc', |
| 672 | 'src/core/ext/transport/chttp2/transport/stream_lists.cc', |
| 673 | 'src/core/ext/transport/chttp2/transport/stream_map.cc', |
| 674 | 'src/core/ext/transport/chttp2/transport/varint.cc', |
| 675 | 'src/core/ext/transport/chttp2/transport/writing.cc', |
| 676 | 'src/core/ext/transport/chttp2/alpn/alpn.cc', |
| 677 | 'src/core/ext/filters/http/client/http_client_filter.cc', |
| 678 | 'src/core/ext/filters/http/http_filters_plugin.cc', |
| 679 | 'src/core/ext/filters/http/message_compress/message_compress_filter.cc', |
| 680 | 'src/core/ext/filters/http/server/http_server_filter.cc', |
| 681 | 'src/core/lib/http/httpcli_security_connector.cc', |
| 682 | 'src/core/lib/security/context/security_context.cc', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 683 | 'src/core/lib/security/credentials/alts/alts_credentials.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 684 | 'src/core/lib/security/credentials/composite/composite_credentials.cc', |
| 685 | 'src/core/lib/security/credentials/credentials.cc', |
| 686 | 'src/core/lib/security/credentials/credentials_metadata.cc', |
| 687 | 'src/core/lib/security/credentials/fake/fake_credentials.cc', |
| 688 | 'src/core/lib/security/credentials/google_default/credentials_generic.cc', |
| 689 | 'src/core/lib/security/credentials/google_default/google_default_credentials.cc', |
| 690 | 'src/core/lib/security/credentials/iam/iam_credentials.cc', |
| 691 | 'src/core/lib/security/credentials/jwt/json_token.cc', |
| 692 | 'src/core/lib/security/credentials/jwt/jwt_credentials.cc', |
| 693 | 'src/core/lib/security/credentials/jwt/jwt_verifier.cc', |
| 694 | 'src/core/lib/security/credentials/oauth2/oauth2_credentials.cc', |
| 695 | 'src/core/lib/security/credentials/plugin/plugin_credentials.cc', |
| 696 | 'src/core/lib/security/credentials/ssl/ssl_credentials.cc', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 697 | 'src/core/lib/security/security_connector/alts_security_connector.cc', |
Yihua Zhang | 75f0a9f | 2018-02-20 10:09:47 -0800 | [diff] [blame] | 698 | 'src/core/lib/security/security_connector/security_connector.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 699 | 'src/core/lib/security/transport/client_auth_filter.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 700 | 'src/core/lib/security/transport/secure_endpoint.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 701 | 'src/core/lib/security/transport/security_handshaker.cc', |
| 702 | 'src/core/lib/security/transport/server_auth_filter.cc', |
Mark D. Roth | 3e7f2df | 2018-02-26 13:17:06 -0800 | [diff] [blame] | 703 | 'src/core/lib/security/transport/target_authority_table.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 704 | 'src/core/lib/security/transport/tsi_error.cc', |
| 705 | 'src/core/lib/security/util/json_util.cc', |
| 706 | 'src/core/lib/surface/init_secure.cc', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 707 | 'src/core/tsi/alts/crypt/aes_gcm.cc', |
| 708 | 'src/core/tsi/alts/crypt/gsec.cc', |
| 709 | 'src/core/tsi/alts/frame_protector/alts_counter.cc', |
| 710 | 'src/core/tsi/alts/frame_protector/alts_crypter.cc', |
| 711 | 'src/core/tsi/alts/frame_protector/alts_frame_protector.cc', |
| 712 | 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc', |
| 713 | 'src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc', |
| 714 | 'src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc', |
| 715 | 'src/core/tsi/alts/frame_protector/frame_handler.cc', |
| 716 | 'src/core/tsi/alts/handshaker/alts_handshaker_client.cc', |
| 717 | 'src/core/tsi/alts/handshaker/alts_tsi_event.cc', |
| 718 | 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc', |
| 719 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc', |
| 720 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc', |
| 721 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc', |
| 722 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc', |
| 723 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc', |
| 724 | 'src/core/lib/security/credentials/alts/check_gcp_environment.cc', |
| 725 | 'src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc', |
| 726 | 'src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc', |
| 727 | 'src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc', |
| 728 | 'src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc', |
| 729 | 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc', |
| 730 | 'src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc', |
| 731 | 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc', |
| 732 | 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc', |
| 733 | 'src/core/tsi/alts/handshaker/alts_tsi_utils.cc', |
| 734 | 'src/core/tsi/alts/handshaker/transport_security_common_api.cc', |
| 735 | 'src/core/tsi/alts/handshaker/altscontext.pb.c', |
| 736 | 'src/core/tsi/alts/handshaker/handshaker.pb.c', |
| 737 | 'src/core/tsi/alts/handshaker/transport_security_common.pb.c', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 738 | 'src/core/tsi/transport_security.cc', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 739 | 'src/core/ext/transport/chttp2/client/insecure/channel_create.cc', |
| 740 | 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc', |
David Garcia Quintas | 49f625f | 2018-03-27 11:23:49 -0700 | [diff] [blame] | 741 | 'src/core/ext/transport/chttp2/client/authority.cc', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 742 | 'src/core/ext/transport/chttp2/client/chttp2_connector.cc', |
Yuchen Zeng | 0bad30a | 2017-10-05 21:47:39 -0700 | [diff] [blame] | 743 | 'src/core/ext/filters/client_channel/backup_poller.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 744 | 'src/core/ext/filters/client_channel/channel_connectivity.cc', |
| 745 | 'src/core/ext/filters/client_channel/client_channel.cc', |
| 746 | 'src/core/ext/filters/client_channel/client_channel_factory.cc', |
| 747 | 'src/core/ext/filters/client_channel/client_channel_plugin.cc', |
| 748 | 'src/core/ext/filters/client_channel/connector.cc', |
| 749 | 'src/core/ext/filters/client_channel/http_connect_handshaker.cc', |
| 750 | 'src/core/ext/filters/client_channel/http_proxy.cc', |
| 751 | 'src/core/ext/filters/client_channel/lb_policy.cc', |
| 752 | 'src/core/ext/filters/client_channel/lb_policy_factory.cc', |
| 753 | 'src/core/ext/filters/client_channel/lb_policy_registry.cc', |
Mark D. Roth | 3e7f2df | 2018-02-26 13:17:06 -0800 | [diff] [blame] | 754 | 'src/core/ext/filters/client_channel/method_params.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 755 | 'src/core/ext/filters/client_channel/parse_address.cc', |
| 756 | 'src/core/ext/filters/client_channel/proxy_mapper.cc', |
| 757 | 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc', |
| 758 | 'src/core/ext/filters/client_channel/resolver.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 759 | 'src/core/ext/filters/client_channel/resolver_registry.cc', |
| 760 | 'src/core/ext/filters/client_channel/retry_throttle.cc', |
| 761 | 'src/core/ext/filters/client_channel/subchannel.cc', |
| 762 | 'src/core/ext/filters/client_channel/subchannel_index.cc', |
| 763 | 'src/core/ext/filters/client_channel/uri_parser.cc', |
| 764 | 'src/core/ext/filters/deadline/deadline_filter.cc', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 765 | 'src/core/tsi/alts_transport_security.cc', |
| 766 | 'src/core/tsi/fake_transport_security.cc', |
Ruslan Nigmatullin | 99d0cee | 2018-03-20 09:18:29 -0700 | [diff] [blame] | 767 | 'src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc', |
| 768 | 'src/core/tsi/ssl/session_cache/ssl_session_cache.cc', |
| 769 | 'src/core/tsi/ssl/session_cache/ssl_session_openssl.cc', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 770 | 'src/core/tsi/ssl_transport_security.cc', |
| 771 | 'src/core/tsi/transport_security_grpc.cc', |
| 772 | 'src/core/ext/transport/chttp2/server/chttp2_server.cc', |
| 773 | 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 774 | 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc', |
| 775 | 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 776 | 'src/core/ext/transport/inproc/inproc_plugin.cc', |
| 777 | 'src/core/ext/transport/inproc/inproc_transport.cc', |
| 778 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc', |
| 779 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc', |
| 780 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc', |
| 781 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc', |
| 782 | '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] | 783 | '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] | 784 | 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc', |
| 785 | 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc', |
| 786 | 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc', |
| 787 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc', |
| 788 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc', |
| 789 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc', |
| 790 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc', |
| 791 | 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc', |
| 792 | 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc', |
| 793 | 'src/core/ext/filters/load_reporting/server_load_reporting_filter.cc', |
| 794 | 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 795 | 'src/core/ext/census/grpc_context.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 796 | 'src/core/ext/filters/max_age/max_age_filter.cc', |
| 797 | 'src/core/ext/filters/message_size/message_size_filter.cc', |
David Garcia Quintas | 961353a | 2018-03-15 16:11:05 -0700 | [diff] [blame] | 798 | 'src/core/ext/filters/http/client_authority_filter.cc', |
Yash Tibrewal | 8306284 | 2017-09-21 18:56:08 -0700 | [diff] [blame] | 799 | 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc', |
| 800 | 'src/core/ext/filters/workarounds/workaround_utils.cc', |
Yash Tibrewal | 1c9b584 | 2017-09-21 15:49:55 -0700 | [diff] [blame] | 801 | 'src/core/plugin_registry/grpc_plugin_registry.cc' |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 802 | |
Mark D. Roth | 4f2b0fd | 2018-01-19 12:12:23 -0800 | [diff] [blame] | 803 | ss.private_header_files = 'src/core/lib/gpr/arena.h', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 804 | 'src/core/lib/gpr/env.h', |
Vijay Pai | ae376bf | 2018-01-25 22:54:02 -0800 | [diff] [blame] | 805 | 'src/core/lib/gpr/host_port.h', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 806 | 'src/core/lib/gpr/mpscq.h', |
| 807 | 'src/core/lib/gpr/murmur_hash.h', |
| 808 | 'src/core/lib/gpr/spinlock.h', |
| 809 | 'src/core/lib/gpr/string.h', |
| 810 | 'src/core/lib/gpr/string_windows.h', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 811 | 'src/core/lib/gpr/time_precise.h', |
Vijay Pai | b6cf123 | 2018-01-25 21:02:26 -0800 | [diff] [blame] | 812 | 'src/core/lib/gpr/tls.h', |
| 813 | 'src/core/lib/gpr/tls_gcc.h', |
| 814 | 'src/core/lib/gpr/tls_msvc.h', |
| 815 | 'src/core/lib/gpr/tls_pthread.h', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 816 | 'src/core/lib/gpr/tmpfile.h', |
Vijay Pai | d4d0a30 | 2018-01-25 13:24:03 -0800 | [diff] [blame] | 817 | 'src/core/lib/gpr/useful.h', |
Mark D. Roth | 4f2b0fd | 2018-01-19 12:12:23 -0800 | [diff] [blame] | 818 | 'src/core/lib/gprpp/abstract.h', |
| 819 | 'src/core/lib/gprpp/atomic.h', |
| 820 | 'src/core/lib/gprpp/atomic_with_atm.h', |
| 821 | 'src/core/lib/gprpp/atomic_with_std.h', |
kpayson64 | 701e70d | 2018-04-30 17:40:00 -0700 | [diff] [blame] | 822 | 'src/core/lib/gprpp/fork.h', |
Mark D. Roth | 4f2b0fd | 2018-01-19 12:12:23 -0800 | [diff] [blame] | 823 | 'src/core/lib/gprpp/manual_constructor.h', |
| 824 | 'src/core/lib/gprpp/memory.h', |
Vijay Pai | da69355 | 2018-02-16 22:59:03 -0800 | [diff] [blame] | 825 | 'src/core/lib/gprpp/thd.h', |
Mark D. Roth | dbdf495 | 2018-01-18 11:21:12 -0800 | [diff] [blame] | 826 | 'src/core/lib/profiling/timers.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 827 | 'src/core/ext/transport/chttp2/transport/bin_decoder.h', |
| 828 | 'src/core/ext/transport/chttp2/transport/bin_encoder.h', |
| 829 | 'src/core/ext/transport/chttp2/transport/chttp2_transport.h', |
Craig Tiller | 3273648 | 2017-10-12 22:02:28 -0700 | [diff] [blame] | 830 | 'src/core/ext/transport/chttp2/transport/flow_control.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 831 | 'src/core/ext/transport/chttp2/transport/frame.h', |
| 832 | 'src/core/ext/transport/chttp2/transport/frame_data.h', |
| 833 | 'src/core/ext/transport/chttp2/transport/frame_goaway.h', |
| 834 | 'src/core/ext/transport/chttp2/transport/frame_ping.h', |
| 835 | 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h', |
| 836 | 'src/core/ext/transport/chttp2/transport/frame_settings.h', |
| 837 | 'src/core/ext/transport/chttp2/transport/frame_window_update.h', |
| 838 | 'src/core/ext/transport/chttp2/transport/hpack_encoder.h', |
| 839 | 'src/core/ext/transport/chttp2/transport/hpack_parser.h', |
| 840 | 'src/core/ext/transport/chttp2/transport/hpack_table.h', |
| 841 | 'src/core/ext/transport/chttp2/transport/http2_settings.h', |
| 842 | 'src/core/ext/transport/chttp2/transport/huffsyms.h', |
| 843 | 'src/core/ext/transport/chttp2/transport/incoming_metadata.h', |
| 844 | 'src/core/ext/transport/chttp2/transport/internal.h', |
| 845 | 'src/core/ext/transport/chttp2/transport/stream_map.h', |
| 846 | 'src/core/ext/transport/chttp2/transport/varint.h', |
| 847 | 'src/core/ext/transport/chttp2/alpn/alpn.h', |
| 848 | 'src/core/ext/filters/http/client/http_client_filter.h', |
| 849 | 'src/core/ext/filters/http/message_compress/message_compress_filter.h', |
| 850 | 'src/core/ext/filters/http/server/http_server_filter.h', |
Yihua Zhang | 392dad7 | 2018-05-03 20:12:20 -0700 | [diff] [blame] | 851 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 852 | 'src/core/lib/security/context/security_context.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 853 | 'src/core/lib/security/credentials/alts/alts_credentials.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 854 | 'src/core/lib/security/credentials/composite/composite_credentials.h', |
| 855 | 'src/core/lib/security/credentials/credentials.h', |
| 856 | 'src/core/lib/security/credentials/fake/fake_credentials.h', |
| 857 | 'src/core/lib/security/credentials/google_default/google_default_credentials.h', |
| 858 | 'src/core/lib/security/credentials/iam/iam_credentials.h', |
| 859 | 'src/core/lib/security/credentials/jwt/json_token.h', |
| 860 | 'src/core/lib/security/credentials/jwt/jwt_credentials.h', |
| 861 | 'src/core/lib/security/credentials/jwt/jwt_verifier.h', |
| 862 | 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h', |
| 863 | 'src/core/lib/security/credentials/plugin/plugin_credentials.h', |
| 864 | 'src/core/lib/security/credentials/ssl/ssl_credentials.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 865 | 'src/core/lib/security/security_connector/alts_security_connector.h', |
Yihua Zhang | 75f0a9f | 2018-02-20 10:09:47 -0800 | [diff] [blame] | 866 | 'src/core/lib/security/security_connector/security_connector.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 867 | 'src/core/lib/security/transport/auth_filters.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 868 | 'src/core/lib/security/transport/secure_endpoint.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 869 | 'src/core/lib/security/transport/security_handshaker.h', |
Mark D. Roth | 3e7f2df | 2018-02-26 13:17:06 -0800 | [diff] [blame] | 870 | 'src/core/lib/security/transport/target_authority_table.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 871 | 'src/core/lib/security/transport/tsi_error.h', |
| 872 | 'src/core/lib/security/util/json_util.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 873 | 'src/core/tsi/alts/crypt/gsec.h', |
| 874 | 'src/core/tsi/alts/frame_protector/alts_counter.h', |
| 875 | 'src/core/tsi/alts/frame_protector/alts_crypter.h', |
| 876 | 'src/core/tsi/alts/frame_protector/alts_frame_protector.h', |
| 877 | 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h', |
| 878 | 'src/core/tsi/alts/frame_protector/frame_handler.h', |
| 879 | 'src/core/tsi/alts/handshaker/alts_handshaker_client.h', |
| 880 | 'src/core/tsi/alts/handshaker/alts_tsi_event.h', |
| 881 | 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h', |
| 882 | 'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h', |
| 883 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h', |
| 884 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h', |
| 885 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h', |
| 886 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h', |
| 887 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h', |
| 888 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h', |
| 889 | 'src/core/lib/security/credentials/alts/check_gcp_environment.h', |
| 890 | 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h', |
| 891 | 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h', |
| 892 | 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h', |
| 893 | 'src/core/tsi/alts/handshaker/alts_tsi_utils.h', |
| 894 | 'src/core/tsi/alts/handshaker/transport_security_common_api.h', |
| 895 | 'src/core/tsi/alts/handshaker/altscontext.pb.h', |
| 896 | 'src/core/tsi/alts/handshaker/handshaker.pb.h', |
| 897 | 'src/core/tsi/alts/handshaker/transport_security_common.pb.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 898 | 'src/core/tsi/transport_security.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 899 | 'src/core/tsi/transport_security_interface.h', |
David Garcia Quintas | 49f625f | 2018-03-27 11:23:49 -0700 | [diff] [blame] | 900 | 'src/core/ext/transport/chttp2/client/authority.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 901 | 'src/core/ext/transport/chttp2/client/chttp2_connector.h', |
Yuchen Zeng | 0bad30a | 2017-10-05 21:47:39 -0700 | [diff] [blame] | 902 | 'src/core/ext/filters/client_channel/backup_poller.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 903 | 'src/core/ext/filters/client_channel/client_channel.h', |
| 904 | 'src/core/ext/filters/client_channel/client_channel_factory.h', |
| 905 | 'src/core/ext/filters/client_channel/connector.h', |
| 906 | 'src/core/ext/filters/client_channel/http_connect_handshaker.h', |
| 907 | 'src/core/ext/filters/client_channel/http_proxy.h', |
| 908 | 'src/core/ext/filters/client_channel/lb_policy.h', |
| 909 | 'src/core/ext/filters/client_channel/lb_policy_factory.h', |
| 910 | 'src/core/ext/filters/client_channel/lb_policy_registry.h', |
Mark D. Roth | 3e7f2df | 2018-02-26 13:17:06 -0800 | [diff] [blame] | 911 | 'src/core/ext/filters/client_channel/method_params.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 912 | 'src/core/ext/filters/client_channel/parse_address.h', |
| 913 | 'src/core/ext/filters/client_channel/proxy_mapper.h', |
| 914 | 'src/core/ext/filters/client_channel/proxy_mapper_registry.h', |
| 915 | 'src/core/ext/filters/client_channel/resolver.h', |
| 916 | 'src/core/ext/filters/client_channel/resolver_factory.h', |
| 917 | 'src/core/ext/filters/client_channel/resolver_registry.h', |
| 918 | 'src/core/ext/filters/client_channel/retry_throttle.h', |
| 919 | 'src/core/ext/filters/client_channel/subchannel.h', |
| 920 | 'src/core/ext/filters/client_channel/subchannel_index.h', |
| 921 | 'src/core/ext/filters/client_channel/uri_parser.h', |
| 922 | 'src/core/ext/filters/deadline/deadline_filter.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 923 | 'src/core/tsi/alts_transport_security.h', |
| 924 | 'src/core/tsi/fake_transport_security.h', |
Ruslan Nigmatullin | 99d0cee | 2018-03-20 09:18:29 -0700 | [diff] [blame] | 925 | 'src/core/tsi/ssl/session_cache/ssl_session.h', |
| 926 | 'src/core/tsi/ssl/session_cache/ssl_session_cache.h', |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 927 | 'src/core/tsi/ssl_transport_security.h', |
| 928 | 'src/core/tsi/ssl_types.h', |
| 929 | 'src/core/tsi/transport_security_grpc.h', |
| 930 | 'src/core/ext/transport/chttp2/server/chttp2_server.h', |
Vijay Pai | 4280725 | 2017-07-28 15:08:24 -0700 | [diff] [blame] | 931 | 'src/core/ext/transport/inproc/inproc_transport.h', |
Vijay Pai | 8f4fbb1 | 2018-02-08 10:04:08 -0800 | [diff] [blame] | 932 | 'src/core/lib/avl/avl.h', |
Craig Tiller | 2014a37 | 2017-07-21 15:36:11 -0700 | [diff] [blame] | 933 | 'src/core/lib/backoff/backoff.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 934 | 'src/core/lib/channel/channel_args.h', |
| 935 | 'src/core/lib/channel/channel_stack.h', |
| 936 | 'src/core/lib/channel/channel_stack_builder.h', |
ncteisen | 3b42f83 | 2018-03-19 13:22:35 -0700 | [diff] [blame] | 937 | 'src/core/lib/channel/channel_trace.h', |
ncteisen | bba8840 | 2018-05-11 11:54:41 -0400 | [diff] [blame] | 938 | 'src/core/lib/channel/channelz_registry.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 939 | 'src/core/lib/channel/connected_channel.h', |
| 940 | 'src/core/lib/channel/context.h', |
Mark D. Roth | dfbdefe | 2016-07-14 09:18:22 -0700 | [diff] [blame] | 941 | 'src/core/lib/channel/handshaker.h', |
Mark D. Roth | 1f0f23c | 2017-01-06 13:07:19 -0800 | [diff] [blame] | 942 | 'src/core/lib/channel/handshaker_factory.h', |
| 943 | 'src/core/lib/channel/handshaker_registry.h', |
ncteisen | 3b42f83 | 2018-03-19 13:22:35 -0700 | [diff] [blame] | 944 | 'src/core/lib/channel/status_util.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 945 | 'src/core/lib/compression/algorithm_metadata.h', |
Muxi Yan | 92d1bc1 | 2017-09-16 10:09:58 -0700 | [diff] [blame] | 946 | 'src/core/lib/compression/compression_internal.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 947 | 'src/core/lib/compression/message_compress.h', |
Muxi Yan | e87a7e1 | 2017-06-29 16:53:24 -0700 | [diff] [blame] | 948 | 'src/core/lib/compression/stream_compression.h', |
Muxi Yan | bf5484e | 2017-09-01 18:03:03 -0700 | [diff] [blame] | 949 | 'src/core/lib/compression/stream_compression_gzip.h', |
| 950 | 'src/core/lib/compression/stream_compression_identity.h', |
Craig Tiller | 6e73974 | 2017-08-31 11:22:52 -0700 | [diff] [blame] | 951 | 'src/core/lib/debug/stats.h', |
| 952 | 'src/core/lib/debug/stats_data.h', |
Mark D. Roth | 4f2b0fd | 2018-01-19 12:12:23 -0800 | [diff] [blame] | 953 | 'src/core/lib/gprpp/debug_location.h', |
| 954 | 'src/core/lib/gprpp/inlined_vector.h', |
| 955 | 'src/core/lib/gprpp/orphanable.h', |
| 956 | 'src/core/lib/gprpp/ref_counted.h', |
| 957 | 'src/core/lib/gprpp/ref_counted_ptr.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 958 | 'src/core/lib/http/format_request.h', |
| 959 | 'src/core/lib/http/httpcli.h', |
| 960 | 'src/core/lib/http/parser.h', |
Craig Tiller | 43c1b5f | 2017-10-02 14:42:49 -0700 | [diff] [blame] | 961 | 'src/core/lib/iomgr/block_annotate.h', |
Mark D. Roth | 764cf04 | 2017-09-01 09:00:06 -0700 | [diff] [blame] | 962 | 'src/core/lib/iomgr/call_combiner.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 963 | 'src/core/lib/iomgr/closure.h', |
Craig Tiller | 57726ca | 2016-09-12 11:59:45 -0700 | [diff] [blame] | 964 | 'src/core/lib/iomgr/combiner.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 965 | 'src/core/lib/iomgr/endpoint.h', |
| 966 | 'src/core/lib/iomgr/endpoint_pair.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 967 | 'src/core/lib/iomgr/error.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 968 | 'src/core/lib/iomgr/error_internal.h', |
Craig Tiller | c67cc99 | 2017-04-27 10:15:51 -0700 | [diff] [blame] | 969 | 'src/core/lib/iomgr/ev_epoll1_linux.h', |
Craig Tiller | f4360d7 | 2017-04-07 08:51:00 -0700 | [diff] [blame] | 970 | 'src/core/lib/iomgr/ev_epollex_linux.h', |
Craig Tiller | c67cc99 | 2017-04-27 10:15:51 -0700 | [diff] [blame] | 971 | 'src/core/lib/iomgr/ev_epollsig_linux.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 972 | 'src/core/lib/iomgr/ev_poll_posix.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 973 | 'src/core/lib/iomgr/ev_posix.h', |
| 974 | 'src/core/lib/iomgr/exec_ctx.h', |
| 975 | 'src/core/lib/iomgr/executor.h', |
Mark D. Roth | f9bf428 | 2017-08-03 14:47:23 -0700 | [diff] [blame] | 976 | 'src/core/lib/iomgr/gethostname.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 977 | 'src/core/lib/iomgr/iocp_windows.h', |
| 978 | 'src/core/lib/iomgr/iomgr.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 979 | 'src/core/lib/iomgr/iomgr_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 980 | 'src/core/lib/iomgr/iomgr_internal.h', |
| 981 | 'src/core/lib/iomgr/iomgr_posix.h', |
Craig Tiller | 819cd88 | 2017-04-25 13:18:22 -0700 | [diff] [blame] | 982 | 'src/core/lib/iomgr/is_epollexclusive_available.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 983 | 'src/core/lib/iomgr/load_file.h', |
Craig Tiller | 376887d | 2017-04-06 08:27:03 -0700 | [diff] [blame] | 984 | 'src/core/lib/iomgr/lockfree_event.h', |
Yuchen Zeng | f630ff2 | 2017-07-25 13:28:45 -0700 | [diff] [blame] | 985 | 'src/core/lib/iomgr/nameser.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 986 | 'src/core/lib/iomgr/network_status_tracker.h', |
| 987 | 'src/core/lib/iomgr/polling_entity.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 988 | 'src/core/lib/iomgr/pollset.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 989 | 'src/core/lib/iomgr/pollset_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 990 | 'src/core/lib/iomgr/pollset_set.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 991 | 'src/core/lib/iomgr/pollset_set_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 992 | 'src/core/lib/iomgr/pollset_set_windows.h', |
| 993 | 'src/core/lib/iomgr/pollset_windows.h', |
murgatroid99 | 5407089 | 2016-08-08 17:01:18 -0700 | [diff] [blame] | 994 | 'src/core/lib/iomgr/port.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 995 | 'src/core/lib/iomgr/resolve_address.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 996 | 'src/core/lib/iomgr/resolve_address_custom.h', |
Craig Tiller | 20afa3d | 2016-10-17 14:52:14 -0700 | [diff] [blame] | 997 | 'src/core/lib/iomgr/resource_quota.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 998 | 'src/core/lib/iomgr/sockaddr.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 999 | 'src/core/lib/iomgr/sockaddr_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1000 | 'src/core/lib/iomgr/sockaddr_posix.h', |
| 1001 | 'src/core/lib/iomgr/sockaddr_utils.h', |
Jorge Canizales | 3bdaa5e | 2016-06-30 19:15:21 -0700 | [diff] [blame] | 1002 | 'src/core/lib/iomgr/sockaddr_windows.h', |
Michael Warres | c46b3eb | 2017-02-22 22:57:04 -0500 | [diff] [blame] | 1003 | 'src/core/lib/iomgr/socket_factory_posix.h', |
Yuchen Zeng | de3daf5 | 2016-10-13 17:26:26 -0700 | [diff] [blame] | 1004 | 'src/core/lib/iomgr/socket_mutator.h', |
murgatroid99 | 79b3227 | 2016-08-08 13:38:30 -0700 | [diff] [blame] | 1005 | 'src/core/lib/iomgr/socket_utils.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1006 | 'src/core/lib/iomgr/socket_utils_posix.h', |
| 1007 | 'src/core/lib/iomgr/socket_windows.h', |
Craig Tiller | 819cd88 | 2017-04-25 13:18:22 -0700 | [diff] [blame] | 1008 | 'src/core/lib/iomgr/sys_epoll_wrapper.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1009 | 'src/core/lib/iomgr/tcp_client.h', |
Craig Tiller | 8695876 | 2016-09-23 12:05:34 -0700 | [diff] [blame] | 1010 | 'src/core/lib/iomgr/tcp_client_posix.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 1011 | 'src/core/lib/iomgr/tcp_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1012 | 'src/core/lib/iomgr/tcp_posix.h', |
| 1013 | 'src/core/lib/iomgr/tcp_server.h', |
Yuchen Zeng | 47155ed | 2017-03-13 17:18:07 -0700 | [diff] [blame] | 1014 | 'src/core/lib/iomgr/tcp_server_utils_posix.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1015 | 'src/core/lib/iomgr/tcp_windows.h', |
| 1016 | 'src/core/lib/iomgr/time_averaged_stats.h', |
| 1017 | 'src/core/lib/iomgr/timer.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 1018 | 'src/core/lib/iomgr/timer_custom.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1019 | 'src/core/lib/iomgr/timer_heap.h', |
Craig Tiller | c357179 | 2017-05-02 12:33:38 -0700 | [diff] [blame] | 1020 | 'src/core/lib/iomgr/timer_manager.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1021 | 'src/core/lib/iomgr/udp_server.h', |
| 1022 | 'src/core/lib/iomgr/unix_sockets_posix.h', |
Ken Payson | 31caabd | 2016-08-06 21:27:29 -0700 | [diff] [blame] | 1023 | 'src/core/lib/iomgr/wakeup_fd_cv.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1024 | 'src/core/lib/iomgr/wakeup_fd_pipe.h', |
| 1025 | 'src/core/lib/iomgr/wakeup_fd_posix.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1026 | 'src/core/lib/json/json.h', |
| 1027 | 'src/core/lib/json/json_common.h', |
| 1028 | 'src/core/lib/json/json_reader.h', |
| 1029 | 'src/core/lib/json/json_writer.h', |
Craig Tiller | 790f6af | 2017-03-30 12:39:24 -0700 | [diff] [blame] | 1030 | 'src/core/lib/slice/b64.h', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 1031 | 'src/core/lib/slice/percent_encoding.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 1032 | 'src/core/lib/slice/slice_hash_table.h', |
Craig Tiller | 30d50fe | 2016-12-06 19:34:32 -0800 | [diff] [blame] | 1033 | 'src/core/lib/slice/slice_internal.h', |
Craig Tiller | c335054 | 2016-10-26 16:19:01 -0700 | [diff] [blame] | 1034 | 'src/core/lib/slice/slice_string_helpers.h', |
David Garcia Quintas | 396d49d | 2018-02-28 16:06:30 -0800 | [diff] [blame] | 1035 | 'src/core/lib/slice/slice_weak_hash_table.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1036 | 'src/core/lib/surface/api_trace.h', |
| 1037 | 'src/core/lib/surface/call.h', |
| 1038 | 'src/core/lib/surface/call_test_only.h', |
| 1039 | 'src/core/lib/surface/channel.h', |
| 1040 | 'src/core/lib/surface/channel_init.h', |
| 1041 | 'src/core/lib/surface/channel_stack_type.h', |
| 1042 | 'src/core/lib/surface/completion_queue.h', |
Sree Kuchibhotla | bf18428 | 2017-03-21 15:18:58 -0700 | [diff] [blame] | 1043 | 'src/core/lib/surface/completion_queue_factory.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1044 | 'src/core/lib/surface/event_string.h', |
| 1045 | 'src/core/lib/surface/init.h', |
| 1046 | 'src/core/lib/surface/lame_client.h', |
| 1047 | 'src/core/lib/surface/server.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 1048 | 'src/core/lib/surface/validate_metadata.h', |
Craig Tiller | 9e0066b | 2016-10-20 14:04:18 -0700 | [diff] [blame] | 1049 | 'src/core/lib/transport/bdp_estimator.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1050 | 'src/core/lib/transport/byte_stream.h', |
| 1051 | 'src/core/lib/transport/connectivity_state.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 1052 | 'src/core/lib/transport/error_utils.h', |
| 1053 | 'src/core/lib/transport/http2_errors.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1054 | 'src/core/lib/transport/metadata.h', |
| 1055 | 'src/core/lib/transport/metadata_batch.h', |
Craig Tiller | dd2fa64 | 2016-10-20 15:46:32 -0700 | [diff] [blame] | 1056 | 'src/core/lib/transport/pid_controller.h', |
Mark D. Roth | ea846a0 | 2016-11-03 11:32:54 -0700 | [diff] [blame] | 1057 | 'src/core/lib/transport/service_config.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1058 | 'src/core/lib/transport/static_metadata.h', |
Craig Tiller | 7c70b6c | 2017-01-23 07:48:42 -0800 | [diff] [blame] | 1059 | 'src/core/lib/transport/status_conversion.h', |
Mark D. Roth | 718c834 | 2018-02-28 13:00:04 -0800 | [diff] [blame] | 1060 | 'src/core/lib/transport/status_metadata.h', |
Robbie Shade | 710d242 | 2016-07-13 15:15:38 -0400 | [diff] [blame] | 1061 | 'src/core/lib/transport/timeout_encoding.h', |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1062 | 'src/core/lib/transport/transport.h', |
| 1063 | 'src/core/lib/transport/transport_impl.h', |
Craig Tiller | 1f47730 | 2017-05-05 11:01:25 -0700 | [diff] [blame] | 1064 | 'src/core/lib/debug/trace.h', |
Mark D. Roth | 09e458c | 2017-05-02 08:13:26 -0700 | [diff] [blame] | 1065 | '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] | 1066 | '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] | 1067 | '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] | 1068 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h', |
| 1069 | '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] | 1070 | 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h', |
Mark D. Roth | 5e9848e | 2017-10-06 13:59:32 -0700 | [diff] [blame] | 1071 | 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.h', |
Craig Tiller | 9eb0fde | 2017-03-31 16:59:30 -0700 | [diff] [blame] | 1072 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h', |
| 1073 | '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] | 1074 | 'src/core/ext/filters/load_reporting/server_load_reporting_filter.h', |
| 1075 | 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.h', |
Craig Tiller | 9b3648a | 2017-04-03 12:25:19 -0700 | [diff] [blame] | 1076 | 'src/core/ext/filters/max_age/max_age_filter.h', |
Muxi Yan | 29ff466 | 2017-05-15 10:27:55 -0700 | [diff] [blame] | 1077 | 'src/core/ext/filters/message_size/message_size_filter.h', |
David Garcia Quintas | 961353a | 2018-03-15 16:11:05 -0700 | [diff] [blame] | 1078 | 'src/core/ext/filters/http/client_authority_filter.h', |
Muxi Yan | 29ff466 | 2017-05-15 10:27:55 -0700 | [diff] [blame] | 1079 | 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h', |
| 1080 | 'src/core/ext/filters/workarounds/workaround_utils.h' |
Jorge Canizales | cc074d9 | 2016-06-28 09:52:43 -0700 | [diff] [blame] | 1081 | end |
Nicolas "Pixel" Noble | 20b8333 | 2016-07-21 19:28:38 +0200 | [diff] [blame] | 1082 | |
Muxi Yan | 588b224 | 2018-04-25 14:20:56 -0700 | [diff] [blame] | 1083 | s.subspec 'CFStream-Implementation' do |ss| |
| 1084 | ss.header_mappings_dir = '.' |
| 1085 | ss.dependency "#{s.name}/Implementation", version |
| 1086 | ss.pod_target_xcconfig = { |
| 1087 | 'GCC_PREPROCESSOR_DEFINITIONS' => 'GRPC_CFSTREAM=1' |
| 1088 | } |
Muxi Yan | c512b4f | 2018-06-05 09:42:33 -0700 | [diff] [blame] | 1089 | ss.source_files = 'src/core/lib/iomgr/cfstream_handle.cc', |
| 1090 | 'src/core/lib/iomgr/endpoint_cfstream.cc', |
| 1091 | 'src/core/lib/iomgr/error_cfstream.cc', |
| 1092 | 'src/core/lib/iomgr/tcp_client_cfstream.cc', |
| 1093 | 'src/core/lib/iomgr/cfstream_handle.h', |
| 1094 | 'src/core/lib/iomgr/endpoint_cfstream.h', |
| 1095 | 'src/core/lib/iomgr/error_cfstream.h' |
| 1096 | ss.private_header_files = 'src/core/lib/iomgr/cfstream_handle.h', |
| 1097 | 'src/core/lib/iomgr/endpoint_cfstream.h', |
| 1098 | 'src/core/lib/iomgr/error_cfstream.h' |
Muxi Yan | 588b224 | 2018-04-25 14:20:56 -0700 | [diff] [blame] | 1099 | end |
| 1100 | |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 1101 | s.subspec 'Cronet-Interface' do |ss| |
| 1102 | ss.header_mappings_dir = 'include/grpc' |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 1103 | ss.source_files = 'include/grpc/grpc_cronet.h' |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 1104 | end |
| 1105 | |
Muxi Yan | f8372c6 | 2016-07-29 09:58:55 -0700 | [diff] [blame] | 1106 | s.subspec 'Cronet-Implementation' do |ss| |
Muxi Yan | 2a5072e | 2016-07-27 15:10:22 -0700 | [diff] [blame] | 1107 | ss.header_mappings_dir = '.' |
Muxi Yan | e2de92f | 2017-01-31 16:30:52 -0800 | [diff] [blame] | 1108 | |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 1109 | ss.dependency "#{s.name}/Interface", version |
| 1110 | ss.dependency "#{s.name}/Implementation", version |
| 1111 | ss.dependency "#{s.name}/Cronet-Interface", version |
| 1112 | |
| 1113 | ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.cc', |
Muxi Yan | 7cc4bd8 | 2018-03-19 18:34:58 -0700 | [diff] [blame] | 1114 | 'src/core/ext/transport/cronet/transport/cronet_transport.cc', |
Muxi Yan | 7cc4bd8 | 2018-03-19 18:34:58 -0700 | [diff] [blame] | 1115 | 'third_party/nanopb/pb_common.c', |
| 1116 | 'third_party/nanopb/pb_decode.c', |
| 1117 | 'third_party/nanopb/pb_encode.c', |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 1118 | 'src/core/ext/transport/cronet/transport/cronet_transport.h', |
| 1119 | 'third_party/objective_c/Cronet/bidirectional_stream_c.h', |
| 1120 | 'third_party/nanopb/pb.h', |
| 1121 | 'third_party/nanopb/pb_common.h', |
| 1122 | 'third_party/nanopb/pb_decode.h', |
| 1123 | 'third_party/nanopb/pb_encode.h' |
Muxi Yan | 2a5072e | 2016-07-27 15:10:22 -0700 | [diff] [blame] | 1124 | end |
| 1125 | |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 1126 | s.subspec 'Tests' do |ss| |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 1127 | ss.header_mappings_dir = '.' |
| 1128 | |
Muxi Yan | 834aeca | 2018-03-30 16:02:23 -0700 | [diff] [blame] | 1129 | ss.dependency "#{s.name}/Interface", version |
| 1130 | ss.dependency "#{s.name}/Implementation", version |
Muxi Yan | e2de92f | 2017-01-31 16:30:52 -0800 | [diff] [blame] | 1131 | |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1132 | ss.source_files = 'test/core/util/test_config.cc', |
| 1133 | 'test/core/util/test_config.h', |
| 1134 | 'test/core/end2end/data/client_certs.cc', |
| 1135 | 'test/core/end2end/data/server1_cert.cc', |
| 1136 | 'test/core/end2end/data/server1_key.cc', |
| 1137 | 'test/core/end2end/data/test_root_cert.cc', |
| 1138 | 'test/core/security/oauth2_utils.cc', |
| 1139 | 'test/core/end2end/cq_verifier.cc', |
| 1140 | 'test/core/end2end/fixtures/http_proxy_fixture.cc', |
| 1141 | 'test/core/end2end/fixtures/proxy.cc', |
| 1142 | 'test/core/iomgr/endpoint_tests.cc', |
| 1143 | 'test/core/util/debugger_macros.cc', |
Yihua Zhang | cc93663 | 2018-05-08 10:15:03 -0700 | [diff] [blame] | 1144 | 'test/core/util/fuzzer_util.cc', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1145 | 'test/core/util/grpc_profiler.cc', |
| 1146 | 'test/core/util/histogram.cc', |
| 1147 | 'test/core/util/memory_counters.cc', |
| 1148 | 'test/core/util/mock_endpoint.cc', |
| 1149 | 'test/core/util/parse_hexstring.cc', |
| 1150 | 'test/core/util/passthru_endpoint.cc', |
Yash Tibrewal | 34a57d0 | 2017-10-23 15:33:21 -0700 | [diff] [blame] | 1151 | 'test/core/util/port.cc', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1152 | 'test/core/util/port_isolated_runtime_environment.cc', |
| 1153 | 'test/core/util/port_server_client.cc', |
| 1154 | 'test/core/util/slice_splitter.cc', |
Vijay Pai | 8a99fdb | 2018-01-25 15:38:20 -0800 | [diff] [blame] | 1155 | 'test/core/util/subprocess_posix.cc', |
| 1156 | 'test/core/util/subprocess_windows.cc', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1157 | 'test/core/util/tracer_util.cc', |
| 1158 | 'test/core/util/trickle_endpoint.cc', |
Vijay Pai | 80e23d1 | 2018-01-25 21:50:18 -0800 | [diff] [blame] | 1159 | 'test/core/util/cmdline.cc', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1160 | 'test/core/end2end/data/ssl_test_data.h', |
| 1161 | 'test/core/security/oauth2_utils.h', |
| 1162 | 'test/core/end2end/cq_verifier.h', |
| 1163 | 'test/core/end2end/fixtures/http_proxy_fixture.h', |
| 1164 | 'test/core/end2end/fixtures/proxy.h', |
| 1165 | 'test/core/iomgr/endpoint_tests.h', |
| 1166 | 'test/core/util/debugger_macros.h', |
Yihua Zhang | cc93663 | 2018-05-08 10:15:03 -0700 | [diff] [blame] | 1167 | 'test/core/util/fuzzer_util.h', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1168 | 'test/core/util/grpc_profiler.h', |
| 1169 | 'test/core/util/histogram.h', |
| 1170 | 'test/core/util/memory_counters.h', |
| 1171 | 'test/core/util/mock_endpoint.h', |
| 1172 | 'test/core/util/parse_hexstring.h', |
| 1173 | 'test/core/util/passthru_endpoint.h', |
| 1174 | 'test/core/util/port.h', |
| 1175 | 'test/core/util/port_server_client.h', |
| 1176 | 'test/core/util/slice_splitter.h', |
Vijay Pai | 8a99fdb | 2018-01-25 15:38:20 -0800 | [diff] [blame] | 1177 | 'test/core/util/subprocess.h', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1178 | 'test/core/util/tracer_util.h', |
| 1179 | 'test/core/util/trickle_endpoint.h', |
Vijay Pai | 80e23d1 | 2018-01-25 21:50:18 -0800 | [diff] [blame] | 1180 | 'test/core/util/cmdline.h', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1181 | 'test/core/end2end/end2end_tests.cc', |
| 1182 | 'test/core/end2end/end2end_test_utils.cc', |
| 1183 | 'test/core/end2end/tests/authority_not_supported.cc', |
| 1184 | 'test/core/end2end/tests/bad_hostname.cc', |
| 1185 | 'test/core/end2end/tests/bad_ping.cc', |
| 1186 | 'test/core/end2end/tests/binary_metadata.cc', |
| 1187 | 'test/core/end2end/tests/call_creds.cc', |
David Garcia Quintas | 861363d | 2018-03-26 15:57:33 -0700 | [diff] [blame] | 1188 | 'test/core/end2end/tests/call_host_override.cc', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1189 | 'test/core/end2end/tests/cancel_after_accept.cc', |
| 1190 | 'test/core/end2end/tests/cancel_after_client_done.cc', |
| 1191 | 'test/core/end2end/tests/cancel_after_invoke.cc', |
| 1192 | 'test/core/end2end/tests/cancel_after_round_trip.cc', |
| 1193 | 'test/core/end2end/tests/cancel_before_invoke.cc', |
| 1194 | 'test/core/end2end/tests/cancel_in_a_vacuum.cc', |
| 1195 | 'test/core/end2end/tests/cancel_with_status.cc', |
| 1196 | 'test/core/end2end/tests/compressed_payload.cc', |
| 1197 | 'test/core/end2end/tests/connectivity.cc', |
| 1198 | 'test/core/end2end/tests/default_host.cc', |
| 1199 | 'test/core/end2end/tests/disappearing_server.cc', |
| 1200 | 'test/core/end2end/tests/empty_batch.cc', |
| 1201 | 'test/core/end2end/tests/filter_call_init_fails.cc', |
| 1202 | 'test/core/end2end/tests/filter_causes_close.cc', |
| 1203 | 'test/core/end2end/tests/filter_latency.cc', |
Ken Payson | 6535cfd | 2018-01-04 12:56:52 -0800 | [diff] [blame] | 1204 | 'test/core/end2end/tests/filter_status_code.cc', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1205 | 'test/core/end2end/tests/graceful_server_shutdown.cc', |
| 1206 | 'test/core/end2end/tests/high_initial_seqno.cc', |
| 1207 | 'test/core/end2end/tests/hpack_size.cc', |
| 1208 | 'test/core/end2end/tests/idempotent_request.cc', |
| 1209 | 'test/core/end2end/tests/invoke_large_request.cc', |
| 1210 | 'test/core/end2end/tests/keepalive_timeout.cc', |
| 1211 | 'test/core/end2end/tests/large_metadata.cc', |
| 1212 | 'test/core/end2end/tests/load_reporting_hook.cc', |
| 1213 | 'test/core/end2end/tests/max_concurrent_streams.cc', |
| 1214 | 'test/core/end2end/tests/max_connection_age.cc', |
| 1215 | 'test/core/end2end/tests/max_connection_idle.cc', |
| 1216 | 'test/core/end2end/tests/max_message_length.cc', |
| 1217 | 'test/core/end2end/tests/negative_deadline.cc', |
| 1218 | 'test/core/end2end/tests/network_status_change.cc', |
ncteisen | a94896f | 2018-06-07 16:08:48 -0700 | [diff] [blame] | 1219 | 'test/core/end2end/tests/no_error_on_hotpath.cc', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1220 | 'test/core/end2end/tests/no_logging.cc', |
| 1221 | 'test/core/end2end/tests/no_op.cc', |
| 1222 | 'test/core/end2end/tests/payload.cc', |
| 1223 | 'test/core/end2end/tests/ping.cc', |
| 1224 | 'test/core/end2end/tests/ping_pong_streaming.cc', |
| 1225 | 'test/core/end2end/tests/proxy_auth.cc', |
| 1226 | 'test/core/end2end/tests/registered_call.cc', |
| 1227 | 'test/core/end2end/tests/request_with_flags.cc', |
| 1228 | 'test/core/end2end/tests/request_with_payload.cc', |
| 1229 | 'test/core/end2end/tests/resource_quota_server.cc', |
Mark D. Roth | 718c834 | 2018-02-28 13:00:04 -0800 | [diff] [blame] | 1230 | 'test/core/end2end/tests/retry.cc', |
| 1231 | 'test/core/end2end/tests/retry_cancellation.cc', |
| 1232 | 'test/core/end2end/tests/retry_disabled.cc', |
| 1233 | 'test/core/end2end/tests/retry_exceeds_buffer_size_in_initial_batch.cc', |
| 1234 | 'test/core/end2end/tests/retry_exceeds_buffer_size_in_subsequent_batch.cc', |
| 1235 | 'test/core/end2end/tests/retry_non_retriable_status.cc', |
Mark D. Roth | de077ac | 2018-04-12 08:05:44 -0700 | [diff] [blame] | 1236 | 'test/core/end2end/tests/retry_non_retriable_status_before_recv_trailing_metadata_started.cc', |
Mark D. Roth | 718c834 | 2018-02-28 13:00:04 -0800 | [diff] [blame] | 1237 | 'test/core/end2end/tests/retry_recv_initial_metadata.cc', |
| 1238 | 'test/core/end2end/tests/retry_recv_message.cc', |
| 1239 | 'test/core/end2end/tests/retry_server_pushback_delay.cc', |
| 1240 | 'test/core/end2end/tests/retry_server_pushback_disabled.cc', |
| 1241 | 'test/core/end2end/tests/retry_streaming.cc', |
| 1242 | 'test/core/end2end/tests/retry_streaming_after_commit.cc', |
| 1243 | 'test/core/end2end/tests/retry_streaming_succeeds_before_replay_finished.cc', |
| 1244 | 'test/core/end2end/tests/retry_throttled.cc', |
| 1245 | 'test/core/end2end/tests/retry_too_many_attempts.cc', |
Muxi Yan | b0f821c | 2017-12-19 15:37:57 -0800 | [diff] [blame] | 1246 | 'test/core/end2end/tests/server_finishes_request.cc', |
| 1247 | 'test/core/end2end/tests/shutdown_finishes_calls.cc', |
| 1248 | 'test/core/end2end/tests/shutdown_finishes_tags.cc', |
| 1249 | 'test/core/end2end/tests/simple_cacheable_request.cc', |
| 1250 | 'test/core/end2end/tests/simple_delayed_request.cc', |
| 1251 | 'test/core/end2end/tests/simple_metadata.cc', |
| 1252 | 'test/core/end2end/tests/simple_request.cc', |
| 1253 | 'test/core/end2end/tests/stream_compression_compressed_payload.cc', |
| 1254 | 'test/core/end2end/tests/stream_compression_payload.cc', |
| 1255 | 'test/core/end2end/tests/stream_compression_ping_pong_streaming.cc', |
| 1256 | 'test/core/end2end/tests/streaming_error_response.cc', |
| 1257 | 'test/core/end2end/tests/trailing_metadata.cc', |
| 1258 | 'test/core/end2end/tests/workaround_cronet_compression.cc', |
| 1259 | 'test/core/end2end/tests/write_buffering.cc', |
| 1260 | 'test/core/end2end/tests/write_buffering_at_end.cc', |
| 1261 | 'test/core/end2end/tests/cancel_test_helpers.h', |
| 1262 | 'test/core/end2end/end2end_tests.h' |
Muxi Yan | 37480eb | 2016-07-14 16:22:03 -0700 | [diff] [blame] | 1263 | end |
Muxi Yan | 43c4710 | 2017-07-06 20:51:49 -0700 | [diff] [blame] | 1264 | |
| 1265 | # TODO (mxyan): Instead of this hack, add include path "third_party" to C core's include path? |
| 1266 | s.prepare_command = <<-END_OF_COMMAND |
Muxi Yan | 1f15b79 | 2018-06-12 18:03:44 -0700 | [diff] [blame] | 1267 | find src/core/ -type f ! -path '*.grpc_back' -print0 | xargs -0 -L1 sed -E -i'.grpc_back' 's;#include "(pb(_.*)?\\.h)";#include <nanopb/\\1>;g' |
| 1268 | find src/core/ -type f -path '*.grpc_back' -print0 | xargs -0 rm |
Muxi Yan | 43c4710 | 2017-07-06 20:51:49 -0700 | [diff] [blame] | 1269 | END_OF_COMMAND |
Jorge Canizales | e487a72 | 2016-04-30 12:05:26 -0700 | [diff] [blame] | 1270 | end |