blob: f5cbf796240c68ca5a477a772a97a282cd5178af [file] [log] [blame]
Tim Emiola33061392015-01-29 16:19:25 -08001# -*- ruby -*-
nnoble097ef9b2014-12-01 17:06:10 -08002# encoding: utf-8
murgatroid99d7e1a102015-12-18 11:16:16 -08003$LOAD_PATH.push File.expand_path('../src/ruby/lib', __FILE__)
nnoble097ef9b2014-12-01 17:06:10 -08004require 'grpc/version'
5
6Gem::Specification.new do |s|
Tim Emiolae2860c52015-01-16 02:58:41 -08007 s.name = 'grpc'
Tim Emiolac33efe42015-02-19 09:39:49 -08008 s.version = GRPC::VERSION
Tim Emiola5d11c1a2015-01-22 18:39:34 -08009 s.authors = ['gRPC Authors']
Tim Emiolac33efe42015-02-19 09:39:49 -080010 s.email = 'temiola@google.com'
Tim Emiola5d11c1a2015-01-22 18:39:34 -080011 s.homepage = 'https://github.com/google/grpc/tree/master/src/ruby'
Tim Emiolac33efe42015-02-19 09:39:49 -080012 s.summary = 'GRPC system in Ruby'
13 s.description = 'Send RPCs from Ruby using GRPC'
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020014 s.license = 'Apache-2.0'
nnoble097ef9b2014-12-01 17:06:10 -080015
Tim Emiola154db732015-04-17 19:40:01 -070016 s.required_ruby_version = '>= 2.0.0'
Tim Emiola154db732015-04-17 19:40:01 -070017
Nicolas "Pixel" Nobleed59c7d2016-02-14 07:52:14 +010018 s.files = %w( Makefile .yardopts )
murgatroid99b5703222015-12-18 13:05:34 -080019 s.files += %w( etc/roots.pem )
murgatroid99d7e1a102015-12-18 11:16:16 -080020 s.files += Dir.glob('src/ruby/bin/**/*')
21 s.files += Dir.glob('src/ruby/ext/**/*')
22 s.files += Dir.glob('src/ruby/lib/**/*')
ganmacsff456e12018-05-14 18:19:04 +090023 s.files += Dir.glob('src/ruby/pb/**/*').reject do |f|
24 f.match(%r{^src/ruby/pb/test})
25 end
murgatroid99d7e1a102015-12-18 11:16:16 -080026 s.files += Dir.glob('include/grpc/**/*')
murgatroid99d7e1a102015-12-18 11:16:16 -080027 s.test_files = Dir.glob('src/ruby/spec/**/*')
28 s.bindir = 'src/ruby/bin'
DJ Mountney37268d02017-03-07 09:22:04 -080029 s.require_paths = %w( src/ruby/lib src/ruby/bin src/ruby/pb )
nnoble097ef9b2014-12-01 17:06:10 -080030 s.platform = Gem::Platform::RUBY
31
Alexander Polcynb39eb532017-02-02 09:45:58 -080032 s.add_dependency 'google-protobuf', '~> 3.1'
Alexander Polcyna594ba02017-09-07 19:04:59 -070033 s.add_dependency 'googleapis-common-protos-types', '~> 1.0.0'
nnoble097ef9b2014-12-01 17:06:10 -080034
Nicolas "Pixel" Noblecb287a12016-01-28 05:01:01 +010035 s.add_development_dependency 'bundler', '~> 1.9'
Vijay Pai546c2762016-04-12 14:38:51 -070036 s.add_development_dependency 'facter', '~> 2.4'
Nicolas "Pixel" Noblecb287a12016-01-28 05:01:01 +010037 s.add_development_dependency 'logging', '~> 2.0'
Jan Tattermusche2f845c2017-09-01 11:13:42 +020038 s.add_development_dependency 'simplecov', '~> 0.14.1'
39 s.add_development_dependency 'rake', '~> 12.0'
Alexander Polcynd490a9e2017-02-08 19:31:45 -080040 s.add_development_dependency 'rake-compiler', '~> 1.0'
Nicolas "Pixel" Nobleca144fd2016-02-09 03:33:40 +010041 s.add_development_dependency 'rake-compiler-dock', '~> 0.5.1'
Jan Tattermusche2f845c2017-09-01 11:13:42 +020042 s.add_development_dependency 'rspec', '~> 3.6'
43 s.add_development_dependency 'rubocop', '~> 0.49.1'
Nicolas "Pixel" Noblecb287a12016-01-28 05:01:01 +010044 s.add_development_dependency 'signet', '~> 0.7.0'
ganmacsd1811682018-05-14 18:06:28 +090045 s.add_development_dependency 'googleauth', '>= 0.5.1', '< 0.7'
nnoble097ef9b2014-12-01 17:06:10 -080046
murgatroid99d7e1a102015-12-18 11:16:16 -080047 s.extensions = %w(src/ruby/ext/grpc/extconf.rb)
murgatroid9928013eb2015-12-18 13:23:40 -080048
Alexander Polcyn690dde62017-10-18 00:20:33 -070049 s.files += %w( third_party/address_sorting/address_sorting_internal.h )
Alex Polcyn77f64f72018-03-01 19:22:53 +000050 s.files += %w( third_party/address_sorting/include/address_sorting/address_sorting.h )
Alexander Polcyn690dde62017-10-18 00:20:33 -070051 s.files += %w( third_party/address_sorting/address_sorting.c )
52 s.files += %w( third_party/address_sorting/address_sorting_posix.c )
53 s.files += %w( third_party/address_sorting/address_sorting_windows.c )
murgatroid9928013eb2015-12-18 13:23:40 -080054 s.files += %w( include/grpc/support/alloc.h )
55 s.files += %w( include/grpc/support/atm.h )
56 s.files += %w( include/grpc/support/atm_gcc_atomic.h )
57 s.files += %w( include/grpc/support/atm_gcc_sync.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070058 s.files += %w( include/grpc/support/atm_windows.h )
murgatroid9928013eb2015-12-18 13:23:40 -080059 s.files += %w( include/grpc/support/cpu.h )
murgatroid9928013eb2015-12-18 13:23:40 -080060 s.files += %w( include/grpc/support/log.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070061 s.files += %w( include/grpc/support/log_windows.h )
murgatroid9928013eb2015-12-18 13:23:40 -080062 s.files += %w( include/grpc/support/port_platform.h )
murgatroid9928013eb2015-12-18 13:23:40 -080063 s.files += %w( include/grpc/support/string_util.h )
murgatroid9928013eb2015-12-18 13:23:40 -080064 s.files += %w( include/grpc/support/sync.h )
yang-g9ff60312017-08-24 09:08:21 -070065 s.files += %w( include/grpc/support/sync_custom.h )
murgatroid9928013eb2015-12-18 13:23:40 -080066 s.files += %w( include/grpc/support/sync_generic.h )
67 s.files += %w( include/grpc/support/sync_posix.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070068 s.files += %w( include/grpc/support/sync_windows.h )
Vijay Paic7456902018-02-12 10:28:24 -080069 s.files += %w( include/grpc/support/thd_id.h )
murgatroid9928013eb2015-12-18 13:23:40 -080070 s.files += %w( include/grpc/support/time.h )
Craig Tiller03915e52016-04-07 09:15:10 -070071 s.files += %w( include/grpc/impl/codegen/atm.h )
72 s.files += %w( include/grpc/impl/codegen/atm_gcc_atomic.h )
73 s.files += %w( include/grpc/impl/codegen/atm_gcc_sync.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070074 s.files += %w( include/grpc/impl/codegen/atm_windows.h )
Ken Payson9714e032017-10-10 11:18:49 -070075 s.files += %w( include/grpc/impl/codegen/fork.h )
Mark D. Roth4d2ea022016-12-12 07:12:27 -080076 s.files += %w( include/grpc/impl/codegen/gpr_slice.h )
David Garcia Quintas8c5424f2016-08-01 22:49:00 -070077 s.files += %w( include/grpc/impl/codegen/gpr_types.h )
ncteisen93a90e62018-06-18 18:39:56 -070078 s.files += %w( include/grpc/impl/codegen/log.h )
Craig Tiller03915e52016-04-07 09:15:10 -070079 s.files += %w( include/grpc/impl/codegen/port_platform.h )
Craig Tiller03915e52016-04-07 09:15:10 -070080 s.files += %w( include/grpc/impl/codegen/sync.h )
yang-g9ff60312017-08-24 09:08:21 -070081 s.files += %w( include/grpc/impl/codegen/sync_custom.h )
Craig Tiller03915e52016-04-07 09:15:10 -070082 s.files += %w( include/grpc/impl/codegen/sync_generic.h )
83 s.files += %w( include/grpc/impl/codegen/sync_posix.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070084 s.files += %w( include/grpc/impl/codegen/sync_windows.h )
Mark D. Roth2223e602018-06-27 07:23:33 -070085 s.files += %w( src/core/lib/gpr/alloc.h )
Mark D. Rothdbdf4952018-01-18 11:21:12 -080086 s.files += %w( src/core/lib/gpr/arena.h )
87 s.files += %w( src/core/lib/gpr/env.h )
Vijay Paiae376bf2018-01-25 22:54:02 -080088 s.files += %w( src/core/lib/gpr/host_port.h )
Mark D. Rothdbdf4952018-01-18 11:21:12 -080089 s.files += %w( src/core/lib/gpr/mpscq.h )
90 s.files += %w( src/core/lib/gpr/murmur_hash.h )
91 s.files += %w( src/core/lib/gpr/spinlock.h )
92 s.files += %w( src/core/lib/gpr/string.h )
93 s.files += %w( src/core/lib/gpr/string_windows.h )
Mark D. Rothdbdf4952018-01-18 11:21:12 -080094 s.files += %w( src/core/lib/gpr/time_precise.h )
Vijay Paib6cf1232018-01-25 21:02:26 -080095 s.files += %w( src/core/lib/gpr/tls.h )
96 s.files += %w( src/core/lib/gpr/tls_gcc.h )
97 s.files += %w( src/core/lib/gpr/tls_msvc.h )
98 s.files += %w( src/core/lib/gpr/tls_pthread.h )
Mark D. Rothdbdf4952018-01-18 11:21:12 -080099 s.files += %w( src/core/lib/gpr/tmpfile.h )
Vijay Paid4d0a302018-01-25 13:24:03 -0800100 s.files += %w( src/core/lib/gpr/useful.h )
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800101 s.files += %w( src/core/lib/gprpp/abstract.h )
102 s.files += %w( src/core/lib/gprpp/atomic.h )
103 s.files += %w( src/core/lib/gprpp/atomic_with_atm.h )
104 s.files += %w( src/core/lib/gprpp/atomic_with_std.h )
kpayson64701e70d2018-04-30 17:40:00 -0700105 s.files += %w( src/core/lib/gprpp/fork.h )
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800106 s.files += %w( src/core/lib/gprpp/manual_constructor.h )
107 s.files += %w( src/core/lib/gprpp/memory.h )
Mark D. Roth7a7e4f52018-08-16 12:04:24 -0700108 s.files += %w( src/core/lib/gprpp/mutex_lock.h )
Vijay Paida693552018-02-16 22:59:03 -0800109 s.files += %w( src/core/lib/gprpp/thd.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700110 s.files += %w( src/core/lib/profiling/timers.h )
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800111 s.files += %w( src/core/lib/gpr/alloc.cc )
112 s.files += %w( src/core/lib/gpr/arena.cc )
113 s.files += %w( src/core/lib/gpr/atm.cc )
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800114 s.files += %w( src/core/lib/gpr/cpu_iphone.cc )
115 s.files += %w( src/core/lib/gpr/cpu_linux.cc )
116 s.files += %w( src/core/lib/gpr/cpu_posix.cc )
117 s.files += %w( src/core/lib/gpr/cpu_windows.cc )
118 s.files += %w( src/core/lib/gpr/env_linux.cc )
119 s.files += %w( src/core/lib/gpr/env_posix.cc )
120 s.files += %w( src/core/lib/gpr/env_windows.cc )
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800121 s.files += %w( src/core/lib/gpr/host_port.cc )
122 s.files += %w( src/core/lib/gpr/log.cc )
123 s.files += %w( src/core/lib/gpr/log_android.cc )
124 s.files += %w( src/core/lib/gpr/log_linux.cc )
125 s.files += %w( src/core/lib/gpr/log_posix.cc )
126 s.files += %w( src/core/lib/gpr/log_windows.cc )
127 s.files += %w( src/core/lib/gpr/mpscq.cc )
128 s.files += %w( src/core/lib/gpr/murmur_hash.cc )
129 s.files += %w( src/core/lib/gpr/string.cc )
130 s.files += %w( src/core/lib/gpr/string_posix.cc )
131 s.files += %w( src/core/lib/gpr/string_util_windows.cc )
132 s.files += %w( src/core/lib/gpr/string_windows.cc )
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800133 s.files += %w( src/core/lib/gpr/sync.cc )
134 s.files += %w( src/core/lib/gpr/sync_posix.cc )
135 s.files += %w( src/core/lib/gpr/sync_windows.cc )
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800136 s.files += %w( src/core/lib/gpr/time.cc )
137 s.files += %w( src/core/lib/gpr/time_posix.cc )
138 s.files += %w( src/core/lib/gpr/time_precise.cc )
139 s.files += %w( src/core/lib/gpr/time_windows.cc )
140 s.files += %w( src/core/lib/gpr/tls_pthread.cc )
141 s.files += %w( src/core/lib/gpr/tmpfile_msys.cc )
142 s.files += %w( src/core/lib/gpr/tmpfile_posix.cc )
143 s.files += %w( src/core/lib/gpr/tmpfile_windows.cc )
144 s.files += %w( src/core/lib/gpr/wrap_memcpy.cc )
kpayson64701e70d2018-04-30 17:40:00 -0700145 s.files += %w( src/core/lib/gprpp/fork.cc )
Vijay Paida693552018-02-16 22:59:03 -0800146 s.files += %w( src/core/lib/gprpp/thd_posix.cc )
147 s.files += %w( src/core/lib/gprpp/thd_windows.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700148 s.files += %w( src/core/lib/profiling/basic_timers.cc )
149 s.files += %w( src/core/lib/profiling/stap_timers.cc )
Vijay Paiefce6e12017-09-14 09:07:50 -0700150 s.files += %w( include/grpc/impl/codegen/byte_buffer.h )
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700151 s.files += %w( include/grpc/impl/codegen/byte_buffer_reader.h )
Craig Tiller1298afd2016-02-09 12:29:17 -0800152 s.files += %w( include/grpc/impl/codegen/compression_types.h )
153 s.files += %w( include/grpc/impl/codegen/connectivity_state.h )
154 s.files += %w( include/grpc/impl/codegen/grpc_types.h )
155 s.files += %w( include/grpc/impl/codegen/propagation_bits.h )
Craig Tiller790f6af2017-03-30 12:39:24 -0700156 s.files += %w( include/grpc/impl/codegen/slice.h )
Craig Tiller1298afd2016-02-09 12:29:17 -0800157 s.files += %w( include/grpc/impl/codegen/status.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700158 s.files += %w( include/grpc/impl/codegen/atm.h )
159 s.files += %w( include/grpc/impl/codegen/atm_gcc_atomic.h )
160 s.files += %w( include/grpc/impl/codegen/atm_gcc_sync.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700161 s.files += %w( include/grpc/impl/codegen/atm_windows.h )
Ken Payson9714e032017-10-10 11:18:49 -0700162 s.files += %w( include/grpc/impl/codegen/fork.h )
Mark D. Roth4d2ea022016-12-12 07:12:27 -0800163 s.files += %w( include/grpc/impl/codegen/gpr_slice.h )
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700164 s.files += %w( include/grpc/impl/codegen/gpr_types.h )
ncteisen93a90e62018-06-18 18:39:56 -0700165 s.files += %w( include/grpc/impl/codegen/log.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700166 s.files += %w( include/grpc/impl/codegen/port_platform.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700167 s.files += %w( include/grpc/impl/codegen/sync.h )
yang-g9ff60312017-08-24 09:08:21 -0700168 s.files += %w( include/grpc/impl/codegen/sync_custom.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700169 s.files += %w( include/grpc/impl/codegen/sync_generic.h )
170 s.files += %w( include/grpc/impl/codegen/sync_posix.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700171 s.files += %w( include/grpc/impl/codegen/sync_windows.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700172 s.files += %w( include/grpc/grpc_security.h )
Vijay Pai42807252017-07-28 15:08:24 -0700173 s.files += %w( include/grpc/byte_buffer.h )
174 s.files += %w( include/grpc/byte_buffer_reader.h )
175 s.files += %w( include/grpc/compression.h )
Ken Payson9714e032017-10-10 11:18:49 -0700176 s.files += %w( include/grpc/fork.h )
Vijay Pai42807252017-07-28 15:08:24 -0700177 s.files += %w( include/grpc/grpc.h )
178 s.files += %w( include/grpc/grpc_posix.h )
179 s.files += %w( include/grpc/grpc_security_constants.h )
Juanli Shen174166d2018-06-25 16:12:07 -0700180 s.files += %w( include/grpc/load_reporting.h )
Vijay Pai42807252017-07-28 15:08:24 -0700181 s.files += %w( include/grpc/slice.h )
182 s.files += %w( include/grpc/slice_buffer.h )
183 s.files += %w( include/grpc/status.h )
184 s.files += %w( include/grpc/support/workaround_list.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700185 s.files += %w( include/grpc/census.h )
Vijay Pai42807252017-07-28 15:08:24 -0700186 s.files += %w( src/core/ext/transport/chttp2/transport/bin_decoder.h )
187 s.files += %w( src/core/ext/transport/chttp2/transport/bin_encoder.h )
188 s.files += %w( src/core/ext/transport/chttp2/transport/chttp2_transport.h )
Craig Tiller32736482017-10-12 22:02:28 -0700189 s.files += %w( src/core/ext/transport/chttp2/transport/flow_control.h )
Vijay Pai42807252017-07-28 15:08:24 -0700190 s.files += %w( src/core/ext/transport/chttp2/transport/frame.h )
191 s.files += %w( src/core/ext/transport/chttp2/transport/frame_data.h )
192 s.files += %w( src/core/ext/transport/chttp2/transport/frame_goaway.h )
193 s.files += %w( src/core/ext/transport/chttp2/transport/frame_ping.h )
194 s.files += %w( src/core/ext/transport/chttp2/transport/frame_rst_stream.h )
195 s.files += %w( src/core/ext/transport/chttp2/transport/frame_settings.h )
196 s.files += %w( src/core/ext/transport/chttp2/transport/frame_window_update.h )
197 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_encoder.h )
Hope Casey-Allen327c5142018-09-19 13:47:29 -0700198 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_mapping.h )
Vijay Pai42807252017-07-28 15:08:24 -0700199 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_parser.h )
200 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_table.h )
201 s.files += %w( src/core/ext/transport/chttp2/transport/http2_settings.h )
202 s.files += %w( src/core/ext/transport/chttp2/transport/huffsyms.h )
203 s.files += %w( src/core/ext/transport/chttp2/transport/incoming_metadata.h )
204 s.files += %w( src/core/ext/transport/chttp2/transport/internal.h )
205 s.files += %w( src/core/ext/transport/chttp2/transport/stream_map.h )
206 s.files += %w( src/core/ext/transport/chttp2/transport/varint.h )
207 s.files += %w( src/core/ext/transport/chttp2/alpn/alpn.h )
208 s.files += %w( src/core/ext/filters/http/client/http_client_filter.h )
209 s.files += %w( src/core/ext/filters/http/message_compress/message_compress_filter.h )
210 s.files += %w( src/core/ext/filters/http/server/http_server_filter.h )
Yihua Zhang392dad72018-05-03 20:12:20 -0700211 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h )
Vijay Pai42807252017-07-28 15:08:24 -0700212 s.files += %w( src/core/lib/security/context/security_context.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800213 s.files += %w( src/core/lib/security/credentials/alts/alts_credentials.h )
Vijay Pai42807252017-07-28 15:08:24 -0700214 s.files += %w( src/core/lib/security/credentials/composite/composite_credentials.h )
215 s.files += %w( src/core/lib/security/credentials/credentials.h )
216 s.files += %w( src/core/lib/security/credentials/fake/fake_credentials.h )
217 s.files += %w( src/core/lib/security/credentials/google_default/google_default_credentials.h )
218 s.files += %w( src/core/lib/security/credentials/iam/iam_credentials.h )
219 s.files += %w( src/core/lib/security/credentials/jwt/json_token.h )
220 s.files += %w( src/core/lib/security/credentials/jwt/jwt_credentials.h )
221 s.files += %w( src/core/lib/security/credentials/jwt/jwt_verifier.h )
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700222 s.files += %w( src/core/lib/security/credentials/local/local_credentials.h )
Vijay Pai42807252017-07-28 15:08:24 -0700223 s.files += %w( src/core/lib/security/credentials/oauth2/oauth2_credentials.h )
224 s.files += %w( src/core/lib/security/credentials/plugin/plugin_credentials.h )
225 s.files += %w( src/core/lib/security/credentials/ssl/ssl_credentials.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800226 s.files += %w( src/core/lib/security/security_connector/alts_security_connector.h )
tdbhacksbcd747d2018-07-20 16:41:44 -0700227 s.files += %w( src/core/lib/security/security_connector/load_system_roots.h )
228 s.files += %w( src/core/lib/security/security_connector/load_system_roots_linux.h )
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700229 s.files += %w( src/core/lib/security/security_connector/local_security_connector.h )
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800230 s.files += %w( src/core/lib/security/security_connector/security_connector.h )
Vijay Pai42807252017-07-28 15:08:24 -0700231 s.files += %w( src/core/lib/security/transport/auth_filters.h )
Vijay Pai42807252017-07-28 15:08:24 -0700232 s.files += %w( src/core/lib/security/transport/secure_endpoint.h )
Vijay Pai42807252017-07-28 15:08:24 -0700233 s.files += %w( src/core/lib/security/transport/security_handshaker.h )
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800234 s.files += %w( src/core/lib/security/transport/target_authority_table.h )
Vijay Pai42807252017-07-28 15:08:24 -0700235 s.files += %w( src/core/lib/security/transport/tsi_error.h )
236 s.files += %w( src/core/lib/security/util/json_util.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800237 s.files += %w( src/core/tsi/alts/crypt/gsec.h )
238 s.files += %w( src/core/tsi/alts/frame_protector/alts_counter.h )
239 s.files += %w( src/core/tsi/alts/frame_protector/alts_crypter.h )
240 s.files += %w( src/core/tsi/alts/frame_protector/alts_frame_protector.h )
241 s.files += %w( src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h )
242 s.files += %w( src/core/tsi/alts/frame_protector/frame_handler.h )
243 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_client.h )
244 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_event.h )
245 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_handshaker.h )
246 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h )
247 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h )
248 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h )
249 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h )
250 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h )
251 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h )
252 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h )
253 s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment.h )
254 s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h )
255 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_service_api.h )
256 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h )
257 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_utils.h )
258 s.files += %w( src/core/tsi/alts/handshaker/transport_security_common_api.h )
259 s.files += %w( src/core/tsi/alts/handshaker/altscontext.pb.h )
260 s.files += %w( src/core/tsi/alts/handshaker/handshaker.pb.h )
261 s.files += %w( src/core/tsi/alts/handshaker/transport_security_common.pb.h )
262 s.files += %w( third_party/nanopb/pb.h )
263 s.files += %w( third_party/nanopb/pb_common.h )
264 s.files += %w( third_party/nanopb/pb_decode.h )
265 s.files += %w( third_party/nanopb/pb_encode.h )
Vijay Pai42807252017-07-28 15:08:24 -0700266 s.files += %w( src/core/tsi/transport_security.h )
Vijay Pai42807252017-07-28 15:08:24 -0700267 s.files += %w( src/core/tsi/transport_security_interface.h )
David Garcia Quintas49f625f2018-03-27 11:23:49 -0700268 s.files += %w( src/core/ext/transport/chttp2/client/authority.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800269 s.files += %w( src/core/ext/transport/chttp2/client/chttp2_connector.h )
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700270 s.files += %w( src/core/ext/filters/client_channel/backup_poller.h )
Vijay Pai42807252017-07-28 15:08:24 -0700271 s.files += %w( src/core/ext/filters/client_channel/client_channel.h )
ncteisenafb98292018-06-28 18:04:24 -0700272 s.files += %w( src/core/ext/filters/client_channel/client_channel_channelz.h )
Vijay Pai42807252017-07-28 15:08:24 -0700273 s.files += %w( src/core/ext/filters/client_channel/client_channel_factory.h )
274 s.files += %w( src/core/ext/filters/client_channel/connector.h )
275 s.files += %w( src/core/ext/filters/client_channel/http_connect_handshaker.h )
276 s.files += %w( src/core/ext/filters/client_channel/http_proxy.h )
277 s.files += %w( src/core/ext/filters/client_channel/lb_policy.h )
278 s.files += %w( src/core/ext/filters/client_channel/lb_policy_factory.h )
279 s.files += %w( src/core/ext/filters/client_channel/lb_policy_registry.h )
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800280 s.files += %w( src/core/ext/filters/client_channel/method_params.h )
Vijay Pai42807252017-07-28 15:08:24 -0700281 s.files += %w( src/core/ext/filters/client_channel/parse_address.h )
282 s.files += %w( src/core/ext/filters/client_channel/proxy_mapper.h )
283 s.files += %w( src/core/ext/filters/client_channel/proxy_mapper_registry.h )
284 s.files += %w( src/core/ext/filters/client_channel/resolver.h )
285 s.files += %w( src/core/ext/filters/client_channel/resolver_factory.h )
286 s.files += %w( src/core/ext/filters/client_channel/resolver_registry.h )
287 s.files += %w( src/core/ext/filters/client_channel/retry_throttle.h )
288 s.files += %w( src/core/ext/filters/client_channel/subchannel.h )
289 s.files += %w( src/core/ext/filters/client_channel/subchannel_index.h )
290 s.files += %w( src/core/ext/filters/client_channel/uri_parser.h )
291 s.files += %w( src/core/ext/filters/deadline/deadline_filter.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800292 s.files += %w( src/core/tsi/alts_transport_security.h )
293 s.files += %w( src/core/tsi/fake_transport_security.h )
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700294 s.files += %w( src/core/tsi/local_transport_security.h )
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700295 s.files += %w( src/core/tsi/ssl/session_cache/ssl_session.h )
296 s.files += %w( src/core/tsi/ssl/session_cache/ssl_session_cache.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800297 s.files += %w( src/core/tsi/ssl_transport_security.h )
298 s.files += %w( src/core/tsi/ssl_types.h )
299 s.files += %w( src/core/tsi/transport_security_grpc.h )
Muxi Yanb24b2122018-08-14 10:21:27 -0700300 s.files += %w( src/core/tsi/grpc_shadow_boringssl.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800301 s.files += %w( src/core/ext/transport/chttp2/server/chttp2_server.h )
Vijay Pai42807252017-07-28 15:08:24 -0700302 s.files += %w( src/core/ext/transport/inproc/inproc_transport.h )
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800303 s.files += %w( src/core/lib/avl/avl.h )
Craig Tiller2014a372017-07-21 15:36:11 -0700304 s.files += %w( src/core/lib/backoff/backoff.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700305 s.files += %w( src/core/lib/channel/channel_args.h )
306 s.files += %w( src/core/lib/channel/channel_stack.h )
307 s.files += %w( src/core/lib/channel/channel_stack_builder.h )
ncteisen3b42f832018-03-19 13:22:35 -0700308 s.files += %w( src/core/lib/channel/channel_trace.h )
ncteisenc3c6e062018-05-09 11:10:21 -0700309 s.files += %w( src/core/lib/channel/channelz.h )
ncteisenbba88402018-05-11 11:54:41 -0400310 s.files += %w( src/core/lib/channel/channelz_registry.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700311 s.files += %w( src/core/lib/channel/connected_channel.h )
312 s.files += %w( src/core/lib/channel/context.h )
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700313 s.files += %w( src/core/lib/channel/handshaker.h )
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800314 s.files += %w( src/core/lib/channel/handshaker_factory.h )
315 s.files += %w( src/core/lib/channel/handshaker_registry.h )
ncteisen3b42f832018-03-19 13:22:35 -0700316 s.files += %w( src/core/lib/channel/status_util.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700317 s.files += %w( src/core/lib/compression/algorithm_metadata.h )
Muxi Yan92d1bc12017-09-16 10:09:58 -0700318 s.files += %w( src/core/lib/compression/compression_internal.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700319 s.files += %w( src/core/lib/compression/message_compress.h )
Muxi Yane87a7e12017-06-29 16:53:24 -0700320 s.files += %w( src/core/lib/compression/stream_compression.h )
Muxi Yanbf5484e2017-09-01 18:03:03 -0700321 s.files += %w( src/core/lib/compression/stream_compression_gzip.h )
322 s.files += %w( src/core/lib/compression/stream_compression_identity.h )
Craig Tiller6e739742017-08-31 11:22:52 -0700323 s.files += %w( src/core/lib/debug/stats.h )
324 s.files += %w( src/core/lib/debug/stats_data.h )
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800325 s.files += %w( src/core/lib/gprpp/debug_location.h )
326 s.files += %w( src/core/lib/gprpp/inlined_vector.h )
327 s.files += %w( src/core/lib/gprpp/orphanable.h )
328 s.files += %w( src/core/lib/gprpp/ref_counted.h )
329 s.files += %w( src/core/lib/gprpp/ref_counted_ptr.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700330 s.files += %w( src/core/lib/http/format_request.h )
331 s.files += %w( src/core/lib/http/httpcli.h )
332 s.files += %w( src/core/lib/http/parser.h )
Craig Tiller43c1b5f2017-10-02 14:42:49 -0700333 s.files += %w( src/core/lib/iomgr/block_annotate.h )
Yash Tibrewal8d47cd42018-08-27 14:56:01 -0700334 s.files += %w( src/core/lib/iomgr/buffer_list.h )
Mark D. Roth764cf042017-09-01 09:00:06 -0700335 s.files += %w( src/core/lib/iomgr/call_combiner.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700336 s.files += %w( src/core/lib/iomgr/closure.h )
Craig Tiller57726ca2016-09-12 11:59:45 -0700337 s.files += %w( src/core/lib/iomgr/combiner.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700338 s.files += %w( src/core/lib/iomgr/endpoint.h )
339 s.files += %w( src/core/lib/iomgr/endpoint_pair.h )
Craig Tiller27f59af2016-04-28 14:19:48 -0700340 s.files += %w( src/core/lib/iomgr/error.h )
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800341 s.files += %w( src/core/lib/iomgr/error_internal.h )
Craig Tillerc67cc992017-04-27 10:15:51 -0700342 s.files += %w( src/core/lib/iomgr/ev_epoll1_linux.h )
Craig Tillerf4360d72017-04-07 08:51:00 -0700343 s.files += %w( src/core/lib/iomgr/ev_epollex_linux.h )
Craig Tillerc67cc992017-04-27 10:15:51 -0700344 s.files += %w( src/core/lib/iomgr/ev_epollsig_linux.h )
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700345 s.files += %w( src/core/lib/iomgr/ev_poll_posix.h )
Craig Tiller8a034482016-03-28 16:09:04 -0700346 s.files += %w( src/core/lib/iomgr/ev_posix.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700347 s.files += %w( src/core/lib/iomgr/exec_ctx.h )
348 s.files += %w( src/core/lib/iomgr/executor.h )
Mark D. Rothf9bf4282017-08-03 14:47:23 -0700349 s.files += %w( src/core/lib/iomgr/gethostname.h )
Yash Tibrewal8d47cd42018-08-27 14:56:01 -0700350 s.files += %w( src/core/lib/iomgr/internal_errqueue.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700351 s.files += %w( src/core/lib/iomgr/iocp_windows.h )
352 s.files += %w( src/core/lib/iomgr/iomgr.h )
kpayson64539f5062018-03-12 19:16:30 -0700353 s.files += %w( src/core/lib/iomgr/iomgr_custom.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700354 s.files += %w( src/core/lib/iomgr/iomgr_internal.h )
355 s.files += %w( src/core/lib/iomgr/iomgr_posix.h )
Craig Tiller819cd882017-04-25 13:18:22 -0700356 s.files += %w( src/core/lib/iomgr/is_epollexclusive_available.h )
Craig Tiller85178862016-05-18 16:09:16 -0700357 s.files += %w( src/core/lib/iomgr/load_file.h )
Craig Tiller376887d2017-04-06 08:27:03 -0700358 s.files += %w( src/core/lib/iomgr/lockfree_event.h )
Yuchen Zengf630ff22017-07-25 13:28:45 -0700359 s.files += %w( src/core/lib/iomgr/nameser.h )
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700360 s.files += %w( src/core/lib/iomgr/network_status_tracker.h )
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700361 s.files += %w( src/core/lib/iomgr/polling_entity.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700362 s.files += %w( src/core/lib/iomgr/pollset.h )
kpayson64539f5062018-03-12 19:16:30 -0700363 s.files += %w( src/core/lib/iomgr/pollset_custom.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700364 s.files += %w( src/core/lib/iomgr/pollset_set.h )
kpayson64539f5062018-03-12 19:16:30 -0700365 s.files += %w( src/core/lib/iomgr/pollset_set_custom.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700366 s.files += %w( src/core/lib/iomgr/pollset_set_windows.h )
367 s.files += %w( src/core/lib/iomgr/pollset_windows.h )
murgatroid9954070892016-08-08 17:01:18 -0700368 s.files += %w( src/core/lib/iomgr/port.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700369 s.files += %w( src/core/lib/iomgr/resolve_address.h )
kpayson64539f5062018-03-12 19:16:30 -0700370 s.files += %w( src/core/lib/iomgr/resolve_address_custom.h )
Craig Tiller20afa3d2016-10-17 14:52:14 -0700371 s.files += %w( src/core/lib/iomgr/resource_quota.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700372 s.files += %w( src/core/lib/iomgr/sockaddr.h )
kpayson64539f5062018-03-12 19:16:30 -0700373 s.files += %w( src/core/lib/iomgr/sockaddr_custom.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700374 s.files += %w( src/core/lib/iomgr/sockaddr_posix.h )
375 s.files += %w( src/core/lib/iomgr/sockaddr_utils.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700376 s.files += %w( src/core/lib/iomgr/sockaddr_windows.h )
Michael Warresc46b3eb2017-02-22 22:57:04 -0500377 s.files += %w( src/core/lib/iomgr/socket_factory_posix.h )
Yuchen Zengde3daf52016-10-13 17:26:26 -0700378 s.files += %w( src/core/lib/iomgr/socket_mutator.h )
murgatroid9979b32272016-08-08 13:38:30 -0700379 s.files += %w( src/core/lib/iomgr/socket_utils.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700380 s.files += %w( src/core/lib/iomgr/socket_utils_posix.h )
381 s.files += %w( src/core/lib/iomgr/socket_windows.h )
Craig Tiller819cd882017-04-25 13:18:22 -0700382 s.files += %w( src/core/lib/iomgr/sys_epoll_wrapper.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700383 s.files += %w( src/core/lib/iomgr/tcp_client.h )
Craig Tiller86958762016-09-23 12:05:34 -0700384 s.files += %w( src/core/lib/iomgr/tcp_client_posix.h )
kpayson64539f5062018-03-12 19:16:30 -0700385 s.files += %w( src/core/lib/iomgr/tcp_custom.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700386 s.files += %w( src/core/lib/iomgr/tcp_posix.h )
387 s.files += %w( src/core/lib/iomgr/tcp_server.h )
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700388 s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700389 s.files += %w( src/core/lib/iomgr/tcp_windows.h )
390 s.files += %w( src/core/lib/iomgr/time_averaged_stats.h )
391 s.files += %w( src/core/lib/iomgr/timer.h )
kpayson64539f5062018-03-12 19:16:30 -0700392 s.files += %w( src/core/lib/iomgr/timer_custom.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700393 s.files += %w( src/core/lib/iomgr/timer_heap.h )
Craig Tillerc3571792017-05-02 12:33:38 -0700394 s.files += %w( src/core/lib/iomgr/timer_manager.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700395 s.files += %w( src/core/lib/iomgr/udp_server.h )
396 s.files += %w( src/core/lib/iomgr/unix_sockets_posix.h )
Ken Payson31caabd2016-08-06 21:27:29 -0700397 s.files += %w( src/core/lib/iomgr/wakeup_fd_cv.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700398 s.files += %w( src/core/lib/iomgr/wakeup_fd_pipe.h )
399 s.files += %w( src/core/lib/iomgr/wakeup_fd_posix.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700400 s.files += %w( src/core/lib/json/json.h )
401 s.files += %w( src/core/lib/json/json_common.h )
402 s.files += %w( src/core/lib/json/json_reader.h )
403 s.files += %w( src/core/lib/json/json_writer.h )
Craig Tiller790f6af2017-03-30 12:39:24 -0700404 s.files += %w( src/core/lib/slice/b64.h )
Craig Tillerc3350542016-10-26 16:19:01 -0700405 s.files += %w( src/core/lib/slice/percent_encoding.h )
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800406 s.files += %w( src/core/lib/slice/slice_hash_table.h )
Craig Tiller30d50fe2016-12-06 19:34:32 -0800407 s.files += %w( src/core/lib/slice/slice_internal.h )
Craig Tillerc3350542016-10-26 16:19:01 -0700408 s.files += %w( src/core/lib/slice/slice_string_helpers.h )
David Garcia Quintas396d49d2018-02-28 16:06:30 -0800409 s.files += %w( src/core/lib/slice/slice_weak_hash_table.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700410 s.files += %w( src/core/lib/surface/api_trace.h )
411 s.files += %w( src/core/lib/surface/call.h )
412 s.files += %w( src/core/lib/surface/call_test_only.h )
413 s.files += %w( src/core/lib/surface/channel.h )
414 s.files += %w( src/core/lib/surface/channel_init.h )
415 s.files += %w( src/core/lib/surface/channel_stack_type.h )
416 s.files += %w( src/core/lib/surface/completion_queue.h )
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700417 s.files += %w( src/core/lib/surface/completion_queue_factory.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700418 s.files += %w( src/core/lib/surface/event_string.h )
419 s.files += %w( src/core/lib/surface/init.h )
420 s.files += %w( src/core/lib/surface/lame_client.h )
421 s.files += %w( src/core/lib/surface/server.h )
Craig Tiller2d9f8e82017-01-10 08:48:48 -0800422 s.files += %w( src/core/lib/surface/validate_metadata.h )
Craig Tiller9e0066b2016-10-20 14:04:18 -0700423 s.files += %w( src/core/lib/transport/bdp_estimator.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700424 s.files += %w( src/core/lib/transport/byte_stream.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700425 s.files += %w( src/core/lib/transport/connectivity_state.h )
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800426 s.files += %w( src/core/lib/transport/error_utils.h )
427 s.files += %w( src/core/lib/transport/http2_errors.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700428 s.files += %w( src/core/lib/transport/metadata.h )
429 s.files += %w( src/core/lib/transport/metadata_batch.h )
Craig Tillerdd2fa642016-10-20 15:46:32 -0700430 s.files += %w( src/core/lib/transport/pid_controller.h )
Mark D. Rothea846a02016-11-03 11:32:54 -0700431 s.files += %w( src/core/lib/transport/service_config.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700432 s.files += %w( src/core/lib/transport/static_metadata.h )
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800433 s.files += %w( src/core/lib/transport/status_conversion.h )
Mark D. Roth718c8342018-02-28 13:00:04 -0800434 s.files += %w( src/core/lib/transport/status_metadata.h )
Robbie Shade710d2422016-07-13 15:15:38 -0400435 s.files += %w( src/core/lib/transport/timeout_encoding.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700436 s.files += %w( src/core/lib/transport/transport.h )
437 s.files += %w( src/core/lib/transport/transport_impl.h )
Craig Tiller1f477302017-05-05 11:01:25 -0700438 s.files += %w( src/core/lib/debug/trace.h )
Mark D. Roth09e458c2017-05-02 08:13:26 -0700439 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h )
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700440 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h )
Mark D. Roth09e458c2017-05-02 08:13:26 -0700441 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h )
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700442 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h )
ZhouyihaiDingf04fbd12018-06-25 17:30:58 -0700443 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h )
444 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h )
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700445 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h )
David Garcia Quintas87d5a312017-06-06 19:45:58 -0700446 s.files += %w( src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h )
Mark D. Roth5e9848e2017-10-06 13:59:32 -0700447 s.files += %w( src/core/ext/filters/client_channel/lb_policy/subchannel_list.h )
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700448 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h )
449 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h )
Craig Tiller6d4894e2017-03-31 17:22:06 -0700450 s.files += %w( src/core/ext/filters/max_age/max_age_filter.h )
Craig Tiller9b3648a2017-04-03 12:25:19 -0700451 s.files += %w( src/core/ext/filters/message_size/message_size_filter.h )
David Garcia Quintas961353a2018-03-15 16:11:05 -0700452 s.files += %w( src/core/ext/filters/http/client_authority_filter.h )
Muxi Yan29ff4662017-05-15 10:27:55 -0700453 s.files += %w( src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h )
454 s.files += %w( src/core/ext/filters/workarounds/workaround_utils.h )
Yash Tibrewal83062842017-09-21 18:56:08 -0700455 s.files += %w( src/core/lib/surface/init.cc )
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800456 s.files += %w( src/core/lib/avl/avl.cc )
Craig Tillerd48bd072017-10-06 11:25:14 -0700457 s.files += %w( src/core/lib/backoff/backoff.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700458 s.files += %w( src/core/lib/channel/channel_args.cc )
459 s.files += %w( src/core/lib/channel/channel_stack.cc )
460 s.files += %w( src/core/lib/channel/channel_stack_builder.cc )
ncteisen3b42f832018-03-19 13:22:35 -0700461 s.files += %w( src/core/lib/channel/channel_trace.cc )
ncteisenc3c6e062018-05-09 11:10:21 -0700462 s.files += %w( src/core/lib/channel/channelz.cc )
ncteisenbba88402018-05-11 11:54:41 -0400463 s.files += %w( src/core/lib/channel/channelz_registry.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700464 s.files += %w( src/core/lib/channel/connected_channel.cc )
465 s.files += %w( src/core/lib/channel/handshaker.cc )
466 s.files += %w( src/core/lib/channel/handshaker_factory.cc )
467 s.files += %w( src/core/lib/channel/handshaker_registry.cc )
ncteisen3b42f832018-03-19 13:22:35 -0700468 s.files += %w( src/core/lib/channel/status_util.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700469 s.files += %w( src/core/lib/compression/compression.cc )
Muxi Yan03fc8572017-10-06 18:47:09 -0700470 s.files += %w( src/core/lib/compression/compression_internal.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700471 s.files += %w( src/core/lib/compression/message_compress.cc )
472 s.files += %w( src/core/lib/compression/stream_compression.cc )
Yash Tibrewalbc460fa2017-10-02 17:42:41 -0700473 s.files += %w( src/core/lib/compression/stream_compression_gzip.cc )
474 s.files += %w( src/core/lib/compression/stream_compression_identity.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700475 s.files += %w( src/core/lib/debug/stats.cc )
476 s.files += %w( src/core/lib/debug/stats_data.cc )
477 s.files += %w( src/core/lib/http/format_request.cc )
478 s.files += %w( src/core/lib/http/httpcli.cc )
479 s.files += %w( src/core/lib/http/parser.cc )
Yash Tibrewal8d47cd42018-08-27 14:56:01 -0700480 s.files += %w( src/core/lib/iomgr/buffer_list.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700481 s.files += %w( src/core/lib/iomgr/call_combiner.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700482 s.files += %w( src/core/lib/iomgr/combiner.cc )
483 s.files += %w( src/core/lib/iomgr/endpoint.cc )
484 s.files += %w( src/core/lib/iomgr/endpoint_pair_posix.cc )
485 s.files += %w( src/core/lib/iomgr/endpoint_pair_uv.cc )
486 s.files += %w( src/core/lib/iomgr/endpoint_pair_windows.cc )
487 s.files += %w( src/core/lib/iomgr/error.cc )
488 s.files += %w( src/core/lib/iomgr/ev_epoll1_linux.cc )
489 s.files += %w( src/core/lib/iomgr/ev_epollex_linux.cc )
490 s.files += %w( src/core/lib/iomgr/ev_epollsig_linux.cc )
491 s.files += %w( src/core/lib/iomgr/ev_poll_posix.cc )
492 s.files += %w( src/core/lib/iomgr/ev_posix.cc )
493 s.files += %w( src/core/lib/iomgr/ev_windows.cc )
494 s.files += %w( src/core/lib/iomgr/exec_ctx.cc )
495 s.files += %w( src/core/lib/iomgr/executor.cc )
Nicolas "Pixel" Noble18a68372017-11-20 23:33:22 +0100496 s.files += %w( src/core/lib/iomgr/fork_posix.cc )
497 s.files += %w( src/core/lib/iomgr/fork_windows.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700498 s.files += %w( src/core/lib/iomgr/gethostname_fallback.cc )
499 s.files += %w( src/core/lib/iomgr/gethostname_host_name_max.cc )
500 s.files += %w( src/core/lib/iomgr/gethostname_sysconf.cc )
Yash Tibrewal8d47cd42018-08-27 14:56:01 -0700501 s.files += %w( src/core/lib/iomgr/internal_errqueue.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700502 s.files += %w( src/core/lib/iomgr/iocp_windows.cc )
503 s.files += %w( src/core/lib/iomgr/iomgr.cc )
kpayson64539f5062018-03-12 19:16:30 -0700504 s.files += %w( src/core/lib/iomgr/iomgr_custom.cc )
505 s.files += %w( src/core/lib/iomgr/iomgr_internal.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700506 s.files += %w( src/core/lib/iomgr/iomgr_posix.cc )
507 s.files += %w( src/core/lib/iomgr/iomgr_uv.cc )
508 s.files += %w( src/core/lib/iomgr/iomgr_windows.cc )
509 s.files += %w( src/core/lib/iomgr/is_epollexclusive_available.cc )
510 s.files += %w( src/core/lib/iomgr/load_file.cc )
511 s.files += %w( src/core/lib/iomgr/lockfree_event.cc )
512 s.files += %w( src/core/lib/iomgr/network_status_tracker.cc )
513 s.files += %w( src/core/lib/iomgr/polling_entity.cc )
kpayson64539f5062018-03-12 19:16:30 -0700514 s.files += %w( src/core/lib/iomgr/pollset.cc )
515 s.files += %w( src/core/lib/iomgr/pollset_custom.cc )
516 s.files += %w( src/core/lib/iomgr/pollset_set.cc )
517 s.files += %w( src/core/lib/iomgr/pollset_set_custom.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700518 s.files += %w( src/core/lib/iomgr/pollset_set_windows.cc )
519 s.files += %w( src/core/lib/iomgr/pollset_uv.cc )
520 s.files += %w( src/core/lib/iomgr/pollset_windows.cc )
kpayson64539f5062018-03-12 19:16:30 -0700521 s.files += %w( src/core/lib/iomgr/resolve_address.cc )
522 s.files += %w( src/core/lib/iomgr/resolve_address_custom.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700523 s.files += %w( src/core/lib/iomgr/resolve_address_posix.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700524 s.files += %w( src/core/lib/iomgr/resolve_address_windows.cc )
525 s.files += %w( src/core/lib/iomgr/resource_quota.cc )
526 s.files += %w( src/core/lib/iomgr/sockaddr_utils.cc )
527 s.files += %w( src/core/lib/iomgr/socket_factory_posix.cc )
528 s.files += %w( src/core/lib/iomgr/socket_mutator.cc )
529 s.files += %w( src/core/lib/iomgr/socket_utils_common_posix.cc )
530 s.files += %w( src/core/lib/iomgr/socket_utils_linux.cc )
531 s.files += %w( src/core/lib/iomgr/socket_utils_posix.cc )
532 s.files += %w( src/core/lib/iomgr/socket_utils_uv.cc )
Yash Tibrewal26c78032017-09-28 14:34:43 -0700533 s.files += %w( src/core/lib/iomgr/socket_utils_windows.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700534 s.files += %w( src/core/lib/iomgr/socket_windows.cc )
kpayson64539f5062018-03-12 19:16:30 -0700535 s.files += %w( src/core/lib/iomgr/tcp_client.cc )
536 s.files += %w( src/core/lib/iomgr/tcp_client_custom.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700537 s.files += %w( src/core/lib/iomgr/tcp_client_posix.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700538 s.files += %w( src/core/lib/iomgr/tcp_client_windows.cc )
kpayson64539f5062018-03-12 19:16:30 -0700539 s.files += %w( src/core/lib/iomgr/tcp_custom.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700540 s.files += %w( src/core/lib/iomgr/tcp_posix.cc )
kpayson64539f5062018-03-12 19:16:30 -0700541 s.files += %w( src/core/lib/iomgr/tcp_server.cc )
542 s.files += %w( src/core/lib/iomgr/tcp_server_custom.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700543 s.files += %w( src/core/lib/iomgr/tcp_server_posix.cc )
544 s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix_common.cc )
545 s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc )
546 s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700547 s.files += %w( src/core/lib/iomgr/tcp_server_windows.cc )
548 s.files += %w( src/core/lib/iomgr/tcp_uv.cc )
549 s.files += %w( src/core/lib/iomgr/tcp_windows.cc )
550 s.files += %w( src/core/lib/iomgr/time_averaged_stats.cc )
kpayson64539f5062018-03-12 19:16:30 -0700551 s.files += %w( src/core/lib/iomgr/timer.cc )
552 s.files += %w( src/core/lib/iomgr/timer_custom.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700553 s.files += %w( src/core/lib/iomgr/timer_generic.cc )
554 s.files += %w( src/core/lib/iomgr/timer_heap.cc )
555 s.files += %w( src/core/lib/iomgr/timer_manager.cc )
556 s.files += %w( src/core/lib/iomgr/timer_uv.cc )
557 s.files += %w( src/core/lib/iomgr/udp_server.cc )
558 s.files += %w( src/core/lib/iomgr/unix_sockets_posix.cc )
559 s.files += %w( src/core/lib/iomgr/unix_sockets_posix_noop.cc )
560 s.files += %w( src/core/lib/iomgr/wakeup_fd_cv.cc )
561 s.files += %w( src/core/lib/iomgr/wakeup_fd_eventfd.cc )
562 s.files += %w( src/core/lib/iomgr/wakeup_fd_nospecial.cc )
563 s.files += %w( src/core/lib/iomgr/wakeup_fd_pipe.cc )
564 s.files += %w( src/core/lib/iomgr/wakeup_fd_posix.cc )
565 s.files += %w( src/core/lib/json/json.cc )
566 s.files += %w( src/core/lib/json/json_reader.cc )
567 s.files += %w( src/core/lib/json/json_string.cc )
568 s.files += %w( src/core/lib/json/json_writer.cc )
569 s.files += %w( src/core/lib/slice/b64.cc )
570 s.files += %w( src/core/lib/slice/percent_encoding.cc )
571 s.files += %w( src/core/lib/slice/slice.cc )
572 s.files += %w( src/core/lib/slice/slice_buffer.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700573 s.files += %w( src/core/lib/slice/slice_intern.cc )
574 s.files += %w( src/core/lib/slice/slice_string_helpers.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700575 s.files += %w( src/core/lib/surface/api_trace.cc )
576 s.files += %w( src/core/lib/surface/byte_buffer.cc )
577 s.files += %w( src/core/lib/surface/byte_buffer_reader.cc )
578 s.files += %w( src/core/lib/surface/call.cc )
579 s.files += %w( src/core/lib/surface/call_details.cc )
580 s.files += %w( src/core/lib/surface/call_log_batch.cc )
581 s.files += %w( src/core/lib/surface/channel.cc )
582 s.files += %w( src/core/lib/surface/channel_init.cc )
583 s.files += %w( src/core/lib/surface/channel_ping.cc )
584 s.files += %w( src/core/lib/surface/channel_stack_type.cc )
585 s.files += %w( src/core/lib/surface/completion_queue.cc )
586 s.files += %w( src/core/lib/surface/completion_queue_factory.cc )
587 s.files += %w( src/core/lib/surface/event_string.cc )
Craig Tiller8ebb5442017-04-07 16:01:55 -0700588 s.files += %w( src/core/lib/surface/lame_client.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700589 s.files += %w( src/core/lib/surface/metadata_array.cc )
590 s.files += %w( src/core/lib/surface/server.cc )
591 s.files += %w( src/core/lib/surface/validate_metadata.cc )
592 s.files += %w( src/core/lib/surface/version.cc )
593 s.files += %w( src/core/lib/transport/bdp_estimator.cc )
594 s.files += %w( src/core/lib/transport/byte_stream.cc )
595 s.files += %w( src/core/lib/transport/connectivity_state.cc )
596 s.files += %w( src/core/lib/transport/error_utils.cc )
597 s.files += %w( src/core/lib/transport/metadata.cc )
598 s.files += %w( src/core/lib/transport/metadata_batch.cc )
599 s.files += %w( src/core/lib/transport/pid_controller.cc )
600 s.files += %w( src/core/lib/transport/service_config.cc )
601 s.files += %w( src/core/lib/transport/static_metadata.cc )
602 s.files += %w( src/core/lib/transport/status_conversion.cc )
Mark D. Roth718c8342018-02-28 13:00:04 -0800603 s.files += %w( src/core/lib/transport/status_metadata.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700604 s.files += %w( src/core/lib/transport/timeout_encoding.cc )
605 s.files += %w( src/core/lib/transport/transport.cc )
606 s.files += %w( src/core/lib/transport/transport_op_string.cc )
607 s.files += %w( src/core/lib/debug/trace.cc )
608 s.files += %w( src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc )
609 s.files += %w( src/core/ext/transport/chttp2/transport/bin_decoder.cc )
610 s.files += %w( src/core/ext/transport/chttp2/transport/bin_encoder.cc )
611 s.files += %w( src/core/ext/transport/chttp2/transport/chttp2_plugin.cc )
612 s.files += %w( src/core/ext/transport/chttp2/transport/chttp2_transport.cc )
613 s.files += %w( src/core/ext/transport/chttp2/transport/flow_control.cc )
614 s.files += %w( src/core/ext/transport/chttp2/transport/frame_data.cc )
615 s.files += %w( src/core/ext/transport/chttp2/transport/frame_goaway.cc )
616 s.files += %w( src/core/ext/transport/chttp2/transport/frame_ping.cc )
617 s.files += %w( src/core/ext/transport/chttp2/transport/frame_rst_stream.cc )
618 s.files += %w( src/core/ext/transport/chttp2/transport/frame_settings.cc )
619 s.files += %w( src/core/ext/transport/chttp2/transport/frame_window_update.cc )
620 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_encoder.cc )
Hope Casey-Allen327c5142018-09-19 13:47:29 -0700621 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_mapping.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700622 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_parser.cc )
623 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_table.cc )
624 s.files += %w( src/core/ext/transport/chttp2/transport/http2_settings.cc )
625 s.files += %w( src/core/ext/transport/chttp2/transport/huffsyms.cc )
626 s.files += %w( src/core/ext/transport/chttp2/transport/incoming_metadata.cc )
627 s.files += %w( src/core/ext/transport/chttp2/transport/parsing.cc )
628 s.files += %w( src/core/ext/transport/chttp2/transport/stream_lists.cc )
629 s.files += %w( src/core/ext/transport/chttp2/transport/stream_map.cc )
630 s.files += %w( src/core/ext/transport/chttp2/transport/varint.cc )
631 s.files += %w( src/core/ext/transport/chttp2/transport/writing.cc )
632 s.files += %w( src/core/ext/transport/chttp2/alpn/alpn.cc )
633 s.files += %w( src/core/ext/filters/http/client/http_client_filter.cc )
634 s.files += %w( src/core/ext/filters/http/http_filters_plugin.cc )
635 s.files += %w( src/core/ext/filters/http/message_compress/message_compress_filter.cc )
636 s.files += %w( src/core/ext/filters/http/server/http_server_filter.cc )
637 s.files += %w( src/core/lib/http/httpcli_security_connector.cc )
638 s.files += %w( src/core/lib/security/context/security_context.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800639 s.files += %w( src/core/lib/security/credentials/alts/alts_credentials.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700640 s.files += %w( src/core/lib/security/credentials/composite/composite_credentials.cc )
641 s.files += %w( src/core/lib/security/credentials/credentials.cc )
642 s.files += %w( src/core/lib/security/credentials/credentials_metadata.cc )
643 s.files += %w( src/core/lib/security/credentials/fake/fake_credentials.cc )
644 s.files += %w( src/core/lib/security/credentials/google_default/credentials_generic.cc )
645 s.files += %w( src/core/lib/security/credentials/google_default/google_default_credentials.cc )
646 s.files += %w( src/core/lib/security/credentials/iam/iam_credentials.cc )
647 s.files += %w( src/core/lib/security/credentials/jwt/json_token.cc )
648 s.files += %w( src/core/lib/security/credentials/jwt/jwt_credentials.cc )
649 s.files += %w( src/core/lib/security/credentials/jwt/jwt_verifier.cc )
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700650 s.files += %w( src/core/lib/security/credentials/local/local_credentials.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700651 s.files += %w( src/core/lib/security/credentials/oauth2/oauth2_credentials.cc )
652 s.files += %w( src/core/lib/security/credentials/plugin/plugin_credentials.cc )
653 s.files += %w( src/core/lib/security/credentials/ssl/ssl_credentials.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800654 s.files += %w( src/core/lib/security/security_connector/alts_security_connector.cc )
tdbhacksbcd747d2018-07-20 16:41:44 -0700655 s.files += %w( src/core/lib/security/security_connector/load_system_roots_fallback.cc )
656 s.files += %w( src/core/lib/security/security_connector/load_system_roots_linux.cc )
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700657 s.files += %w( src/core/lib/security/security_connector/local_security_connector.cc )
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800658 s.files += %w( src/core/lib/security/security_connector/security_connector.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700659 s.files += %w( src/core/lib/security/transport/client_auth_filter.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700660 s.files += %w( src/core/lib/security/transport/secure_endpoint.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700661 s.files += %w( src/core/lib/security/transport/security_handshaker.cc )
662 s.files += %w( src/core/lib/security/transport/server_auth_filter.cc )
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800663 s.files += %w( src/core/lib/security/transport/target_authority_table.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700664 s.files += %w( src/core/lib/security/transport/tsi_error.cc )
665 s.files += %w( src/core/lib/security/util/json_util.cc )
666 s.files += %w( src/core/lib/surface/init_secure.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800667 s.files += %w( src/core/tsi/alts/crypt/aes_gcm.cc )
668 s.files += %w( src/core/tsi/alts/crypt/gsec.cc )
669 s.files += %w( src/core/tsi/alts/frame_protector/alts_counter.cc )
670 s.files += %w( src/core/tsi/alts/frame_protector/alts_crypter.cc )
671 s.files += %w( src/core/tsi/alts/frame_protector/alts_frame_protector.cc )
672 s.files += %w( src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc )
673 s.files += %w( src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc )
674 s.files += %w( src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc )
675 s.files += %w( src/core/tsi/alts/frame_protector/frame_handler.cc )
676 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_client.cc )
677 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_event.cc )
678 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc )
679 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc )
680 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc )
681 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc )
682 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc )
683 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc )
684 s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment.cc )
685 s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc )
686 s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc )
687 s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc )
688 s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc )
689 s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc )
690 s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc )
691 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc )
692 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc )
693 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_utils.cc )
694 s.files += %w( src/core/tsi/alts/handshaker/transport_security_common_api.cc )
695 s.files += %w( src/core/tsi/alts/handshaker/altscontext.pb.c )
696 s.files += %w( src/core/tsi/alts/handshaker/handshaker.pb.c )
697 s.files += %w( src/core/tsi/alts/handshaker/transport_security_common.pb.c )
698 s.files += %w( third_party/nanopb/pb_common.c )
699 s.files += %w( third_party/nanopb/pb_decode.c )
700 s.files += %w( third_party/nanopb/pb_encode.c )
Yash Tibrewal83062842017-09-21 18:56:08 -0700701 s.files += %w( src/core/tsi/transport_security.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800702 s.files += %w( src/core/ext/transport/chttp2/client/insecure/channel_create.cc )
703 s.files += %w( src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc )
David Garcia Quintas49f625f2018-03-27 11:23:49 -0700704 s.files += %w( src/core/ext/transport/chttp2/client/authority.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800705 s.files += %w( src/core/ext/transport/chttp2/client/chttp2_connector.cc )
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700706 s.files += %w( src/core/ext/filters/client_channel/backup_poller.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700707 s.files += %w( src/core/ext/filters/client_channel/channel_connectivity.cc )
708 s.files += %w( src/core/ext/filters/client_channel/client_channel.cc )
ncteisenafb98292018-06-28 18:04:24 -0700709 s.files += %w( src/core/ext/filters/client_channel/client_channel_channelz.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700710 s.files += %w( src/core/ext/filters/client_channel/client_channel_factory.cc )
711 s.files += %w( src/core/ext/filters/client_channel/client_channel_plugin.cc )
712 s.files += %w( src/core/ext/filters/client_channel/connector.cc )
713 s.files += %w( src/core/ext/filters/client_channel/http_connect_handshaker.cc )
714 s.files += %w( src/core/ext/filters/client_channel/http_proxy.cc )
715 s.files += %w( src/core/ext/filters/client_channel/lb_policy.cc )
716 s.files += %w( src/core/ext/filters/client_channel/lb_policy_factory.cc )
717 s.files += %w( src/core/ext/filters/client_channel/lb_policy_registry.cc )
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800718 s.files += %w( src/core/ext/filters/client_channel/method_params.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700719 s.files += %w( src/core/ext/filters/client_channel/parse_address.cc )
720 s.files += %w( src/core/ext/filters/client_channel/proxy_mapper.cc )
721 s.files += %w( src/core/ext/filters/client_channel/proxy_mapper_registry.cc )
722 s.files += %w( src/core/ext/filters/client_channel/resolver.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700723 s.files += %w( src/core/ext/filters/client_channel/resolver_registry.cc )
724 s.files += %w( src/core/ext/filters/client_channel/retry_throttle.cc )
725 s.files += %w( src/core/ext/filters/client_channel/subchannel.cc )
726 s.files += %w( src/core/ext/filters/client_channel/subchannel_index.cc )
727 s.files += %w( src/core/ext/filters/client_channel/uri_parser.cc )
728 s.files += %w( src/core/ext/filters/deadline/deadline_filter.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800729 s.files += %w( src/core/tsi/alts_transport_security.cc )
730 s.files += %w( src/core/tsi/fake_transport_security.cc )
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700731 s.files += %w( src/core/tsi/local_transport_security.cc )
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700732 s.files += %w( src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc )
733 s.files += %w( src/core/tsi/ssl/session_cache/ssl_session_cache.cc )
734 s.files += %w( src/core/tsi/ssl/session_cache/ssl_session_openssl.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800735 s.files += %w( src/core/tsi/ssl_transport_security.cc )
736 s.files += %w( src/core/tsi/transport_security_grpc.cc )
737 s.files += %w( src/core/ext/transport/chttp2/server/chttp2_server.cc )
738 s.files += %w( src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700739 s.files += %w( src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc )
740 s.files += %w( src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700741 s.files += %w( src/core/ext/transport/inproc/inproc_plugin.cc )
742 s.files += %w( src/core/ext/transport/inproc/inproc_transport.cc )
743 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc )
744 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc )
745 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc )
746 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc )
747 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc )
David Garcia Quintasf3955ba2018-06-21 15:15:10 -0700748 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c )
749 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c )
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700750 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c )
Yash Tibrewal83062842017-09-21 18:56:08 -0700751 s.files += %w( src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc )
752 s.files += %w( src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc )
753 s.files += %w( src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc )
754 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc )
Alexander Polcyn7eda6192018-06-14 23:07:33 -0700755 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700756 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc )
Alexander Polcyn9896c642018-07-27 01:38:26 -0700757 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700758 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc )
759 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc )
Alexander Polcyn9896c642018-07-27 01:38:26 -0700760 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc )
761 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700762 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc )
763 s.files += %w( src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc )
Vijay Pai381bcab2018-08-16 15:44:19 -0700764 s.files += %w( src/core/ext/filters/census/grpc_context.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700765 s.files += %w( src/core/ext/filters/max_age/max_age_filter.cc )
766 s.files += %w( src/core/ext/filters/message_size/message_size_filter.cc )
David Garcia Quintas961353a2018-03-15 16:11:05 -0700767 s.files += %w( src/core/ext/filters/http/client_authority_filter.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700768 s.files += %w( src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc )
769 s.files += %w( src/core/ext/filters/workarounds/workaround_utils.cc )
Yash Tibrewal1c9b5842017-09-21 15:49:55 -0700770 s.files += %w( src/core/plugin_registry/grpc_plugin_registry.cc )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100771 s.files += %w( third_party/boringssl/crypto/asn1/asn1_locl.h )
772 s.files += %w( third_party/boringssl/crypto/bio/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100773 s.files += %w( third_party/boringssl/crypto/bytestring/internal.h )
Matt Kwonga110c742017-09-22 14:31:22 -0700774 s.files += %w( third_party/boringssl/crypto/cipher_extra/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100775 s.files += %w( third_party/boringssl/crypto/conf/conf_def.h )
776 s.files += %w( third_party/boringssl/crypto/conf/internal.h )
Matt Kwonga110c742017-09-22 14:31:22 -0700777 s.files += %w( third_party/boringssl/crypto/err/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100778 s.files += %w( third_party/boringssl/crypto/evp/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800779 s.files += %w( third_party/boringssl/crypto/fipsmodule/aes/aes.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700780 s.files += %w( third_party/boringssl/crypto/fipsmodule/aes/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800781 s.files += %w( third_party/boringssl/crypto/fipsmodule/aes/key_wrap.c )
782 s.files += %w( third_party/boringssl/crypto/fipsmodule/aes/mode_wrappers.c )
783 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/add.c )
784 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/asm/x86_64-gcc.c )
785 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/bn.c )
786 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/bytes.c )
787 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/cmp.c )
788 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/ctx.c )
789 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/div.c )
790 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c )
791 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/gcd.c )
792 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/generic.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700793 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800794 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/jacobi.c )
795 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/montgomery.c )
796 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/montgomery_inv.c )
797 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/mul.c )
798 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/prime.c )
799 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/random.c )
800 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700801 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800802 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/shift.c )
803 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/sqrt.c )
804 s.files += %w( third_party/boringssl/crypto/fipsmodule/cipher/aead.c )
805 s.files += %w( third_party/boringssl/crypto/fipsmodule/cipher/cipher.c )
806 s.files += %w( third_party/boringssl/crypto/fipsmodule/cipher/e_aes.c )
807 s.files += %w( third_party/boringssl/crypto/fipsmodule/cipher/e_des.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700808 s.files += %w( third_party/boringssl/crypto/fipsmodule/cipher/internal.h )
809 s.files += %w( third_party/boringssl/crypto/fipsmodule/delocate.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800810 s.files += %w( third_party/boringssl/crypto/fipsmodule/des/des.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700811 s.files += %w( third_party/boringssl/crypto/fipsmodule/des/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800812 s.files += %w( third_party/boringssl/crypto/fipsmodule/digest/digest.c )
813 s.files += %w( third_party/boringssl/crypto/fipsmodule/digest/digests.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700814 s.files += %w( third_party/boringssl/crypto/fipsmodule/digest/internal.h )
815 s.files += %w( third_party/boringssl/crypto/fipsmodule/digest/md32_common.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800816 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/ec.c )
817 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/ec_key.c )
818 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700819 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800820 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/oct.c )
821 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/p224-64.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700822 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800823 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700824 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800825 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/simple.c )
Jan Tattermusch272cdca2018-05-21 20:01:20 +0200826 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/util.c )
Matt Kwong77f77f72018-02-23 14:22:39 -0800827 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/wnaf.c )
828 s.files += %w( third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c )
829 s.files += %w( third_party/boringssl/crypto/fipsmodule/hmac/hmac.c )
830 s.files += %w( third_party/boringssl/crypto/fipsmodule/md4/md4.c )
831 s.files += %w( third_party/boringssl/crypto/fipsmodule/md5/md5.c )
832 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/cbc.c )
Jan Tattermusch272cdca2018-05-21 20:01:20 +0200833 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/ccm.c )
Matt Kwong77f77f72018-02-23 14:22:39 -0800834 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/cfb.c )
835 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/ctr.c )
836 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/gcm.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700837 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800838 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/ofb.c )
839 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/polyval.c )
840 s.files += %w( third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700841 s.files += %w( third_party/boringssl/crypto/fipsmodule/rand/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800842 s.files += %w( third_party/boringssl/crypto/fipsmodule/rand/rand.c )
843 s.files += %w( third_party/boringssl/crypto/fipsmodule/rand/urandom.c )
844 s.files += %w( third_party/boringssl/crypto/fipsmodule/rsa/blinding.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700845 s.files += %w( third_party/boringssl/crypto/fipsmodule/rsa/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800846 s.files += %w( third_party/boringssl/crypto/fipsmodule/rsa/padding.c )
847 s.files += %w( third_party/boringssl/crypto/fipsmodule/rsa/rsa.c )
848 s.files += %w( third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c )
Jan Tattermusch272cdca2018-05-21 20:01:20 +0200849 s.files += %w( third_party/boringssl/crypto/fipsmodule/self_check/self_check.c )
Matt Kwong77f77f72018-02-23 14:22:39 -0800850 s.files += %w( third_party/boringssl/crypto/fipsmodule/sha/sha1-altivec.c )
851 s.files += %w( third_party/boringssl/crypto/fipsmodule/sha/sha1.c )
852 s.files += %w( third_party/boringssl/crypto/fipsmodule/sha/sha256.c )
853 s.files += %w( third_party/boringssl/crypto/fipsmodule/sha/sha512.c )
Jan Tattermusch272cdca2018-05-21 20:01:20 +0200854 s.files += %w( third_party/boringssl/crypto/fipsmodule/tls/internal.h )
855 s.files += %w( third_party/boringssl/crypto/fipsmodule/tls/kdf.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100856 s.files += %w( third_party/boringssl/crypto/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100857 s.files += %w( third_party/boringssl/crypto/obj/obj_dat.h )
Matt Kwonga110c742017-09-22 14:31:22 -0700858 s.files += %w( third_party/boringssl/crypto/pkcs7/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100859 s.files += %w( third_party/boringssl/crypto/pkcs8/internal.h )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800860 s.files += %w( third_party/boringssl/crypto/poly1305/internal.h )
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700861 s.files += %w( third_party/boringssl/crypto/pool/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100862 s.files += %w( third_party/boringssl/crypto/x509/charmap.h )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800863 s.files += %w( third_party/boringssl/crypto/x509/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100864 s.files += %w( third_party/boringssl/crypto/x509/vpm_int.h )
865 s.files += %w( third_party/boringssl/crypto/x509v3/ext_dat.h )
866 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_int.h )
867 s.files += %w( third_party/boringssl/include/openssl/aead.h )
868 s.files += %w( third_party/boringssl/include/openssl/aes.h )
869 s.files += %w( third_party/boringssl/include/openssl/arm_arch.h )
870 s.files += %w( third_party/boringssl/include/openssl/asn1.h )
871 s.files += %w( third_party/boringssl/include/openssl/asn1_mac.h )
872 s.files += %w( third_party/boringssl/include/openssl/asn1t.h )
873 s.files += %w( third_party/boringssl/include/openssl/base.h )
874 s.files += %w( third_party/boringssl/include/openssl/base64.h )
875 s.files += %w( third_party/boringssl/include/openssl/bio.h )
876 s.files += %w( third_party/boringssl/include/openssl/blowfish.h )
877 s.files += %w( third_party/boringssl/include/openssl/bn.h )
878 s.files += %w( third_party/boringssl/include/openssl/buf.h )
879 s.files += %w( third_party/boringssl/include/openssl/buffer.h )
880 s.files += %w( third_party/boringssl/include/openssl/bytestring.h )
881 s.files += %w( third_party/boringssl/include/openssl/cast.h )
882 s.files += %w( third_party/boringssl/include/openssl/chacha.h )
883 s.files += %w( third_party/boringssl/include/openssl/cipher.h )
884 s.files += %w( third_party/boringssl/include/openssl/cmac.h )
885 s.files += %w( third_party/boringssl/include/openssl/conf.h )
886 s.files += %w( third_party/boringssl/include/openssl/cpu.h )
887 s.files += %w( third_party/boringssl/include/openssl/crypto.h )
888 s.files += %w( third_party/boringssl/include/openssl/curve25519.h )
889 s.files += %w( third_party/boringssl/include/openssl/des.h )
890 s.files += %w( third_party/boringssl/include/openssl/dh.h )
891 s.files += %w( third_party/boringssl/include/openssl/digest.h )
892 s.files += %w( third_party/boringssl/include/openssl/dsa.h )
893 s.files += %w( third_party/boringssl/include/openssl/dtls1.h )
894 s.files += %w( third_party/boringssl/include/openssl/ec.h )
895 s.files += %w( third_party/boringssl/include/openssl/ec_key.h )
896 s.files += %w( third_party/boringssl/include/openssl/ecdh.h )
897 s.files += %w( third_party/boringssl/include/openssl/ecdsa.h )
898 s.files += %w( third_party/boringssl/include/openssl/engine.h )
899 s.files += %w( third_party/boringssl/include/openssl/err.h )
900 s.files += %w( third_party/boringssl/include/openssl/evp.h )
901 s.files += %w( third_party/boringssl/include/openssl/ex_data.h )
902 s.files += %w( third_party/boringssl/include/openssl/hkdf.h )
903 s.files += %w( third_party/boringssl/include/openssl/hmac.h )
Matt Kwonga110c742017-09-22 14:31:22 -0700904 s.files += %w( third_party/boringssl/include/openssl/is_boringssl.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100905 s.files += %w( third_party/boringssl/include/openssl/lhash.h )
906 s.files += %w( third_party/boringssl/include/openssl/lhash_macros.h )
907 s.files += %w( third_party/boringssl/include/openssl/md4.h )
908 s.files += %w( third_party/boringssl/include/openssl/md5.h )
909 s.files += %w( third_party/boringssl/include/openssl/mem.h )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800910 s.files += %w( third_party/boringssl/include/openssl/nid.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100911 s.files += %w( third_party/boringssl/include/openssl/obj.h )
912 s.files += %w( third_party/boringssl/include/openssl/obj_mac.h )
913 s.files += %w( third_party/boringssl/include/openssl/objects.h )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800914 s.files += %w( third_party/boringssl/include/openssl/opensslconf.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100915 s.files += %w( third_party/boringssl/include/openssl/opensslv.h )
916 s.files += %w( third_party/boringssl/include/openssl/ossl_typ.h )
917 s.files += %w( third_party/boringssl/include/openssl/pem.h )
918 s.files += %w( third_party/boringssl/include/openssl/pkcs12.h )
919 s.files += %w( third_party/boringssl/include/openssl/pkcs7.h )
920 s.files += %w( third_party/boringssl/include/openssl/pkcs8.h )
921 s.files += %w( third_party/boringssl/include/openssl/poly1305.h )
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700922 s.files += %w( third_party/boringssl/include/openssl/pool.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100923 s.files += %w( third_party/boringssl/include/openssl/rand.h )
924 s.files += %w( third_party/boringssl/include/openssl/rc4.h )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800925 s.files += %w( third_party/boringssl/include/openssl/ripemd.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100926 s.files += %w( third_party/boringssl/include/openssl/rsa.h )
927 s.files += %w( third_party/boringssl/include/openssl/safestack.h )
928 s.files += %w( third_party/boringssl/include/openssl/sha.h )
Matt Kwonga110c742017-09-22 14:31:22 -0700929 s.files += %w( third_party/boringssl/include/openssl/span.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100930 s.files += %w( third_party/boringssl/include/openssl/srtp.h )
931 s.files += %w( third_party/boringssl/include/openssl/ssl.h )
932 s.files += %w( third_party/boringssl/include/openssl/ssl3.h )
933 s.files += %w( third_party/boringssl/include/openssl/stack.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100934 s.files += %w( third_party/boringssl/include/openssl/thread.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100935 s.files += %w( third_party/boringssl/include/openssl/tls1.h )
936 s.files += %w( third_party/boringssl/include/openssl/type_check.h )
937 s.files += %w( third_party/boringssl/include/openssl/x509.h )
938 s.files += %w( third_party/boringssl/include/openssl/x509_vfy.h )
939 s.files += %w( third_party/boringssl/include/openssl/x509v3.h )
940 s.files += %w( third_party/boringssl/ssl/internal.h )
Jan Tattermusch272cdca2018-05-21 20:01:20 +0200941 s.files += %w( third_party/boringssl/third_party/fiat/curve25519_tables.h )
Jan Tattermuschd606e362018-03-07 21:21:38 +0100942 s.files += %w( third_party/boringssl/third_party/fiat/internal.h )
Jan Tattermusch272cdca2018-05-21 20:01:20 +0200943 s.files += %w( third_party/boringssl/third_party/fiat/p256.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100944 s.files += %w( src/boringssl/err_data.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100945 s.files += %w( third_party/boringssl/crypto/asn1/a_bitstr.c )
946 s.files += %w( third_party/boringssl/crypto/asn1/a_bool.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100947 s.files += %w( third_party/boringssl/crypto/asn1/a_d2i_fp.c )
948 s.files += %w( third_party/boringssl/crypto/asn1/a_dup.c )
949 s.files += %w( third_party/boringssl/crypto/asn1/a_enum.c )
950 s.files += %w( third_party/boringssl/crypto/asn1/a_gentm.c )
951 s.files += %w( third_party/boringssl/crypto/asn1/a_i2d_fp.c )
952 s.files += %w( third_party/boringssl/crypto/asn1/a_int.c )
953 s.files += %w( third_party/boringssl/crypto/asn1/a_mbstr.c )
954 s.files += %w( third_party/boringssl/crypto/asn1/a_object.c )
955 s.files += %w( third_party/boringssl/crypto/asn1/a_octet.c )
956 s.files += %w( third_party/boringssl/crypto/asn1/a_print.c )
957 s.files += %w( third_party/boringssl/crypto/asn1/a_strnid.c )
958 s.files += %w( third_party/boringssl/crypto/asn1/a_time.c )
959 s.files += %w( third_party/boringssl/crypto/asn1/a_type.c )
960 s.files += %w( third_party/boringssl/crypto/asn1/a_utctm.c )
961 s.files += %w( third_party/boringssl/crypto/asn1/a_utf8.c )
962 s.files += %w( third_party/boringssl/crypto/asn1/asn1_lib.c )
963 s.files += %w( third_party/boringssl/crypto/asn1/asn1_par.c )
964 s.files += %w( third_party/boringssl/crypto/asn1/asn_pack.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100965 s.files += %w( third_party/boringssl/crypto/asn1/f_enum.c )
966 s.files += %w( third_party/boringssl/crypto/asn1/f_int.c )
967 s.files += %w( third_party/boringssl/crypto/asn1/f_string.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100968 s.files += %w( third_party/boringssl/crypto/asn1/tasn_dec.c )
969 s.files += %w( third_party/boringssl/crypto/asn1/tasn_enc.c )
970 s.files += %w( third_party/boringssl/crypto/asn1/tasn_fre.c )
971 s.files += %w( third_party/boringssl/crypto/asn1/tasn_new.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100972 s.files += %w( third_party/boringssl/crypto/asn1/tasn_typ.c )
973 s.files += %w( third_party/boringssl/crypto/asn1/tasn_utl.c )
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700974 s.files += %w( third_party/boringssl/crypto/asn1/time_support.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100975 s.files += %w( third_party/boringssl/crypto/base64/base64.c )
976 s.files += %w( third_party/boringssl/crypto/bio/bio.c )
977 s.files += %w( third_party/boringssl/crypto/bio/bio_mem.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100978 s.files += %w( third_party/boringssl/crypto/bio/connect.c )
979 s.files += %w( third_party/boringssl/crypto/bio/fd.c )
980 s.files += %w( third_party/boringssl/crypto/bio/file.c )
981 s.files += %w( third_party/boringssl/crypto/bio/hexdump.c )
982 s.files += %w( third_party/boringssl/crypto/bio/pair.c )
983 s.files += %w( third_party/boringssl/crypto/bio/printf.c )
984 s.files += %w( third_party/boringssl/crypto/bio/socket.c )
985 s.files += %w( third_party/boringssl/crypto/bio/socket_helper.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700986 s.files += %w( third_party/boringssl/crypto/bn_extra/bn_asn1.c )
987 s.files += %w( third_party/boringssl/crypto/bn_extra/convert.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100988 s.files += %w( third_party/boringssl/crypto/buf/buf.c )
itessier2a522032016-04-19 17:38:51 -0700989 s.files += %w( third_party/boringssl/crypto/bytestring/asn1_compat.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100990 s.files += %w( third_party/boringssl/crypto/bytestring/ber.c )
991 s.files += %w( third_party/boringssl/crypto/bytestring/cbb.c )
992 s.files += %w( third_party/boringssl/crypto/bytestring/cbs.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800993 s.files += %w( third_party/boringssl/crypto/chacha/chacha.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700994 s.files += %w( third_party/boringssl/crypto/cipher_extra/cipher_extra.c )
995 s.files += %w( third_party/boringssl/crypto/cipher_extra/derive_key.c )
Jan Tattermusch272cdca2018-05-21 20:01:20 +0200996 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_aesccm.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700997 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_aesctrhmac.c )
998 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_aesgcmsiv.c )
999 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_chacha20poly1305.c )
1000 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_null.c )
1001 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_rc2.c )
1002 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_rc4.c )
1003 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_ssl3.c )
1004 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_tls.c )
1005 s.files += %w( third_party/boringssl/crypto/cipher_extra/tls_cbc.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001006 s.files += %w( third_party/boringssl/crypto/cmac/cmac.c )
1007 s.files += %w( third_party/boringssl/crypto/conf/conf.c )
Jan Tattermusch272cdca2018-05-21 20:01:20 +02001008 s.files += %w( third_party/boringssl/crypto/cpu-aarch64-fuchsia.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -08001009 s.files += %w( third_party/boringssl/crypto/cpu-aarch64-linux.c )
1010 s.files += %w( third_party/boringssl/crypto/cpu-arm-linux.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001011 s.files += %w( third_party/boringssl/crypto/cpu-arm.c )
1012 s.files += %w( third_party/boringssl/crypto/cpu-intel.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -08001013 s.files += %w( third_party/boringssl/crypto/cpu-ppc64le.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001014 s.files += %w( third_party/boringssl/crypto/crypto.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -08001015 s.files += %w( third_party/boringssl/crypto/curve25519/spake25519.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001016 s.files += %w( third_party/boringssl/crypto/dh/check.c )
1017 s.files += %w( third_party/boringssl/crypto/dh/dh.c )
1018 s.files += %w( third_party/boringssl/crypto/dh/dh_asn1.c )
1019 s.files += %w( third_party/boringssl/crypto/dh/params.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001020 s.files += %w( third_party/boringssl/crypto/digest_extra/digest_extra.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001021 s.files += %w( third_party/boringssl/crypto/dsa/dsa.c )
1022 s.files += %w( third_party/boringssl/crypto/dsa/dsa_asn1.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001023 s.files += %w( third_party/boringssl/crypto/ec_extra/ec_asn1.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001024 s.files += %w( third_party/boringssl/crypto/ecdh/ecdh.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001025 s.files += %w( third_party/boringssl/crypto/ecdsa_extra/ecdsa_asn1.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001026 s.files += %w( third_party/boringssl/crypto/engine/engine.c )
1027 s.files += %w( third_party/boringssl/crypto/err/err.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001028 s.files += %w( third_party/boringssl/crypto/evp/digestsign.c )
1029 s.files += %w( third_party/boringssl/crypto/evp/evp.c )
1030 s.files += %w( third_party/boringssl/crypto/evp/evp_asn1.c )
1031 s.files += %w( third_party/boringssl/crypto/evp/evp_ctx.c )
1032 s.files += %w( third_party/boringssl/crypto/evp/p_dsa_asn1.c )
1033 s.files += %w( third_party/boringssl/crypto/evp/p_ec.c )
1034 s.files += %w( third_party/boringssl/crypto/evp/p_ec_asn1.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001035 s.files += %w( third_party/boringssl/crypto/evp/p_ed25519.c )
1036 s.files += %w( third_party/boringssl/crypto/evp/p_ed25519_asn1.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001037 s.files += %w( third_party/boringssl/crypto/evp/p_rsa.c )
1038 s.files += %w( third_party/boringssl/crypto/evp/p_rsa_asn1.c )
1039 s.files += %w( third_party/boringssl/crypto/evp/pbkdf.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -08001040 s.files += %w( third_party/boringssl/crypto/evp/print.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001041 s.files += %w( third_party/boringssl/crypto/evp/scrypt.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001042 s.files += %w( third_party/boringssl/crypto/evp/sign.c )
1043 s.files += %w( third_party/boringssl/crypto/ex_data.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001044 s.files += %w( third_party/boringssl/crypto/fipsmodule/bcm.c )
1045 s.files += %w( third_party/boringssl/crypto/fipsmodule/is_fips.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001046 s.files += %w( third_party/boringssl/crypto/hkdf/hkdf.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001047 s.files += %w( third_party/boringssl/crypto/lhash/lhash.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001048 s.files += %w( third_party/boringssl/crypto/mem.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001049 s.files += %w( third_party/boringssl/crypto/obj/obj.c )
1050 s.files += %w( third_party/boringssl/crypto/obj/obj_xref.c )
1051 s.files += %w( third_party/boringssl/crypto/pem/pem_all.c )
1052 s.files += %w( third_party/boringssl/crypto/pem/pem_info.c )
1053 s.files += %w( third_party/boringssl/crypto/pem/pem_lib.c )
1054 s.files += %w( third_party/boringssl/crypto/pem/pem_oth.c )
1055 s.files += %w( third_party/boringssl/crypto/pem/pem_pk8.c )
1056 s.files += %w( third_party/boringssl/crypto/pem/pem_pkey.c )
1057 s.files += %w( third_party/boringssl/crypto/pem/pem_x509.c )
1058 s.files += %w( third_party/boringssl/crypto/pem/pem_xaux.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001059 s.files += %w( third_party/boringssl/crypto/pkcs7/pkcs7.c )
1060 s.files += %w( third_party/boringssl/crypto/pkcs7/pkcs7_x509.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001061 s.files += %w( third_party/boringssl/crypto/pkcs8/p5_pbev2.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001062 s.files += %w( third_party/boringssl/crypto/pkcs8/pkcs8.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001063 s.files += %w( third_party/boringssl/crypto/pkcs8/pkcs8_x509.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001064 s.files += %w( third_party/boringssl/crypto/poly1305/poly1305.c )
1065 s.files += %w( third_party/boringssl/crypto/poly1305/poly1305_arm.c )
1066 s.files += %w( third_party/boringssl/crypto/poly1305/poly1305_vec.c )
Ken Paysonf8d6fb72017-06-15 17:32:49 -07001067 s.files += %w( third_party/boringssl/crypto/pool/pool.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001068 s.files += %w( third_party/boringssl/crypto/rand_extra/deterministic.c )
1069 s.files += %w( third_party/boringssl/crypto/rand_extra/forkunsafe.c )
1070 s.files += %w( third_party/boringssl/crypto/rand_extra/fuchsia.c )
1071 s.files += %w( third_party/boringssl/crypto/rand_extra/rand_extra.c )
1072 s.files += %w( third_party/boringssl/crypto/rand_extra/windows.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001073 s.files += %w( third_party/boringssl/crypto/rc4/rc4.c )
1074 s.files += %w( third_party/boringssl/crypto/refcount_c11.c )
1075 s.files += %w( third_party/boringssl/crypto/refcount_lock.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001076 s.files += %w( third_party/boringssl/crypto/rsa_extra/rsa_asn1.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001077 s.files += %w( third_party/boringssl/crypto/stack/stack.c )
1078 s.files += %w( third_party/boringssl/crypto/thread.c )
1079 s.files += %w( third_party/boringssl/crypto/thread_none.c )
1080 s.files += %w( third_party/boringssl/crypto/thread_pthread.c )
1081 s.files += %w( third_party/boringssl/crypto/thread_win.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001082 s.files += %w( third_party/boringssl/crypto/x509/a_digest.c )
1083 s.files += %w( third_party/boringssl/crypto/x509/a_sign.c )
1084 s.files += %w( third_party/boringssl/crypto/x509/a_strex.c )
1085 s.files += %w( third_party/boringssl/crypto/x509/a_verify.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -08001086 s.files += %w( third_party/boringssl/crypto/x509/algorithm.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001087 s.files += %w( third_party/boringssl/crypto/x509/asn1_gen.c )
1088 s.files += %w( third_party/boringssl/crypto/x509/by_dir.c )
1089 s.files += %w( third_party/boringssl/crypto/x509/by_file.c )
1090 s.files += %w( third_party/boringssl/crypto/x509/i2d_pr.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -08001091 s.files += %w( third_party/boringssl/crypto/x509/rsa_pss.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001092 s.files += %w( third_party/boringssl/crypto/x509/t_crl.c )
1093 s.files += %w( third_party/boringssl/crypto/x509/t_req.c )
1094 s.files += %w( third_party/boringssl/crypto/x509/t_x509.c )
1095 s.files += %w( third_party/boringssl/crypto/x509/t_x509a.c )
1096 s.files += %w( third_party/boringssl/crypto/x509/x509.c )
1097 s.files += %w( third_party/boringssl/crypto/x509/x509_att.c )
1098 s.files += %w( third_party/boringssl/crypto/x509/x509_cmp.c )
1099 s.files += %w( third_party/boringssl/crypto/x509/x509_d2.c )
1100 s.files += %w( third_party/boringssl/crypto/x509/x509_def.c )
1101 s.files += %w( third_party/boringssl/crypto/x509/x509_ext.c )
1102 s.files += %w( third_party/boringssl/crypto/x509/x509_lu.c )
1103 s.files += %w( third_party/boringssl/crypto/x509/x509_obj.c )
1104 s.files += %w( third_party/boringssl/crypto/x509/x509_r2x.c )
1105 s.files += %w( third_party/boringssl/crypto/x509/x509_req.c )
1106 s.files += %w( third_party/boringssl/crypto/x509/x509_set.c )
1107 s.files += %w( third_party/boringssl/crypto/x509/x509_trs.c )
1108 s.files += %w( third_party/boringssl/crypto/x509/x509_txt.c )
1109 s.files += %w( third_party/boringssl/crypto/x509/x509_v3.c )
1110 s.files += %w( third_party/boringssl/crypto/x509/x509_vfy.c )
1111 s.files += %w( third_party/boringssl/crypto/x509/x509_vpm.c )
1112 s.files += %w( third_party/boringssl/crypto/x509/x509cset.c )
1113 s.files += %w( third_party/boringssl/crypto/x509/x509name.c )
1114 s.files += %w( third_party/boringssl/crypto/x509/x509rset.c )
1115 s.files += %w( third_party/boringssl/crypto/x509/x509spki.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001116 s.files += %w( third_party/boringssl/crypto/x509/x_algor.c )
1117 s.files += %w( third_party/boringssl/crypto/x509/x_all.c )
1118 s.files += %w( third_party/boringssl/crypto/x509/x_attrib.c )
1119 s.files += %w( third_party/boringssl/crypto/x509/x_crl.c )
1120 s.files += %w( third_party/boringssl/crypto/x509/x_exten.c )
1121 s.files += %w( third_party/boringssl/crypto/x509/x_info.c )
1122 s.files += %w( third_party/boringssl/crypto/x509/x_name.c )
1123 s.files += %w( third_party/boringssl/crypto/x509/x_pkey.c )
1124 s.files += %w( third_party/boringssl/crypto/x509/x_pubkey.c )
1125 s.files += %w( third_party/boringssl/crypto/x509/x_req.c )
1126 s.files += %w( third_party/boringssl/crypto/x509/x_sig.c )
1127 s.files += %w( third_party/boringssl/crypto/x509/x_spki.c )
1128 s.files += %w( third_party/boringssl/crypto/x509/x_val.c )
1129 s.files += %w( third_party/boringssl/crypto/x509/x_x509.c )
1130 s.files += %w( third_party/boringssl/crypto/x509/x_x509a.c )
1131 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_cache.c )
1132 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_data.c )
1133 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_lib.c )
1134 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_map.c )
1135 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_node.c )
1136 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_tree.c )
1137 s.files += %w( third_party/boringssl/crypto/x509v3/v3_akey.c )
1138 s.files += %w( third_party/boringssl/crypto/x509v3/v3_akeya.c )
1139 s.files += %w( third_party/boringssl/crypto/x509v3/v3_alt.c )
1140 s.files += %w( third_party/boringssl/crypto/x509v3/v3_bcons.c )
1141 s.files += %w( third_party/boringssl/crypto/x509v3/v3_bitst.c )
1142 s.files += %w( third_party/boringssl/crypto/x509v3/v3_conf.c )
1143 s.files += %w( third_party/boringssl/crypto/x509v3/v3_cpols.c )
1144 s.files += %w( third_party/boringssl/crypto/x509v3/v3_crld.c )
1145 s.files += %w( third_party/boringssl/crypto/x509v3/v3_enum.c )
1146 s.files += %w( third_party/boringssl/crypto/x509v3/v3_extku.c )
1147 s.files += %w( third_party/boringssl/crypto/x509v3/v3_genn.c )
1148 s.files += %w( third_party/boringssl/crypto/x509v3/v3_ia5.c )
1149 s.files += %w( third_party/boringssl/crypto/x509v3/v3_info.c )
1150 s.files += %w( third_party/boringssl/crypto/x509v3/v3_int.c )
1151 s.files += %w( third_party/boringssl/crypto/x509v3/v3_lib.c )
1152 s.files += %w( third_party/boringssl/crypto/x509v3/v3_ncons.c )
1153 s.files += %w( third_party/boringssl/crypto/x509v3/v3_pci.c )
1154 s.files += %w( third_party/boringssl/crypto/x509v3/v3_pcia.c )
1155 s.files += %w( third_party/boringssl/crypto/x509v3/v3_pcons.c )
1156 s.files += %w( third_party/boringssl/crypto/x509v3/v3_pku.c )
1157 s.files += %w( third_party/boringssl/crypto/x509v3/v3_pmaps.c )
1158 s.files += %w( third_party/boringssl/crypto/x509v3/v3_prn.c )
1159 s.files += %w( third_party/boringssl/crypto/x509v3/v3_purp.c )
1160 s.files += %w( third_party/boringssl/crypto/x509v3/v3_skey.c )
1161 s.files += %w( third_party/boringssl/crypto/x509v3/v3_sxnet.c )
1162 s.files += %w( third_party/boringssl/crypto/x509v3/v3_utl.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001163 s.files += %w( third_party/boringssl/ssl/bio_ssl.cc )
1164 s.files += %w( third_party/boringssl/ssl/custom_extensions.cc )
1165 s.files += %w( third_party/boringssl/ssl/d1_both.cc )
1166 s.files += %w( third_party/boringssl/ssl/d1_lib.cc )
1167 s.files += %w( third_party/boringssl/ssl/d1_pkt.cc )
1168 s.files += %w( third_party/boringssl/ssl/d1_srtp.cc )
1169 s.files += %w( third_party/boringssl/ssl/dtls_method.cc )
1170 s.files += %w( third_party/boringssl/ssl/dtls_record.cc )
Jan Tattermusch272cdca2018-05-21 20:01:20 +02001171 s.files += %w( third_party/boringssl/ssl/handoff.cc )
Matt Kwonga110c742017-09-22 14:31:22 -07001172 s.files += %w( third_party/boringssl/ssl/handshake.cc )
1173 s.files += %w( third_party/boringssl/ssl/handshake_client.cc )
1174 s.files += %w( third_party/boringssl/ssl/handshake_server.cc )
1175 s.files += %w( third_party/boringssl/ssl/s3_both.cc )
1176 s.files += %w( third_party/boringssl/ssl/s3_lib.cc )
1177 s.files += %w( third_party/boringssl/ssl/s3_pkt.cc )
1178 s.files += %w( third_party/boringssl/ssl/ssl_aead_ctx.cc )
1179 s.files += %w( third_party/boringssl/ssl/ssl_asn1.cc )
1180 s.files += %w( third_party/boringssl/ssl/ssl_buffer.cc )
1181 s.files += %w( third_party/boringssl/ssl/ssl_cert.cc )
1182 s.files += %w( third_party/boringssl/ssl/ssl_cipher.cc )
1183 s.files += %w( third_party/boringssl/ssl/ssl_file.cc )
1184 s.files += %w( third_party/boringssl/ssl/ssl_key_share.cc )
1185 s.files += %w( third_party/boringssl/ssl/ssl_lib.cc )
1186 s.files += %w( third_party/boringssl/ssl/ssl_privkey.cc )
1187 s.files += %w( third_party/boringssl/ssl/ssl_session.cc )
1188 s.files += %w( third_party/boringssl/ssl/ssl_stat.cc )
1189 s.files += %w( third_party/boringssl/ssl/ssl_transcript.cc )
1190 s.files += %w( third_party/boringssl/ssl/ssl_versions.cc )
1191 s.files += %w( third_party/boringssl/ssl/ssl_x509.cc )
1192 s.files += %w( third_party/boringssl/ssl/t1_enc.cc )
1193 s.files += %w( third_party/boringssl/ssl/t1_lib.cc )
1194 s.files += %w( third_party/boringssl/ssl/tls13_both.cc )
1195 s.files += %w( third_party/boringssl/ssl/tls13_client.cc )
1196 s.files += %w( third_party/boringssl/ssl/tls13_enc.cc )
1197 s.files += %w( third_party/boringssl/ssl/tls13_server.cc )
1198 s.files += %w( third_party/boringssl/ssl/tls_method.cc )
1199 s.files += %w( third_party/boringssl/ssl/tls_record.cc )
Jan Tattermuschd606e362018-03-07 21:21:38 +01001200 s.files += %w( third_party/boringssl/third_party/fiat/curve25519.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001201 s.files += %w( third_party/zlib/crc32.h )
1202 s.files += %w( third_party/zlib/deflate.h )
1203 s.files += %w( third_party/zlib/gzguts.h )
1204 s.files += %w( third_party/zlib/inffast.h )
1205 s.files += %w( third_party/zlib/inffixed.h )
1206 s.files += %w( third_party/zlib/inflate.h )
1207 s.files += %w( third_party/zlib/inftrees.h )
1208 s.files += %w( third_party/zlib/trees.h )
1209 s.files += %w( third_party/zlib/zconf.h )
1210 s.files += %w( third_party/zlib/zlib.h )
1211 s.files += %w( third_party/zlib/zutil.h )
1212 s.files += %w( third_party/zlib/adler32.c )
1213 s.files += %w( third_party/zlib/compress.c )
1214 s.files += %w( third_party/zlib/crc32.c )
1215 s.files += %w( third_party/zlib/deflate.c )
1216 s.files += %w( third_party/zlib/gzclose.c )
1217 s.files += %w( third_party/zlib/gzlib.c )
1218 s.files += %w( third_party/zlib/gzread.c )
1219 s.files += %w( third_party/zlib/gzwrite.c )
1220 s.files += %w( third_party/zlib/infback.c )
1221 s.files += %w( third_party/zlib/inffast.c )
1222 s.files += %w( third_party/zlib/inflate.c )
1223 s.files += %w( third_party/zlib/inftrees.c )
1224 s.files += %w( third_party/zlib/trees.c )
1225 s.files += %w( third_party/zlib/uncompr.c )
1226 s.files += %w( third_party/zlib/zutil.c )
Yuchen Zeng6694bb02017-01-23 17:09:51 -08001227 s.files += %w( third_party/cares/cares/ares.h )
1228 s.files += %w( third_party/cares/cares/ares_data.h )
1229 s.files += %w( third_party/cares/cares/ares_dns.h )
1230 s.files += %w( third_party/cares/cares/ares_getenv.h )
1231 s.files += %w( third_party/cares/cares/ares_getopt.h )
1232 s.files += %w( third_party/cares/cares/ares_inet_net_pton.h )
1233 s.files += %w( third_party/cares/cares/ares_iphlpapi.h )
1234 s.files += %w( third_party/cares/cares/ares_ipv6.h )
1235 s.files += %w( third_party/cares/cares/ares_library_init.h )
1236 s.files += %w( third_party/cares/cares/ares_llist.h )
1237 s.files += %w( third_party/cares/cares/ares_nowarn.h )
1238 s.files += %w( third_party/cares/cares/ares_platform.h )
1239 s.files += %w( third_party/cares/cares/ares_private.h )
1240 s.files += %w( third_party/cares/cares/ares_rules.h )
1241 s.files += %w( third_party/cares/cares/ares_setup.h )
1242 s.files += %w( third_party/cares/cares/ares_strcasecmp.h )
1243 s.files += %w( third_party/cares/cares/ares_strdup.h )
1244 s.files += %w( third_party/cares/cares/ares_version.h )
1245 s.files += %w( third_party/cares/cares/bitncmp.h )
1246 s.files += %w( third_party/cares/cares/config-win32.h )
1247 s.files += %w( third_party/cares/cares/setup_once.h )
1248 s.files += %w( third_party/cares/ares_build.h )
Yuchen Zeng6694bb02017-01-23 17:09:51 -08001249 s.files += %w( third_party/cares/config_darwin/ares_config.h )
Mehrdad Afshari451c02b2017-10-12 10:28:14 -07001250 s.files += %w( third_party/cares/config_freebsd/ares_config.h )
1251 s.files += %w( third_party/cares/config_linux/ares_config.h )
Frank Groeneveldfbf81282017-10-12 08:27:14 +02001252 s.files += %w( third_party/cares/config_openbsd/ares_config.h )
Yuchen Zeng6694bb02017-01-23 17:09:51 -08001253 s.files += %w( third_party/cares/cares/ares__close_sockets.c )
1254 s.files += %w( third_party/cares/cares/ares__get_hostent.c )
1255 s.files += %w( third_party/cares/cares/ares__read_line.c )
1256 s.files += %w( third_party/cares/cares/ares__timeval.c )
1257 s.files += %w( third_party/cares/cares/ares_cancel.c )
1258 s.files += %w( third_party/cares/cares/ares_create_query.c )
1259 s.files += %w( third_party/cares/cares/ares_data.c )
1260 s.files += %w( third_party/cares/cares/ares_destroy.c )
1261 s.files += %w( third_party/cares/cares/ares_expand_name.c )
1262 s.files += %w( third_party/cares/cares/ares_expand_string.c )
1263 s.files += %w( third_party/cares/cares/ares_fds.c )
1264 s.files += %w( third_party/cares/cares/ares_free_hostent.c )
1265 s.files += %w( third_party/cares/cares/ares_free_string.c )
1266 s.files += %w( third_party/cares/cares/ares_getenv.c )
1267 s.files += %w( third_party/cares/cares/ares_gethostbyaddr.c )
1268 s.files += %w( third_party/cares/cares/ares_gethostbyname.c )
1269 s.files += %w( third_party/cares/cares/ares_getnameinfo.c )
1270 s.files += %w( third_party/cares/cares/ares_getopt.c )
1271 s.files += %w( third_party/cares/cares/ares_getsock.c )
1272 s.files += %w( third_party/cares/cares/ares_init.c )
1273 s.files += %w( third_party/cares/cares/ares_library_init.c )
1274 s.files += %w( third_party/cares/cares/ares_llist.c )
1275 s.files += %w( third_party/cares/cares/ares_mkquery.c )
1276 s.files += %w( third_party/cares/cares/ares_nowarn.c )
1277 s.files += %w( third_party/cares/cares/ares_options.c )
1278 s.files += %w( third_party/cares/cares/ares_parse_a_reply.c )
1279 s.files += %w( third_party/cares/cares/ares_parse_aaaa_reply.c )
1280 s.files += %w( third_party/cares/cares/ares_parse_mx_reply.c )
1281 s.files += %w( third_party/cares/cares/ares_parse_naptr_reply.c )
1282 s.files += %w( third_party/cares/cares/ares_parse_ns_reply.c )
1283 s.files += %w( third_party/cares/cares/ares_parse_ptr_reply.c )
1284 s.files += %w( third_party/cares/cares/ares_parse_soa_reply.c )
1285 s.files += %w( third_party/cares/cares/ares_parse_srv_reply.c )
1286 s.files += %w( third_party/cares/cares/ares_parse_txt_reply.c )
1287 s.files += %w( third_party/cares/cares/ares_platform.c )
1288 s.files += %w( third_party/cares/cares/ares_process.c )
1289 s.files += %w( third_party/cares/cares/ares_query.c )
1290 s.files += %w( third_party/cares/cares/ares_search.c )
1291 s.files += %w( third_party/cares/cares/ares_send.c )
1292 s.files += %w( third_party/cares/cares/ares_strcasecmp.c )
1293 s.files += %w( third_party/cares/cares/ares_strdup.c )
1294 s.files += %w( third_party/cares/cares/ares_strerror.c )
1295 s.files += %w( third_party/cares/cares/ares_timeout.c )
1296 s.files += %w( third_party/cares/cares/ares_version.c )
1297 s.files += %w( third_party/cares/cares/ares_writev.c )
1298 s.files += %w( third_party/cares/cares/bitncmp.c )
1299 s.files += %w( third_party/cares/cares/inet_net_pton.c )
1300 s.files += %w( third_party/cares/cares/inet_ntop.c )
1301 s.files += %w( third_party/cares/cares/windows_port.c )
nnoble097ef9b2014-12-01 17:06:10 -08001302end