blob: 89a3812376eb675a56090acb3b6c1e95069d1c54 [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/**/*')
23 s.files += Dir.glob('src/ruby/pb/**/*')
24 s.files += Dir.glob('include/grpc/**/*')
murgatroid99d7e1a102015-12-18 11:16:16 -080025 s.test_files = Dir.glob('src/ruby/spec/**/*')
26 s.bindir = 'src/ruby/bin'
DJ Mountney37268d02017-03-07 09:22:04 -080027 s.require_paths = %w( src/ruby/lib src/ruby/bin src/ruby/pb )
nnoble097ef9b2014-12-01 17:06:10 -080028 s.platform = Gem::Platform::RUBY
29
Alexander Polcynb39eb532017-02-02 09:45:58 -080030 s.add_dependency 'google-protobuf', '~> 3.1'
Alexander Polcyn2c4cc1b2017-10-20 14:39:46 -070031 s.add_dependency 'googleauth', '>= 0.5.1', '< 0.7'
Alexander Polcyna594ba02017-09-07 19:04:59 -070032 s.add_dependency 'googleapis-common-protos-types', '~> 1.0.0'
nnoble097ef9b2014-12-01 17:06:10 -080033
Nicolas "Pixel" Noblecb287a12016-01-28 05:01:01 +010034 s.add_development_dependency 'bundler', '~> 1.9'
Vijay Pai546c2762016-04-12 14:38:51 -070035 s.add_development_dependency 'facter', '~> 2.4'
Nicolas "Pixel" Noblecb287a12016-01-28 05:01:01 +010036 s.add_development_dependency 'logging', '~> 2.0'
Jan Tattermusche2f845c2017-09-01 11:13:42 +020037 s.add_development_dependency 'simplecov', '~> 0.14.1'
38 s.add_development_dependency 'rake', '~> 12.0'
Alexander Polcynd490a9e2017-02-08 19:31:45 -080039 s.add_development_dependency 'rake-compiler', '~> 1.0'
Nicolas "Pixel" Nobleca144fd2016-02-09 03:33:40 +010040 s.add_development_dependency 'rake-compiler-dock', '~> 0.5.1'
Jan Tattermusche2f845c2017-09-01 11:13:42 +020041 s.add_development_dependency 'rspec', '~> 3.6'
42 s.add_development_dependency 'rubocop', '~> 0.49.1'
Nicolas "Pixel" Noblecb287a12016-01-28 05:01:01 +010043 s.add_development_dependency 'signet', '~> 0.7.0'
nnoble097ef9b2014-12-01 17:06:10 -080044
murgatroid99d7e1a102015-12-18 11:16:16 -080045 s.extensions = %w(src/ruby/ext/grpc/extconf.rb)
murgatroid9928013eb2015-12-18 13:23:40 -080046
47 s.files += %w( include/grpc/support/alloc.h )
48 s.files += %w( include/grpc/support/atm.h )
49 s.files += %w( include/grpc/support/atm_gcc_atomic.h )
50 s.files += %w( include/grpc/support/atm_gcc_sync.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070051 s.files += %w( include/grpc/support/atm_windows.h )
murgatroid9928013eb2015-12-18 13:23:40 -080052 s.files += %w( include/grpc/support/cpu.h )
murgatroid9928013eb2015-12-18 13:23:40 -080053 s.files += %w( include/grpc/support/log.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070054 s.files += %w( include/grpc/support/log_windows.h )
murgatroid9928013eb2015-12-18 13:23:40 -080055 s.files += %w( include/grpc/support/port_platform.h )
murgatroid9928013eb2015-12-18 13:23:40 -080056 s.files += %w( include/grpc/support/string_util.h )
murgatroid9928013eb2015-12-18 13:23:40 -080057 s.files += %w( include/grpc/support/sync.h )
yang-g9ff60312017-08-24 09:08:21 -070058 s.files += %w( include/grpc/support/sync_custom.h )
murgatroid9928013eb2015-12-18 13:23:40 -080059 s.files += %w( include/grpc/support/sync_generic.h )
60 s.files += %w( include/grpc/support/sync_posix.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070061 s.files += %w( include/grpc/support/sync_windows.h )
Vijay Paic7456902018-02-12 10:28:24 -080062 s.files += %w( include/grpc/support/thd_id.h )
murgatroid9928013eb2015-12-18 13:23:40 -080063 s.files += %w( include/grpc/support/time.h )
Craig Tiller03915e52016-04-07 09:15:10 -070064 s.files += %w( include/grpc/impl/codegen/atm.h )
65 s.files += %w( include/grpc/impl/codegen/atm_gcc_atomic.h )
66 s.files += %w( include/grpc/impl/codegen/atm_gcc_sync.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070067 s.files += %w( include/grpc/impl/codegen/atm_windows.h )
Ken Payson9714e032017-10-10 11:18:49 -070068 s.files += %w( include/grpc/impl/codegen/fork.h )
Mark D. Roth4d2ea022016-12-12 07:12:27 -080069 s.files += %w( include/grpc/impl/codegen/gpr_slice.h )
David Garcia Quintas8c5424f2016-08-01 22:49:00 -070070 s.files += %w( include/grpc/impl/codegen/gpr_types.h )
Craig Tiller03915e52016-04-07 09:15:10 -070071 s.files += %w( include/grpc/impl/codegen/port_platform.h )
Craig Tiller03915e52016-04-07 09:15:10 -070072 s.files += %w( include/grpc/impl/codegen/sync.h )
yang-g9ff60312017-08-24 09:08:21 -070073 s.files += %w( include/grpc/impl/codegen/sync_custom.h )
Craig Tiller03915e52016-04-07 09:15:10 -070074 s.files += %w( include/grpc/impl/codegen/sync_generic.h )
75 s.files += %w( include/grpc/impl/codegen/sync_posix.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070076 s.files += %w( include/grpc/impl/codegen/sync_windows.h )
Mark D. Rothdbdf4952018-01-18 11:21:12 -080077 s.files += %w( src/core/lib/gpr/arena.h )
78 s.files += %w( src/core/lib/gpr/env.h )
79 s.files += %w( src/core/lib/gpr/fork.h )
Vijay Paiae376bf2018-01-25 22:54:02 -080080 s.files += %w( src/core/lib/gpr/host_port.h )
Mark D. Rothdbdf4952018-01-18 11:21:12 -080081 s.files += %w( src/core/lib/gpr/mpscq.h )
82 s.files += %w( src/core/lib/gpr/murmur_hash.h )
83 s.files += %w( src/core/lib/gpr/spinlock.h )
84 s.files += %w( src/core/lib/gpr/string.h )
85 s.files += %w( src/core/lib/gpr/string_windows.h )
Mark D. Rothdbdf4952018-01-18 11:21:12 -080086 s.files += %w( src/core/lib/gpr/time_precise.h )
Vijay Paib6cf1232018-01-25 21:02:26 -080087 s.files += %w( src/core/lib/gpr/tls.h )
88 s.files += %w( src/core/lib/gpr/tls_gcc.h )
89 s.files += %w( src/core/lib/gpr/tls_msvc.h )
90 s.files += %w( src/core/lib/gpr/tls_pthread.h )
Mark D. Rothdbdf4952018-01-18 11:21:12 -080091 s.files += %w( src/core/lib/gpr/tmpfile.h )
Vijay Paid4d0a302018-01-25 13:24:03 -080092 s.files += %w( src/core/lib/gpr/useful.h )
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -080093 s.files += %w( src/core/lib/gprpp/abstract.h )
94 s.files += %w( src/core/lib/gprpp/atomic.h )
95 s.files += %w( src/core/lib/gprpp/atomic_with_atm.h )
96 s.files += %w( src/core/lib/gprpp/atomic_with_std.h )
97 s.files += %w( src/core/lib/gprpp/manual_constructor.h )
98 s.files += %w( src/core/lib/gprpp/memory.h )
Vijay Paida693552018-02-16 22:59:03 -080099 s.files += %w( src/core/lib/gprpp/thd.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700100 s.files += %w( src/core/lib/profiling/timers.h )
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800101 s.files += %w( src/core/lib/gpr/alloc.cc )
102 s.files += %w( src/core/lib/gpr/arena.cc )
103 s.files += %w( src/core/lib/gpr/atm.cc )
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800104 s.files += %w( src/core/lib/gpr/cpu_iphone.cc )
105 s.files += %w( src/core/lib/gpr/cpu_linux.cc )
106 s.files += %w( src/core/lib/gpr/cpu_posix.cc )
107 s.files += %w( src/core/lib/gpr/cpu_windows.cc )
108 s.files += %w( src/core/lib/gpr/env_linux.cc )
109 s.files += %w( src/core/lib/gpr/env_posix.cc )
110 s.files += %w( src/core/lib/gpr/env_windows.cc )
111 s.files += %w( src/core/lib/gpr/fork.cc )
112 s.files += %w( src/core/lib/gpr/host_port.cc )
113 s.files += %w( src/core/lib/gpr/log.cc )
114 s.files += %w( src/core/lib/gpr/log_android.cc )
115 s.files += %w( src/core/lib/gpr/log_linux.cc )
116 s.files += %w( src/core/lib/gpr/log_posix.cc )
117 s.files += %w( src/core/lib/gpr/log_windows.cc )
118 s.files += %w( src/core/lib/gpr/mpscq.cc )
119 s.files += %w( src/core/lib/gpr/murmur_hash.cc )
120 s.files += %w( src/core/lib/gpr/string.cc )
121 s.files += %w( src/core/lib/gpr/string_posix.cc )
122 s.files += %w( src/core/lib/gpr/string_util_windows.cc )
123 s.files += %w( src/core/lib/gpr/string_windows.cc )
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800124 s.files += %w( src/core/lib/gpr/sync.cc )
125 s.files += %w( src/core/lib/gpr/sync_posix.cc )
126 s.files += %w( src/core/lib/gpr/sync_windows.cc )
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800127 s.files += %w( src/core/lib/gpr/time.cc )
128 s.files += %w( src/core/lib/gpr/time_posix.cc )
129 s.files += %w( src/core/lib/gpr/time_precise.cc )
130 s.files += %w( src/core/lib/gpr/time_windows.cc )
131 s.files += %w( src/core/lib/gpr/tls_pthread.cc )
132 s.files += %w( src/core/lib/gpr/tmpfile_msys.cc )
133 s.files += %w( src/core/lib/gpr/tmpfile_posix.cc )
134 s.files += %w( src/core/lib/gpr/tmpfile_windows.cc )
135 s.files += %w( src/core/lib/gpr/wrap_memcpy.cc )
Vijay Paida693552018-02-16 22:59:03 -0800136 s.files += %w( src/core/lib/gprpp/thd_posix.cc )
137 s.files += %w( src/core/lib/gprpp/thd_windows.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700138 s.files += %w( src/core/lib/profiling/basic_timers.cc )
139 s.files += %w( src/core/lib/profiling/stap_timers.cc )
Vijay Paiefce6e12017-09-14 09:07:50 -0700140 s.files += %w( include/grpc/impl/codegen/byte_buffer.h )
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700141 s.files += %w( include/grpc/impl/codegen/byte_buffer_reader.h )
Craig Tiller1298afd2016-02-09 12:29:17 -0800142 s.files += %w( include/grpc/impl/codegen/compression_types.h )
143 s.files += %w( include/grpc/impl/codegen/connectivity_state.h )
144 s.files += %w( include/grpc/impl/codegen/grpc_types.h )
145 s.files += %w( include/grpc/impl/codegen/propagation_bits.h )
Craig Tiller790f6af2017-03-30 12:39:24 -0700146 s.files += %w( include/grpc/impl/codegen/slice.h )
Craig Tiller1298afd2016-02-09 12:29:17 -0800147 s.files += %w( include/grpc/impl/codegen/status.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700148 s.files += %w( include/grpc/impl/codegen/atm.h )
149 s.files += %w( include/grpc/impl/codegen/atm_gcc_atomic.h )
150 s.files += %w( include/grpc/impl/codegen/atm_gcc_sync.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700151 s.files += %w( include/grpc/impl/codegen/atm_windows.h )
Ken Payson9714e032017-10-10 11:18:49 -0700152 s.files += %w( include/grpc/impl/codegen/fork.h )
Mark D. Roth4d2ea022016-12-12 07:12:27 -0800153 s.files += %w( include/grpc/impl/codegen/gpr_slice.h )
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700154 s.files += %w( include/grpc/impl/codegen/gpr_types.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700155 s.files += %w( include/grpc/impl/codegen/port_platform.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700156 s.files += %w( include/grpc/impl/codegen/sync.h )
yang-g9ff60312017-08-24 09:08:21 -0700157 s.files += %w( include/grpc/impl/codegen/sync_custom.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700158 s.files += %w( include/grpc/impl/codegen/sync_generic.h )
159 s.files += %w( include/grpc/impl/codegen/sync_posix.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700160 s.files += %w( include/grpc/impl/codegen/sync_windows.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700161 s.files += %w( include/grpc/grpc_security.h )
Vijay Pai42807252017-07-28 15:08:24 -0700162 s.files += %w( include/grpc/byte_buffer.h )
163 s.files += %w( include/grpc/byte_buffer_reader.h )
164 s.files += %w( include/grpc/compression.h )
Ken Payson9714e032017-10-10 11:18:49 -0700165 s.files += %w( include/grpc/fork.h )
Vijay Pai42807252017-07-28 15:08:24 -0700166 s.files += %w( include/grpc/grpc.h )
167 s.files += %w( include/grpc/grpc_posix.h )
168 s.files += %w( include/grpc/grpc_security_constants.h )
169 s.files += %w( include/grpc/load_reporting.h )
170 s.files += %w( include/grpc/slice.h )
171 s.files += %w( include/grpc/slice_buffer.h )
172 s.files += %w( include/grpc/status.h )
173 s.files += %w( include/grpc/support/workaround_list.h )
Craig Tiller03915e52016-04-07 09:15:10 -0700174 s.files += %w( include/grpc/census.h )
Vijay Pai42807252017-07-28 15:08:24 -0700175 s.files += %w( src/core/ext/transport/chttp2/transport/bin_decoder.h )
176 s.files += %w( src/core/ext/transport/chttp2/transport/bin_encoder.h )
177 s.files += %w( src/core/ext/transport/chttp2/transport/chttp2_transport.h )
Craig Tiller32736482017-10-12 22:02:28 -0700178 s.files += %w( src/core/ext/transport/chttp2/transport/flow_control.h )
Vijay Pai42807252017-07-28 15:08:24 -0700179 s.files += %w( src/core/ext/transport/chttp2/transport/frame.h )
180 s.files += %w( src/core/ext/transport/chttp2/transport/frame_data.h )
181 s.files += %w( src/core/ext/transport/chttp2/transport/frame_goaway.h )
182 s.files += %w( src/core/ext/transport/chttp2/transport/frame_ping.h )
183 s.files += %w( src/core/ext/transport/chttp2/transport/frame_rst_stream.h )
184 s.files += %w( src/core/ext/transport/chttp2/transport/frame_settings.h )
185 s.files += %w( src/core/ext/transport/chttp2/transport/frame_window_update.h )
186 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_encoder.h )
187 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_parser.h )
188 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_table.h )
189 s.files += %w( src/core/ext/transport/chttp2/transport/http2_settings.h )
190 s.files += %w( src/core/ext/transport/chttp2/transport/huffsyms.h )
191 s.files += %w( src/core/ext/transport/chttp2/transport/incoming_metadata.h )
192 s.files += %w( src/core/ext/transport/chttp2/transport/internal.h )
193 s.files += %w( src/core/ext/transport/chttp2/transport/stream_map.h )
194 s.files += %w( src/core/ext/transport/chttp2/transport/varint.h )
195 s.files += %w( src/core/ext/transport/chttp2/alpn/alpn.h )
196 s.files += %w( src/core/ext/filters/http/client/http_client_filter.h )
197 s.files += %w( src/core/ext/filters/http/message_compress/message_compress_filter.h )
198 s.files += %w( src/core/ext/filters/http/server/http_server_filter.h )
199 s.files += %w( src/core/lib/security/context/security_context.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800200 s.files += %w( src/core/lib/security/credentials/alts/alts_credentials.h )
Vijay Pai42807252017-07-28 15:08:24 -0700201 s.files += %w( src/core/lib/security/credentials/composite/composite_credentials.h )
202 s.files += %w( src/core/lib/security/credentials/credentials.h )
203 s.files += %w( src/core/lib/security/credentials/fake/fake_credentials.h )
204 s.files += %w( src/core/lib/security/credentials/google_default/google_default_credentials.h )
205 s.files += %w( src/core/lib/security/credentials/iam/iam_credentials.h )
206 s.files += %w( src/core/lib/security/credentials/jwt/json_token.h )
207 s.files += %w( src/core/lib/security/credentials/jwt/jwt_credentials.h )
208 s.files += %w( src/core/lib/security/credentials/jwt/jwt_verifier.h )
209 s.files += %w( src/core/lib/security/credentials/oauth2/oauth2_credentials.h )
210 s.files += %w( src/core/lib/security/credentials/plugin/plugin_credentials.h )
211 s.files += %w( src/core/lib/security/credentials/ssl/ssl_credentials.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800212 s.files += %w( src/core/lib/security/security_connector/alts_security_connector.h )
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800213 s.files += %w( src/core/lib/security/security_connector/security_connector.h )
Vijay Pai42807252017-07-28 15:08:24 -0700214 s.files += %w( src/core/lib/security/transport/auth_filters.h )
Vijay Pai42807252017-07-28 15:08:24 -0700215 s.files += %w( src/core/lib/security/transport/secure_endpoint.h )
Vijay Pai42807252017-07-28 15:08:24 -0700216 s.files += %w( src/core/lib/security/transport/security_handshaker.h )
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800217 s.files += %w( src/core/lib/security/transport/target_authority_table.h )
Vijay Pai42807252017-07-28 15:08:24 -0700218 s.files += %w( src/core/lib/security/transport/tsi_error.h )
219 s.files += %w( src/core/lib/security/util/json_util.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800220 s.files += %w( src/core/tsi/alts/crypt/gsec.h )
221 s.files += %w( src/core/tsi/alts/frame_protector/alts_counter.h )
222 s.files += %w( src/core/tsi/alts/frame_protector/alts_crypter.h )
223 s.files += %w( src/core/tsi/alts/frame_protector/alts_frame_protector.h )
224 s.files += %w( src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h )
225 s.files += %w( src/core/tsi/alts/frame_protector/frame_handler.h )
226 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_client.h )
227 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_event.h )
228 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_handshaker.h )
229 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h )
230 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h )
231 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h )
232 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h )
233 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h )
234 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h )
235 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h )
236 s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment.h )
237 s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h )
238 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_service_api.h )
239 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h )
240 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_utils.h )
241 s.files += %w( src/core/tsi/alts/handshaker/transport_security_common_api.h )
242 s.files += %w( src/core/tsi/alts/handshaker/altscontext.pb.h )
243 s.files += %w( src/core/tsi/alts/handshaker/handshaker.pb.h )
244 s.files += %w( src/core/tsi/alts/handshaker/transport_security_common.pb.h )
245 s.files += %w( third_party/nanopb/pb.h )
246 s.files += %w( third_party/nanopb/pb_common.h )
247 s.files += %w( third_party/nanopb/pb_decode.h )
248 s.files += %w( third_party/nanopb/pb_encode.h )
Vijay Pai42807252017-07-28 15:08:24 -0700249 s.files += %w( src/core/tsi/transport_security.h )
250 s.files += %w( src/core/tsi/transport_security_adapter.h )
251 s.files += %w( src/core/tsi/transport_security_interface.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800252 s.files += %w( src/core/ext/transport/chttp2/client/chttp2_connector.h )
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700253 s.files += %w( src/core/ext/filters/client_channel/backup_poller.h )
Vijay Pai42807252017-07-28 15:08:24 -0700254 s.files += %w( src/core/ext/filters/client_channel/client_channel.h )
255 s.files += %w( src/core/ext/filters/client_channel/client_channel_factory.h )
256 s.files += %w( src/core/ext/filters/client_channel/connector.h )
257 s.files += %w( src/core/ext/filters/client_channel/http_connect_handshaker.h )
258 s.files += %w( src/core/ext/filters/client_channel/http_proxy.h )
259 s.files += %w( src/core/ext/filters/client_channel/lb_policy.h )
260 s.files += %w( src/core/ext/filters/client_channel/lb_policy_factory.h )
261 s.files += %w( src/core/ext/filters/client_channel/lb_policy_registry.h )
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800262 s.files += %w( src/core/ext/filters/client_channel/method_params.h )
Vijay Pai42807252017-07-28 15:08:24 -0700263 s.files += %w( src/core/ext/filters/client_channel/parse_address.h )
264 s.files += %w( src/core/ext/filters/client_channel/proxy_mapper.h )
265 s.files += %w( src/core/ext/filters/client_channel/proxy_mapper_registry.h )
266 s.files += %w( src/core/ext/filters/client_channel/resolver.h )
267 s.files += %w( src/core/ext/filters/client_channel/resolver_factory.h )
268 s.files += %w( src/core/ext/filters/client_channel/resolver_registry.h )
269 s.files += %w( src/core/ext/filters/client_channel/retry_throttle.h )
Mark D. Roth718c8342018-02-28 13:00:04 -0800270 s.files += %w( src/core/ext/filters/client_channel/status_util.h )
Vijay Pai42807252017-07-28 15:08:24 -0700271 s.files += %w( src/core/ext/filters/client_channel/subchannel.h )
272 s.files += %w( src/core/ext/filters/client_channel/subchannel_index.h )
273 s.files += %w( src/core/ext/filters/client_channel/uri_parser.h )
274 s.files += %w( src/core/ext/filters/deadline/deadline_filter.h )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800275 s.files += %w( src/core/tsi/alts_transport_security.h )
276 s.files += %w( src/core/tsi/fake_transport_security.h )
277 s.files += %w( src/core/tsi/ssl_transport_security.h )
278 s.files += %w( src/core/tsi/ssl_types.h )
279 s.files += %w( src/core/tsi/transport_security_grpc.h )
280 s.files += %w( src/core/ext/transport/chttp2/server/chttp2_server.h )
Vijay Pai42807252017-07-28 15:08:24 -0700281 s.files += %w( src/core/ext/transport/inproc/inproc_transport.h )
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800282 s.files += %w( src/core/lib/avl/avl.h )
Craig Tiller2014a372017-07-21 15:36:11 -0700283 s.files += %w( src/core/lib/backoff/backoff.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700284 s.files += %w( src/core/lib/channel/channel_args.h )
285 s.files += %w( src/core/lib/channel/channel_stack.h )
286 s.files += %w( src/core/lib/channel/channel_stack_builder.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700287 s.files += %w( src/core/lib/channel/connected_channel.h )
288 s.files += %w( src/core/lib/channel/context.h )
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700289 s.files += %w( src/core/lib/channel/handshaker.h )
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800290 s.files += %w( src/core/lib/channel/handshaker_factory.h )
291 s.files += %w( src/core/lib/channel/handshaker_registry.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700292 s.files += %w( src/core/lib/compression/algorithm_metadata.h )
Muxi Yan92d1bc12017-09-16 10:09:58 -0700293 s.files += %w( src/core/lib/compression/compression_internal.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700294 s.files += %w( src/core/lib/compression/message_compress.h )
Muxi Yane87a7e12017-06-29 16:53:24 -0700295 s.files += %w( src/core/lib/compression/stream_compression.h )
Muxi Yanbf5484e2017-09-01 18:03:03 -0700296 s.files += %w( src/core/lib/compression/stream_compression_gzip.h )
297 s.files += %w( src/core/lib/compression/stream_compression_identity.h )
Craig Tiller6e739742017-08-31 11:22:52 -0700298 s.files += %w( src/core/lib/debug/stats.h )
299 s.files += %w( src/core/lib/debug/stats_data.h )
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800300 s.files += %w( src/core/lib/gprpp/debug_location.h )
301 s.files += %w( src/core/lib/gprpp/inlined_vector.h )
302 s.files += %w( src/core/lib/gprpp/orphanable.h )
303 s.files += %w( src/core/lib/gprpp/ref_counted.h )
304 s.files += %w( src/core/lib/gprpp/ref_counted_ptr.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700305 s.files += %w( src/core/lib/http/format_request.h )
306 s.files += %w( src/core/lib/http/httpcli.h )
307 s.files += %w( src/core/lib/http/parser.h )
Craig Tiller43c1b5f2017-10-02 14:42:49 -0700308 s.files += %w( src/core/lib/iomgr/block_annotate.h )
Mark D. Roth764cf042017-09-01 09:00:06 -0700309 s.files += %w( src/core/lib/iomgr/call_combiner.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700310 s.files += %w( src/core/lib/iomgr/closure.h )
Craig Tiller57726ca2016-09-12 11:59:45 -0700311 s.files += %w( src/core/lib/iomgr/combiner.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700312 s.files += %w( src/core/lib/iomgr/endpoint.h )
313 s.files += %w( src/core/lib/iomgr/endpoint_pair.h )
Craig Tiller27f59af2016-04-28 14:19:48 -0700314 s.files += %w( src/core/lib/iomgr/error.h )
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800315 s.files += %w( src/core/lib/iomgr/error_internal.h )
Craig Tillerc67cc992017-04-27 10:15:51 -0700316 s.files += %w( src/core/lib/iomgr/ev_epoll1_linux.h )
Craig Tillerf4360d72017-04-07 08:51:00 -0700317 s.files += %w( src/core/lib/iomgr/ev_epollex_linux.h )
Craig Tillerc67cc992017-04-27 10:15:51 -0700318 s.files += %w( src/core/lib/iomgr/ev_epollsig_linux.h )
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700319 s.files += %w( src/core/lib/iomgr/ev_poll_posix.h )
Craig Tiller8a034482016-03-28 16:09:04 -0700320 s.files += %w( src/core/lib/iomgr/ev_posix.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700321 s.files += %w( src/core/lib/iomgr/exec_ctx.h )
322 s.files += %w( src/core/lib/iomgr/executor.h )
Mark D. Rothf9bf4282017-08-03 14:47:23 -0700323 s.files += %w( src/core/lib/iomgr/gethostname.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700324 s.files += %w( src/core/lib/iomgr/iocp_windows.h )
325 s.files += %w( src/core/lib/iomgr/iomgr.h )
326 s.files += %w( src/core/lib/iomgr/iomgr_internal.h )
327 s.files += %w( src/core/lib/iomgr/iomgr_posix.h )
murgatroid99b8e07ad2017-07-18 13:20:55 -0700328 s.files += %w( src/core/lib/iomgr/iomgr_uv.h )
Craig Tiller819cd882017-04-25 13:18:22 -0700329 s.files += %w( src/core/lib/iomgr/is_epollexclusive_available.h )
Craig Tiller85178862016-05-18 16:09:16 -0700330 s.files += %w( src/core/lib/iomgr/load_file.h )
Craig Tiller376887d2017-04-06 08:27:03 -0700331 s.files += %w( src/core/lib/iomgr/lockfree_event.h )
Yuchen Zengf630ff22017-07-25 13:28:45 -0700332 s.files += %w( src/core/lib/iomgr/nameser.h )
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700333 s.files += %w( src/core/lib/iomgr/network_status_tracker.h )
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700334 s.files += %w( src/core/lib/iomgr/polling_entity.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700335 s.files += %w( src/core/lib/iomgr/pollset.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700336 s.files += %w( src/core/lib/iomgr/pollset_set.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700337 s.files += %w( src/core/lib/iomgr/pollset_set_windows.h )
murgatroid999030c812016-09-16 13:25:08 -0700338 s.files += %w( src/core/lib/iomgr/pollset_uv.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700339 s.files += %w( src/core/lib/iomgr/pollset_windows.h )
murgatroid9954070892016-08-08 17:01:18 -0700340 s.files += %w( src/core/lib/iomgr/port.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700341 s.files += %w( src/core/lib/iomgr/resolve_address.h )
Craig Tiller20afa3d2016-10-17 14:52:14 -0700342 s.files += %w( src/core/lib/iomgr/resource_quota.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700343 s.files += %w( src/core/lib/iomgr/sockaddr.h )
344 s.files += %w( src/core/lib/iomgr/sockaddr_posix.h )
345 s.files += %w( src/core/lib/iomgr/sockaddr_utils.h )
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700346 s.files += %w( src/core/lib/iomgr/sockaddr_windows.h )
Michael Warresc46b3eb2017-02-22 22:57:04 -0500347 s.files += %w( src/core/lib/iomgr/socket_factory_posix.h )
Yuchen Zengde3daf52016-10-13 17:26:26 -0700348 s.files += %w( src/core/lib/iomgr/socket_mutator.h )
murgatroid9979b32272016-08-08 13:38:30 -0700349 s.files += %w( src/core/lib/iomgr/socket_utils.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700350 s.files += %w( src/core/lib/iomgr/socket_utils_posix.h )
351 s.files += %w( src/core/lib/iomgr/socket_windows.h )
Craig Tiller819cd882017-04-25 13:18:22 -0700352 s.files += %w( src/core/lib/iomgr/sys_epoll_wrapper.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700353 s.files += %w( src/core/lib/iomgr/tcp_client.h )
Craig Tiller86958762016-09-23 12:05:34 -0700354 s.files += %w( src/core/lib/iomgr/tcp_client_posix.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700355 s.files += %w( src/core/lib/iomgr/tcp_posix.h )
356 s.files += %w( src/core/lib/iomgr/tcp_server.h )
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700357 s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix.h )
murgatroid999030c812016-09-16 13:25:08 -0700358 s.files += %w( src/core/lib/iomgr/tcp_uv.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700359 s.files += %w( src/core/lib/iomgr/tcp_windows.h )
360 s.files += %w( src/core/lib/iomgr/time_averaged_stats.h )
361 s.files += %w( src/core/lib/iomgr/timer.h )
murgatroid999030c812016-09-16 13:25:08 -0700362 s.files += %w( src/core/lib/iomgr/timer_generic.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700363 s.files += %w( src/core/lib/iomgr/timer_heap.h )
Craig Tillerc3571792017-05-02 12:33:38 -0700364 s.files += %w( src/core/lib/iomgr/timer_manager.h )
murgatroid999030c812016-09-16 13:25:08 -0700365 s.files += %w( src/core/lib/iomgr/timer_uv.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700366 s.files += %w( src/core/lib/iomgr/udp_server.h )
367 s.files += %w( src/core/lib/iomgr/unix_sockets_posix.h )
Ken Payson31caabd2016-08-06 21:27:29 -0700368 s.files += %w( src/core/lib/iomgr/wakeup_fd_cv.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700369 s.files += %w( src/core/lib/iomgr/wakeup_fd_pipe.h )
370 s.files += %w( src/core/lib/iomgr/wakeup_fd_posix.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700371 s.files += %w( src/core/lib/json/json.h )
372 s.files += %w( src/core/lib/json/json_common.h )
373 s.files += %w( src/core/lib/json/json_reader.h )
374 s.files += %w( src/core/lib/json/json_writer.h )
Craig Tiller790f6af2017-03-30 12:39:24 -0700375 s.files += %w( src/core/lib/slice/b64.h )
Craig Tillerc3350542016-10-26 16:19:01 -0700376 s.files += %w( src/core/lib/slice/percent_encoding.h )
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800377 s.files += %w( src/core/lib/slice/slice_hash_table.h )
Craig Tiller30d50fe2016-12-06 19:34:32 -0800378 s.files += %w( src/core/lib/slice/slice_internal.h )
Craig Tillerc3350542016-10-26 16:19:01 -0700379 s.files += %w( src/core/lib/slice/slice_string_helpers.h )
David Garcia Quintas396d49d2018-02-28 16:06:30 -0800380 s.files += %w( src/core/lib/slice/slice_weak_hash_table.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700381 s.files += %w( src/core/lib/surface/api_trace.h )
382 s.files += %w( src/core/lib/surface/call.h )
383 s.files += %w( src/core/lib/surface/call_test_only.h )
384 s.files += %w( src/core/lib/surface/channel.h )
385 s.files += %w( src/core/lib/surface/channel_init.h )
386 s.files += %w( src/core/lib/surface/channel_stack_type.h )
387 s.files += %w( src/core/lib/surface/completion_queue.h )
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700388 s.files += %w( src/core/lib/surface/completion_queue_factory.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700389 s.files += %w( src/core/lib/surface/event_string.h )
390 s.files += %w( src/core/lib/surface/init.h )
391 s.files += %w( src/core/lib/surface/lame_client.h )
392 s.files += %w( src/core/lib/surface/server.h )
Craig Tiller2d9f8e82017-01-10 08:48:48 -0800393 s.files += %w( src/core/lib/surface/validate_metadata.h )
Craig Tiller9e0066b2016-10-20 14:04:18 -0700394 s.files += %w( src/core/lib/transport/bdp_estimator.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700395 s.files += %w( src/core/lib/transport/byte_stream.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700396 s.files += %w( src/core/lib/transport/connectivity_state.h )
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800397 s.files += %w( src/core/lib/transport/error_utils.h )
398 s.files += %w( src/core/lib/transport/http2_errors.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700399 s.files += %w( src/core/lib/transport/metadata.h )
400 s.files += %w( src/core/lib/transport/metadata_batch.h )
Craig Tillerdd2fa642016-10-20 15:46:32 -0700401 s.files += %w( src/core/lib/transport/pid_controller.h )
Mark D. Rothea846a02016-11-03 11:32:54 -0700402 s.files += %w( src/core/lib/transport/service_config.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700403 s.files += %w( src/core/lib/transport/static_metadata.h )
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800404 s.files += %w( src/core/lib/transport/status_conversion.h )
Mark D. Roth718c8342018-02-28 13:00:04 -0800405 s.files += %w( src/core/lib/transport/status_metadata.h )
Robbie Shade710d2422016-07-13 15:15:38 -0400406 s.files += %w( src/core/lib/transport/timeout_encoding.h )
Craig Tillerf23078c2016-03-25 17:07:29 -0700407 s.files += %w( src/core/lib/transport/transport.h )
408 s.files += %w( src/core/lib/transport/transport_impl.h )
Craig Tiller1f477302017-05-05 11:01:25 -0700409 s.files += %w( src/core/lib/debug/trace.h )
Mark D. Roth09e458c2017-05-02 08:13:26 -0700410 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h )
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700411 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h )
Mark D. Roth09e458c2017-05-02 08:13:26 -0700412 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h )
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700413 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h )
414 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 -0700415 s.files += %w( src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h )
Mark D. Roth5e9848e2017-10-06 13:59:32 -0700416 s.files += %w( src/core/ext/filters/client_channel/lb_policy/subchannel_list.h )
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700417 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h )
418 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h )
David Garcia Quintas0822d332017-09-06 17:40:42 -0700419 s.files += %w( src/core/ext/filters/load_reporting/server_load_reporting_filter.h )
420 s.files += %w( src/core/ext/filters/load_reporting/server_load_reporting_plugin.h )
Craig Tiller6d4894e2017-03-31 17:22:06 -0700421 s.files += %w( src/core/ext/filters/max_age/max_age_filter.h )
Craig Tiller9b3648a2017-04-03 12:25:19 -0700422 s.files += %w( src/core/ext/filters/message_size/message_size_filter.h )
Muxi Yan29ff4662017-05-15 10:27:55 -0700423 s.files += %w( src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h )
424 s.files += %w( src/core/ext/filters/workarounds/workaround_utils.h )
Yash Tibrewal83062842017-09-21 18:56:08 -0700425 s.files += %w( src/core/lib/surface/init.cc )
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800426 s.files += %w( src/core/lib/avl/avl.cc )
Craig Tillerd48bd072017-10-06 11:25:14 -0700427 s.files += %w( src/core/lib/backoff/backoff.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700428 s.files += %w( src/core/lib/channel/channel_args.cc )
429 s.files += %w( src/core/lib/channel/channel_stack.cc )
430 s.files += %w( src/core/lib/channel/channel_stack_builder.cc )
431 s.files += %w( src/core/lib/channel/connected_channel.cc )
432 s.files += %w( src/core/lib/channel/handshaker.cc )
433 s.files += %w( src/core/lib/channel/handshaker_factory.cc )
434 s.files += %w( src/core/lib/channel/handshaker_registry.cc )
435 s.files += %w( src/core/lib/compression/compression.cc )
Muxi Yan03fc8572017-10-06 18:47:09 -0700436 s.files += %w( src/core/lib/compression/compression_internal.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700437 s.files += %w( src/core/lib/compression/message_compress.cc )
438 s.files += %w( src/core/lib/compression/stream_compression.cc )
Yash Tibrewalbc460fa2017-10-02 17:42:41 -0700439 s.files += %w( src/core/lib/compression/stream_compression_gzip.cc )
440 s.files += %w( src/core/lib/compression/stream_compression_identity.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700441 s.files += %w( src/core/lib/debug/stats.cc )
442 s.files += %w( src/core/lib/debug/stats_data.cc )
443 s.files += %w( src/core/lib/http/format_request.cc )
444 s.files += %w( src/core/lib/http/httpcli.cc )
445 s.files += %w( src/core/lib/http/parser.cc )
446 s.files += %w( src/core/lib/iomgr/call_combiner.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700447 s.files += %w( src/core/lib/iomgr/combiner.cc )
448 s.files += %w( src/core/lib/iomgr/endpoint.cc )
449 s.files += %w( src/core/lib/iomgr/endpoint_pair_posix.cc )
450 s.files += %w( src/core/lib/iomgr/endpoint_pair_uv.cc )
451 s.files += %w( src/core/lib/iomgr/endpoint_pair_windows.cc )
452 s.files += %w( src/core/lib/iomgr/error.cc )
453 s.files += %w( src/core/lib/iomgr/ev_epoll1_linux.cc )
454 s.files += %w( src/core/lib/iomgr/ev_epollex_linux.cc )
455 s.files += %w( src/core/lib/iomgr/ev_epollsig_linux.cc )
456 s.files += %w( src/core/lib/iomgr/ev_poll_posix.cc )
457 s.files += %w( src/core/lib/iomgr/ev_posix.cc )
458 s.files += %w( src/core/lib/iomgr/ev_windows.cc )
459 s.files += %w( src/core/lib/iomgr/exec_ctx.cc )
460 s.files += %w( src/core/lib/iomgr/executor.cc )
Nicolas "Pixel" Noble18a68372017-11-20 23:33:22 +0100461 s.files += %w( src/core/lib/iomgr/fork_posix.cc )
462 s.files += %w( src/core/lib/iomgr/fork_windows.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700463 s.files += %w( src/core/lib/iomgr/gethostname_fallback.cc )
464 s.files += %w( src/core/lib/iomgr/gethostname_host_name_max.cc )
465 s.files += %w( src/core/lib/iomgr/gethostname_sysconf.cc )
466 s.files += %w( src/core/lib/iomgr/iocp_windows.cc )
467 s.files += %w( src/core/lib/iomgr/iomgr.cc )
468 s.files += %w( src/core/lib/iomgr/iomgr_posix.cc )
469 s.files += %w( src/core/lib/iomgr/iomgr_uv.cc )
470 s.files += %w( src/core/lib/iomgr/iomgr_windows.cc )
471 s.files += %w( src/core/lib/iomgr/is_epollexclusive_available.cc )
472 s.files += %w( src/core/lib/iomgr/load_file.cc )
473 s.files += %w( src/core/lib/iomgr/lockfree_event.cc )
474 s.files += %w( src/core/lib/iomgr/network_status_tracker.cc )
475 s.files += %w( src/core/lib/iomgr/polling_entity.cc )
476 s.files += %w( src/core/lib/iomgr/pollset_set_uv.cc )
477 s.files += %w( src/core/lib/iomgr/pollset_set_windows.cc )
478 s.files += %w( src/core/lib/iomgr/pollset_uv.cc )
479 s.files += %w( src/core/lib/iomgr/pollset_windows.cc )
480 s.files += %w( src/core/lib/iomgr/resolve_address_posix.cc )
481 s.files += %w( src/core/lib/iomgr/resolve_address_uv.cc )
482 s.files += %w( src/core/lib/iomgr/resolve_address_windows.cc )
483 s.files += %w( src/core/lib/iomgr/resource_quota.cc )
484 s.files += %w( src/core/lib/iomgr/sockaddr_utils.cc )
485 s.files += %w( src/core/lib/iomgr/socket_factory_posix.cc )
486 s.files += %w( src/core/lib/iomgr/socket_mutator.cc )
487 s.files += %w( src/core/lib/iomgr/socket_utils_common_posix.cc )
488 s.files += %w( src/core/lib/iomgr/socket_utils_linux.cc )
489 s.files += %w( src/core/lib/iomgr/socket_utils_posix.cc )
490 s.files += %w( src/core/lib/iomgr/socket_utils_uv.cc )
Yash Tibrewal26c78032017-09-28 14:34:43 -0700491 s.files += %w( src/core/lib/iomgr/socket_utils_windows.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700492 s.files += %w( src/core/lib/iomgr/socket_windows.cc )
493 s.files += %w( src/core/lib/iomgr/tcp_client_posix.cc )
494 s.files += %w( src/core/lib/iomgr/tcp_client_uv.cc )
495 s.files += %w( src/core/lib/iomgr/tcp_client_windows.cc )
496 s.files += %w( src/core/lib/iomgr/tcp_posix.cc )
497 s.files += %w( src/core/lib/iomgr/tcp_server_posix.cc )
498 s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix_common.cc )
499 s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc )
500 s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc )
501 s.files += %w( src/core/lib/iomgr/tcp_server_uv.cc )
502 s.files += %w( src/core/lib/iomgr/tcp_server_windows.cc )
503 s.files += %w( src/core/lib/iomgr/tcp_uv.cc )
504 s.files += %w( src/core/lib/iomgr/tcp_windows.cc )
505 s.files += %w( src/core/lib/iomgr/time_averaged_stats.cc )
506 s.files += %w( src/core/lib/iomgr/timer_generic.cc )
507 s.files += %w( src/core/lib/iomgr/timer_heap.cc )
508 s.files += %w( src/core/lib/iomgr/timer_manager.cc )
509 s.files += %w( src/core/lib/iomgr/timer_uv.cc )
510 s.files += %w( src/core/lib/iomgr/udp_server.cc )
511 s.files += %w( src/core/lib/iomgr/unix_sockets_posix.cc )
512 s.files += %w( src/core/lib/iomgr/unix_sockets_posix_noop.cc )
513 s.files += %w( src/core/lib/iomgr/wakeup_fd_cv.cc )
514 s.files += %w( src/core/lib/iomgr/wakeup_fd_eventfd.cc )
515 s.files += %w( src/core/lib/iomgr/wakeup_fd_nospecial.cc )
516 s.files += %w( src/core/lib/iomgr/wakeup_fd_pipe.cc )
517 s.files += %w( src/core/lib/iomgr/wakeup_fd_posix.cc )
518 s.files += %w( src/core/lib/json/json.cc )
519 s.files += %w( src/core/lib/json/json_reader.cc )
520 s.files += %w( src/core/lib/json/json_string.cc )
521 s.files += %w( src/core/lib/json/json_writer.cc )
522 s.files += %w( src/core/lib/slice/b64.cc )
523 s.files += %w( src/core/lib/slice/percent_encoding.cc )
524 s.files += %w( src/core/lib/slice/slice.cc )
525 s.files += %w( src/core/lib/slice/slice_buffer.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700526 s.files += %w( src/core/lib/slice/slice_intern.cc )
527 s.files += %w( src/core/lib/slice/slice_string_helpers.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700528 s.files += %w( src/core/lib/surface/api_trace.cc )
529 s.files += %w( src/core/lib/surface/byte_buffer.cc )
530 s.files += %w( src/core/lib/surface/byte_buffer_reader.cc )
531 s.files += %w( src/core/lib/surface/call.cc )
532 s.files += %w( src/core/lib/surface/call_details.cc )
533 s.files += %w( src/core/lib/surface/call_log_batch.cc )
534 s.files += %w( src/core/lib/surface/channel.cc )
535 s.files += %w( src/core/lib/surface/channel_init.cc )
536 s.files += %w( src/core/lib/surface/channel_ping.cc )
537 s.files += %w( src/core/lib/surface/channel_stack_type.cc )
538 s.files += %w( src/core/lib/surface/completion_queue.cc )
539 s.files += %w( src/core/lib/surface/completion_queue_factory.cc )
540 s.files += %w( src/core/lib/surface/event_string.cc )
Craig Tiller8ebb5442017-04-07 16:01:55 -0700541 s.files += %w( src/core/lib/surface/lame_client.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700542 s.files += %w( src/core/lib/surface/metadata_array.cc )
543 s.files += %w( src/core/lib/surface/server.cc )
544 s.files += %w( src/core/lib/surface/validate_metadata.cc )
545 s.files += %w( src/core/lib/surface/version.cc )
546 s.files += %w( src/core/lib/transport/bdp_estimator.cc )
547 s.files += %w( src/core/lib/transport/byte_stream.cc )
548 s.files += %w( src/core/lib/transport/connectivity_state.cc )
549 s.files += %w( src/core/lib/transport/error_utils.cc )
550 s.files += %w( src/core/lib/transport/metadata.cc )
551 s.files += %w( src/core/lib/transport/metadata_batch.cc )
552 s.files += %w( src/core/lib/transport/pid_controller.cc )
553 s.files += %w( src/core/lib/transport/service_config.cc )
554 s.files += %w( src/core/lib/transport/static_metadata.cc )
555 s.files += %w( src/core/lib/transport/status_conversion.cc )
Mark D. Roth718c8342018-02-28 13:00:04 -0800556 s.files += %w( src/core/lib/transport/status_metadata.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700557 s.files += %w( src/core/lib/transport/timeout_encoding.cc )
558 s.files += %w( src/core/lib/transport/transport.cc )
559 s.files += %w( src/core/lib/transport/transport_op_string.cc )
560 s.files += %w( src/core/lib/debug/trace.cc )
561 s.files += %w( src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc )
562 s.files += %w( src/core/ext/transport/chttp2/transport/bin_decoder.cc )
563 s.files += %w( src/core/ext/transport/chttp2/transport/bin_encoder.cc )
564 s.files += %w( src/core/ext/transport/chttp2/transport/chttp2_plugin.cc )
565 s.files += %w( src/core/ext/transport/chttp2/transport/chttp2_transport.cc )
566 s.files += %w( src/core/ext/transport/chttp2/transport/flow_control.cc )
567 s.files += %w( src/core/ext/transport/chttp2/transport/frame_data.cc )
568 s.files += %w( src/core/ext/transport/chttp2/transport/frame_goaway.cc )
569 s.files += %w( src/core/ext/transport/chttp2/transport/frame_ping.cc )
570 s.files += %w( src/core/ext/transport/chttp2/transport/frame_rst_stream.cc )
571 s.files += %w( src/core/ext/transport/chttp2/transport/frame_settings.cc )
572 s.files += %w( src/core/ext/transport/chttp2/transport/frame_window_update.cc )
573 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_encoder.cc )
574 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_parser.cc )
575 s.files += %w( src/core/ext/transport/chttp2/transport/hpack_table.cc )
576 s.files += %w( src/core/ext/transport/chttp2/transport/http2_settings.cc )
577 s.files += %w( src/core/ext/transport/chttp2/transport/huffsyms.cc )
578 s.files += %w( src/core/ext/transport/chttp2/transport/incoming_metadata.cc )
579 s.files += %w( src/core/ext/transport/chttp2/transport/parsing.cc )
580 s.files += %w( src/core/ext/transport/chttp2/transport/stream_lists.cc )
581 s.files += %w( src/core/ext/transport/chttp2/transport/stream_map.cc )
582 s.files += %w( src/core/ext/transport/chttp2/transport/varint.cc )
583 s.files += %w( src/core/ext/transport/chttp2/transport/writing.cc )
584 s.files += %w( src/core/ext/transport/chttp2/alpn/alpn.cc )
585 s.files += %w( src/core/ext/filters/http/client/http_client_filter.cc )
586 s.files += %w( src/core/ext/filters/http/http_filters_plugin.cc )
587 s.files += %w( src/core/ext/filters/http/message_compress/message_compress_filter.cc )
588 s.files += %w( src/core/ext/filters/http/server/http_server_filter.cc )
589 s.files += %w( src/core/lib/http/httpcli_security_connector.cc )
590 s.files += %w( src/core/lib/security/context/security_context.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800591 s.files += %w( src/core/lib/security/credentials/alts/alts_credentials.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700592 s.files += %w( src/core/lib/security/credentials/composite/composite_credentials.cc )
593 s.files += %w( src/core/lib/security/credentials/credentials.cc )
594 s.files += %w( src/core/lib/security/credentials/credentials_metadata.cc )
595 s.files += %w( src/core/lib/security/credentials/fake/fake_credentials.cc )
596 s.files += %w( src/core/lib/security/credentials/google_default/credentials_generic.cc )
597 s.files += %w( src/core/lib/security/credentials/google_default/google_default_credentials.cc )
598 s.files += %w( src/core/lib/security/credentials/iam/iam_credentials.cc )
599 s.files += %w( src/core/lib/security/credentials/jwt/json_token.cc )
600 s.files += %w( src/core/lib/security/credentials/jwt/jwt_credentials.cc )
601 s.files += %w( src/core/lib/security/credentials/jwt/jwt_verifier.cc )
602 s.files += %w( src/core/lib/security/credentials/oauth2/oauth2_credentials.cc )
603 s.files += %w( src/core/lib/security/credentials/plugin/plugin_credentials.cc )
604 s.files += %w( src/core/lib/security/credentials/ssl/ssl_credentials.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800605 s.files += %w( src/core/lib/security/security_connector/alts_security_connector.cc )
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800606 s.files += %w( src/core/lib/security/security_connector/security_connector.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700607 s.files += %w( src/core/lib/security/transport/client_auth_filter.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700608 s.files += %w( src/core/lib/security/transport/secure_endpoint.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700609 s.files += %w( src/core/lib/security/transport/security_handshaker.cc )
610 s.files += %w( src/core/lib/security/transport/server_auth_filter.cc )
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800611 s.files += %w( src/core/lib/security/transport/target_authority_table.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700612 s.files += %w( src/core/lib/security/transport/tsi_error.cc )
613 s.files += %w( src/core/lib/security/util/json_util.cc )
614 s.files += %w( src/core/lib/surface/init_secure.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800615 s.files += %w( src/core/tsi/alts/crypt/aes_gcm.cc )
616 s.files += %w( src/core/tsi/alts/crypt/gsec.cc )
617 s.files += %w( src/core/tsi/alts/frame_protector/alts_counter.cc )
618 s.files += %w( src/core/tsi/alts/frame_protector/alts_crypter.cc )
619 s.files += %w( src/core/tsi/alts/frame_protector/alts_frame_protector.cc )
620 s.files += %w( src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc )
621 s.files += %w( src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc )
622 s.files += %w( src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc )
623 s.files += %w( src/core/tsi/alts/frame_protector/frame_handler.cc )
624 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_client.cc )
625 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_event.cc )
626 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc )
627 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc )
628 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc )
629 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc )
630 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc )
631 s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc )
632 s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment.cc )
633 s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc )
634 s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc )
635 s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc )
636 s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc )
637 s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc )
638 s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc )
639 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc )
640 s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc )
641 s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_utils.cc )
642 s.files += %w( src/core/tsi/alts/handshaker/transport_security_common_api.cc )
643 s.files += %w( src/core/tsi/alts/handshaker/altscontext.pb.c )
644 s.files += %w( src/core/tsi/alts/handshaker/handshaker.pb.c )
645 s.files += %w( src/core/tsi/alts/handshaker/transport_security_common.pb.c )
646 s.files += %w( third_party/nanopb/pb_common.c )
647 s.files += %w( third_party/nanopb/pb_decode.c )
648 s.files += %w( third_party/nanopb/pb_encode.c )
Yash Tibrewal83062842017-09-21 18:56:08 -0700649 s.files += %w( src/core/tsi/transport_security.cc )
650 s.files += %w( src/core/tsi/transport_security_adapter.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800651 s.files += %w( src/core/ext/transport/chttp2/client/insecure/channel_create.cc )
652 s.files += %w( src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc )
653 s.files += %w( src/core/ext/transport/chttp2/client/chttp2_connector.cc )
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700654 s.files += %w( src/core/ext/filters/client_channel/backup_poller.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700655 s.files += %w( src/core/ext/filters/client_channel/channel_connectivity.cc )
656 s.files += %w( src/core/ext/filters/client_channel/client_channel.cc )
657 s.files += %w( src/core/ext/filters/client_channel/client_channel_factory.cc )
658 s.files += %w( src/core/ext/filters/client_channel/client_channel_plugin.cc )
659 s.files += %w( src/core/ext/filters/client_channel/connector.cc )
660 s.files += %w( src/core/ext/filters/client_channel/http_connect_handshaker.cc )
661 s.files += %w( src/core/ext/filters/client_channel/http_proxy.cc )
662 s.files += %w( src/core/ext/filters/client_channel/lb_policy.cc )
663 s.files += %w( src/core/ext/filters/client_channel/lb_policy_factory.cc )
664 s.files += %w( src/core/ext/filters/client_channel/lb_policy_registry.cc )
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800665 s.files += %w( src/core/ext/filters/client_channel/method_params.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700666 s.files += %w( src/core/ext/filters/client_channel/parse_address.cc )
667 s.files += %w( src/core/ext/filters/client_channel/proxy_mapper.cc )
668 s.files += %w( src/core/ext/filters/client_channel/proxy_mapper_registry.cc )
669 s.files += %w( src/core/ext/filters/client_channel/resolver.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700670 s.files += %w( src/core/ext/filters/client_channel/resolver_registry.cc )
671 s.files += %w( src/core/ext/filters/client_channel/retry_throttle.cc )
Mark D. Roth718c8342018-02-28 13:00:04 -0800672 s.files += %w( src/core/ext/filters/client_channel/status_util.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700673 s.files += %w( src/core/ext/filters/client_channel/subchannel.cc )
674 s.files += %w( src/core/ext/filters/client_channel/subchannel_index.cc )
675 s.files += %w( src/core/ext/filters/client_channel/uri_parser.cc )
676 s.files += %w( src/core/ext/filters/deadline/deadline_filter.cc )
Yihua Zhangeaf64862018-03-06 21:40:45 -0800677 s.files += %w( src/core/tsi/alts_transport_security.cc )
678 s.files += %w( src/core/tsi/fake_transport_security.cc )
679 s.files += %w( src/core/tsi/ssl_transport_security.cc )
680 s.files += %w( src/core/tsi/transport_security_grpc.cc )
681 s.files += %w( src/core/ext/transport/chttp2/server/chttp2_server.cc )
682 s.files += %w( src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700683 s.files += %w( src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc )
684 s.files += %w( src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700685 s.files += %w( src/core/ext/transport/inproc/inproc_plugin.cc )
686 s.files += %w( src/core/ext/transport/inproc/inproc_transport.cc )
687 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc )
688 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc )
689 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc )
690 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc )
691 s.files += %w( src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc )
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700692 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 -0700693 s.files += %w( src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc )
694 s.files += %w( src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc )
Mark D. Roth5e9848e2017-10-06 13:59:32 -0700695 s.files += %w( src/core/ext/filters/client_channel/lb_policy/subchannel_list.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700696 s.files += %w( src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc )
697 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc )
698 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc )
699 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc )
700 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc )
701 s.files += %w( src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc )
702 s.files += %w( src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc )
703 s.files += %w( src/core/ext/filters/load_reporting/server_load_reporting_filter.cc )
704 s.files += %w( src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700705 s.files += %w( src/core/ext/census/grpc_context.cc )
Yash Tibrewal83062842017-09-21 18:56:08 -0700706 s.files += %w( src/core/ext/filters/max_age/max_age_filter.cc )
707 s.files += %w( src/core/ext/filters/message_size/message_size_filter.cc )
708 s.files += %w( src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc )
709 s.files += %w( src/core/ext/filters/workarounds/workaround_utils.cc )
Yash Tibrewal1c9b5842017-09-21 15:49:55 -0700710 s.files += %w( src/core/plugin_registry/grpc_plugin_registry.cc )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100711 s.files += %w( third_party/boringssl/crypto/asn1/asn1_locl.h )
712 s.files += %w( third_party/boringssl/crypto/bio/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100713 s.files += %w( third_party/boringssl/crypto/bytestring/internal.h )
Matt Kwonga110c742017-09-22 14:31:22 -0700714 s.files += %w( third_party/boringssl/crypto/cipher_extra/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100715 s.files += %w( third_party/boringssl/crypto/conf/conf_def.h )
716 s.files += %w( third_party/boringssl/crypto/conf/internal.h )
Matt Kwonga110c742017-09-22 14:31:22 -0700717 s.files += %w( third_party/boringssl/crypto/err/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100718 s.files += %w( third_party/boringssl/crypto/evp/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800719 s.files += %w( third_party/boringssl/crypto/fipsmodule/aes/aes.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700720 s.files += %w( third_party/boringssl/crypto/fipsmodule/aes/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800721 s.files += %w( third_party/boringssl/crypto/fipsmodule/aes/key_wrap.c )
722 s.files += %w( third_party/boringssl/crypto/fipsmodule/aes/mode_wrappers.c )
723 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/add.c )
724 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/asm/x86_64-gcc.c )
725 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/bn.c )
726 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/bytes.c )
727 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/cmp.c )
728 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/ctx.c )
729 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/div.c )
730 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c )
731 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/gcd.c )
732 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/generic.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700733 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800734 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/jacobi.c )
735 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/montgomery.c )
736 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/montgomery_inv.c )
737 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/mul.c )
738 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/prime.c )
739 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/random.c )
740 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700741 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800742 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/shift.c )
743 s.files += %w( third_party/boringssl/crypto/fipsmodule/bn/sqrt.c )
744 s.files += %w( third_party/boringssl/crypto/fipsmodule/cipher/aead.c )
745 s.files += %w( third_party/boringssl/crypto/fipsmodule/cipher/cipher.c )
746 s.files += %w( third_party/boringssl/crypto/fipsmodule/cipher/e_aes.c )
747 s.files += %w( third_party/boringssl/crypto/fipsmodule/cipher/e_des.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700748 s.files += %w( third_party/boringssl/crypto/fipsmodule/cipher/internal.h )
749 s.files += %w( third_party/boringssl/crypto/fipsmodule/delocate.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800750 s.files += %w( third_party/boringssl/crypto/fipsmodule/des/des.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700751 s.files += %w( third_party/boringssl/crypto/fipsmodule/des/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800752 s.files += %w( third_party/boringssl/crypto/fipsmodule/digest/digest.c )
753 s.files += %w( third_party/boringssl/crypto/fipsmodule/digest/digests.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700754 s.files += %w( third_party/boringssl/crypto/fipsmodule/digest/internal.h )
755 s.files += %w( third_party/boringssl/crypto/fipsmodule/digest/md32_common.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800756 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/ec.c )
757 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/ec_key.c )
758 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700759 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800760 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/oct.c )
761 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/p224-64.c )
762 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/p256-64.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700763 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800764 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700765 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800766 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/simple.c )
767 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/util-64.c )
768 s.files += %w( third_party/boringssl/crypto/fipsmodule/ec/wnaf.c )
769 s.files += %w( third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c )
770 s.files += %w( third_party/boringssl/crypto/fipsmodule/hmac/hmac.c )
771 s.files += %w( third_party/boringssl/crypto/fipsmodule/md4/md4.c )
772 s.files += %w( third_party/boringssl/crypto/fipsmodule/md5/md5.c )
773 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/cbc.c )
774 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/cfb.c )
775 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/ctr.c )
776 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/gcm.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700777 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800778 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/ofb.c )
779 s.files += %w( third_party/boringssl/crypto/fipsmodule/modes/polyval.c )
780 s.files += %w( third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700781 s.files += %w( third_party/boringssl/crypto/fipsmodule/rand/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800782 s.files += %w( third_party/boringssl/crypto/fipsmodule/rand/rand.c )
783 s.files += %w( third_party/boringssl/crypto/fipsmodule/rand/urandom.c )
784 s.files += %w( third_party/boringssl/crypto/fipsmodule/rsa/blinding.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700785 s.files += %w( third_party/boringssl/crypto/fipsmodule/rsa/internal.h )
Matt Kwong77f77f72018-02-23 14:22:39 -0800786 s.files += %w( third_party/boringssl/crypto/fipsmodule/rsa/padding.c )
787 s.files += %w( third_party/boringssl/crypto/fipsmodule/rsa/rsa.c )
788 s.files += %w( third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c )
789 s.files += %w( third_party/boringssl/crypto/fipsmodule/sha/sha1-altivec.c )
790 s.files += %w( third_party/boringssl/crypto/fipsmodule/sha/sha1.c )
791 s.files += %w( third_party/boringssl/crypto/fipsmodule/sha/sha256.c )
792 s.files += %w( third_party/boringssl/crypto/fipsmodule/sha/sha512.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100793 s.files += %w( third_party/boringssl/crypto/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100794 s.files += %w( third_party/boringssl/crypto/obj/obj_dat.h )
Matt Kwonga110c742017-09-22 14:31:22 -0700795 s.files += %w( third_party/boringssl/crypto/pkcs7/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100796 s.files += %w( third_party/boringssl/crypto/pkcs8/internal.h )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800797 s.files += %w( third_party/boringssl/crypto/poly1305/internal.h )
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700798 s.files += %w( third_party/boringssl/crypto/pool/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100799 s.files += %w( third_party/boringssl/crypto/x509/charmap.h )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800800 s.files += %w( third_party/boringssl/crypto/x509/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100801 s.files += %w( third_party/boringssl/crypto/x509/vpm_int.h )
802 s.files += %w( third_party/boringssl/crypto/x509v3/ext_dat.h )
803 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_int.h )
804 s.files += %w( third_party/boringssl/include/openssl/aead.h )
805 s.files += %w( third_party/boringssl/include/openssl/aes.h )
806 s.files += %w( third_party/boringssl/include/openssl/arm_arch.h )
807 s.files += %w( third_party/boringssl/include/openssl/asn1.h )
808 s.files += %w( third_party/boringssl/include/openssl/asn1_mac.h )
809 s.files += %w( third_party/boringssl/include/openssl/asn1t.h )
810 s.files += %w( third_party/boringssl/include/openssl/base.h )
811 s.files += %w( third_party/boringssl/include/openssl/base64.h )
812 s.files += %w( third_party/boringssl/include/openssl/bio.h )
813 s.files += %w( third_party/boringssl/include/openssl/blowfish.h )
814 s.files += %w( third_party/boringssl/include/openssl/bn.h )
815 s.files += %w( third_party/boringssl/include/openssl/buf.h )
816 s.files += %w( third_party/boringssl/include/openssl/buffer.h )
817 s.files += %w( third_party/boringssl/include/openssl/bytestring.h )
818 s.files += %w( third_party/boringssl/include/openssl/cast.h )
819 s.files += %w( third_party/boringssl/include/openssl/chacha.h )
820 s.files += %w( third_party/boringssl/include/openssl/cipher.h )
821 s.files += %w( third_party/boringssl/include/openssl/cmac.h )
822 s.files += %w( third_party/boringssl/include/openssl/conf.h )
823 s.files += %w( third_party/boringssl/include/openssl/cpu.h )
824 s.files += %w( third_party/boringssl/include/openssl/crypto.h )
825 s.files += %w( third_party/boringssl/include/openssl/curve25519.h )
826 s.files += %w( third_party/boringssl/include/openssl/des.h )
827 s.files += %w( third_party/boringssl/include/openssl/dh.h )
828 s.files += %w( third_party/boringssl/include/openssl/digest.h )
829 s.files += %w( third_party/boringssl/include/openssl/dsa.h )
830 s.files += %w( third_party/boringssl/include/openssl/dtls1.h )
831 s.files += %w( third_party/boringssl/include/openssl/ec.h )
832 s.files += %w( third_party/boringssl/include/openssl/ec_key.h )
833 s.files += %w( third_party/boringssl/include/openssl/ecdh.h )
834 s.files += %w( third_party/boringssl/include/openssl/ecdsa.h )
835 s.files += %w( third_party/boringssl/include/openssl/engine.h )
836 s.files += %w( third_party/boringssl/include/openssl/err.h )
837 s.files += %w( third_party/boringssl/include/openssl/evp.h )
838 s.files += %w( third_party/boringssl/include/openssl/ex_data.h )
839 s.files += %w( third_party/boringssl/include/openssl/hkdf.h )
840 s.files += %w( third_party/boringssl/include/openssl/hmac.h )
Matt Kwonga110c742017-09-22 14:31:22 -0700841 s.files += %w( third_party/boringssl/include/openssl/is_boringssl.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100842 s.files += %w( third_party/boringssl/include/openssl/lhash.h )
843 s.files += %w( third_party/boringssl/include/openssl/lhash_macros.h )
844 s.files += %w( third_party/boringssl/include/openssl/md4.h )
845 s.files += %w( third_party/boringssl/include/openssl/md5.h )
846 s.files += %w( third_party/boringssl/include/openssl/mem.h )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800847 s.files += %w( third_party/boringssl/include/openssl/nid.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100848 s.files += %w( third_party/boringssl/include/openssl/obj.h )
849 s.files += %w( third_party/boringssl/include/openssl/obj_mac.h )
850 s.files += %w( third_party/boringssl/include/openssl/objects.h )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800851 s.files += %w( third_party/boringssl/include/openssl/opensslconf.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100852 s.files += %w( third_party/boringssl/include/openssl/opensslv.h )
853 s.files += %w( third_party/boringssl/include/openssl/ossl_typ.h )
854 s.files += %w( third_party/boringssl/include/openssl/pem.h )
855 s.files += %w( third_party/boringssl/include/openssl/pkcs12.h )
856 s.files += %w( third_party/boringssl/include/openssl/pkcs7.h )
857 s.files += %w( third_party/boringssl/include/openssl/pkcs8.h )
858 s.files += %w( third_party/boringssl/include/openssl/poly1305.h )
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700859 s.files += %w( third_party/boringssl/include/openssl/pool.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100860 s.files += %w( third_party/boringssl/include/openssl/rand.h )
861 s.files += %w( third_party/boringssl/include/openssl/rc4.h )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800862 s.files += %w( third_party/boringssl/include/openssl/ripemd.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100863 s.files += %w( third_party/boringssl/include/openssl/rsa.h )
864 s.files += %w( third_party/boringssl/include/openssl/safestack.h )
865 s.files += %w( third_party/boringssl/include/openssl/sha.h )
Matt Kwonga110c742017-09-22 14:31:22 -0700866 s.files += %w( third_party/boringssl/include/openssl/span.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100867 s.files += %w( third_party/boringssl/include/openssl/srtp.h )
868 s.files += %w( third_party/boringssl/include/openssl/ssl.h )
869 s.files += %w( third_party/boringssl/include/openssl/ssl3.h )
870 s.files += %w( third_party/boringssl/include/openssl/stack.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100871 s.files += %w( third_party/boringssl/include/openssl/thread.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100872 s.files += %w( third_party/boringssl/include/openssl/tls1.h )
873 s.files += %w( third_party/boringssl/include/openssl/type_check.h )
874 s.files += %w( third_party/boringssl/include/openssl/x509.h )
875 s.files += %w( third_party/boringssl/include/openssl/x509_vfy.h )
876 s.files += %w( third_party/boringssl/include/openssl/x509v3.h )
877 s.files += %w( third_party/boringssl/ssl/internal.h )
Jan Tattermuschd606e362018-03-07 21:21:38 +0100878 s.files += %w( third_party/boringssl/third_party/fiat/internal.h )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100879 s.files += %w( src/boringssl/err_data.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100880 s.files += %w( third_party/boringssl/crypto/asn1/a_bitstr.c )
881 s.files += %w( third_party/boringssl/crypto/asn1/a_bool.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100882 s.files += %w( third_party/boringssl/crypto/asn1/a_d2i_fp.c )
883 s.files += %w( third_party/boringssl/crypto/asn1/a_dup.c )
884 s.files += %w( third_party/boringssl/crypto/asn1/a_enum.c )
885 s.files += %w( third_party/boringssl/crypto/asn1/a_gentm.c )
886 s.files += %w( third_party/boringssl/crypto/asn1/a_i2d_fp.c )
887 s.files += %w( third_party/boringssl/crypto/asn1/a_int.c )
888 s.files += %w( third_party/boringssl/crypto/asn1/a_mbstr.c )
889 s.files += %w( third_party/boringssl/crypto/asn1/a_object.c )
890 s.files += %w( third_party/boringssl/crypto/asn1/a_octet.c )
891 s.files += %w( third_party/boringssl/crypto/asn1/a_print.c )
892 s.files += %w( third_party/boringssl/crypto/asn1/a_strnid.c )
893 s.files += %w( third_party/boringssl/crypto/asn1/a_time.c )
894 s.files += %w( third_party/boringssl/crypto/asn1/a_type.c )
895 s.files += %w( third_party/boringssl/crypto/asn1/a_utctm.c )
896 s.files += %w( third_party/boringssl/crypto/asn1/a_utf8.c )
897 s.files += %w( third_party/boringssl/crypto/asn1/asn1_lib.c )
898 s.files += %w( third_party/boringssl/crypto/asn1/asn1_par.c )
899 s.files += %w( third_party/boringssl/crypto/asn1/asn_pack.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100900 s.files += %w( third_party/boringssl/crypto/asn1/f_enum.c )
901 s.files += %w( third_party/boringssl/crypto/asn1/f_int.c )
902 s.files += %w( third_party/boringssl/crypto/asn1/f_string.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100903 s.files += %w( third_party/boringssl/crypto/asn1/tasn_dec.c )
904 s.files += %w( third_party/boringssl/crypto/asn1/tasn_enc.c )
905 s.files += %w( third_party/boringssl/crypto/asn1/tasn_fre.c )
906 s.files += %w( third_party/boringssl/crypto/asn1/tasn_new.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100907 s.files += %w( third_party/boringssl/crypto/asn1/tasn_typ.c )
908 s.files += %w( third_party/boringssl/crypto/asn1/tasn_utl.c )
Ken Paysonf8d6fb72017-06-15 17:32:49 -0700909 s.files += %w( third_party/boringssl/crypto/asn1/time_support.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100910 s.files += %w( third_party/boringssl/crypto/base64/base64.c )
911 s.files += %w( third_party/boringssl/crypto/bio/bio.c )
912 s.files += %w( third_party/boringssl/crypto/bio/bio_mem.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100913 s.files += %w( third_party/boringssl/crypto/bio/connect.c )
914 s.files += %w( third_party/boringssl/crypto/bio/fd.c )
915 s.files += %w( third_party/boringssl/crypto/bio/file.c )
916 s.files += %w( third_party/boringssl/crypto/bio/hexdump.c )
917 s.files += %w( third_party/boringssl/crypto/bio/pair.c )
918 s.files += %w( third_party/boringssl/crypto/bio/printf.c )
919 s.files += %w( third_party/boringssl/crypto/bio/socket.c )
920 s.files += %w( third_party/boringssl/crypto/bio/socket_helper.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700921 s.files += %w( third_party/boringssl/crypto/bn_extra/bn_asn1.c )
922 s.files += %w( third_party/boringssl/crypto/bn_extra/convert.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100923 s.files += %w( third_party/boringssl/crypto/buf/buf.c )
itessier2a522032016-04-19 17:38:51 -0700924 s.files += %w( third_party/boringssl/crypto/bytestring/asn1_compat.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100925 s.files += %w( third_party/boringssl/crypto/bytestring/ber.c )
926 s.files += %w( third_party/boringssl/crypto/bytestring/cbb.c )
927 s.files += %w( third_party/boringssl/crypto/bytestring/cbs.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800928 s.files += %w( third_party/boringssl/crypto/chacha/chacha.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700929 s.files += %w( third_party/boringssl/crypto/cipher_extra/cipher_extra.c )
930 s.files += %w( third_party/boringssl/crypto/cipher_extra/derive_key.c )
931 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_aesctrhmac.c )
932 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_aesgcmsiv.c )
933 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_chacha20poly1305.c )
934 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_null.c )
935 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_rc2.c )
936 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_rc4.c )
937 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_ssl3.c )
938 s.files += %w( third_party/boringssl/crypto/cipher_extra/e_tls.c )
939 s.files += %w( third_party/boringssl/crypto/cipher_extra/tls_cbc.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100940 s.files += %w( third_party/boringssl/crypto/cmac/cmac.c )
941 s.files += %w( third_party/boringssl/crypto/conf/conf.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800942 s.files += %w( third_party/boringssl/crypto/cpu-aarch64-linux.c )
943 s.files += %w( third_party/boringssl/crypto/cpu-arm-linux.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100944 s.files += %w( third_party/boringssl/crypto/cpu-arm.c )
945 s.files += %w( third_party/boringssl/crypto/cpu-intel.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800946 s.files += %w( third_party/boringssl/crypto/cpu-ppc64le.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100947 s.files += %w( third_party/boringssl/crypto/crypto.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800948 s.files += %w( third_party/boringssl/crypto/curve25519/spake25519.c )
itessier2a522032016-04-19 17:38:51 -0700949 s.files += %w( third_party/boringssl/crypto/curve25519/x25519-x86_64.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100950 s.files += %w( third_party/boringssl/crypto/dh/check.c )
951 s.files += %w( third_party/boringssl/crypto/dh/dh.c )
952 s.files += %w( third_party/boringssl/crypto/dh/dh_asn1.c )
953 s.files += %w( third_party/boringssl/crypto/dh/params.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700954 s.files += %w( third_party/boringssl/crypto/digest_extra/digest_extra.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100955 s.files += %w( third_party/boringssl/crypto/dsa/dsa.c )
956 s.files += %w( third_party/boringssl/crypto/dsa/dsa_asn1.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700957 s.files += %w( third_party/boringssl/crypto/ec_extra/ec_asn1.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100958 s.files += %w( third_party/boringssl/crypto/ecdh/ecdh.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700959 s.files += %w( third_party/boringssl/crypto/ecdsa_extra/ecdsa_asn1.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100960 s.files += %w( third_party/boringssl/crypto/engine/engine.c )
961 s.files += %w( third_party/boringssl/crypto/err/err.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100962 s.files += %w( third_party/boringssl/crypto/evp/digestsign.c )
963 s.files += %w( third_party/boringssl/crypto/evp/evp.c )
964 s.files += %w( third_party/boringssl/crypto/evp/evp_asn1.c )
965 s.files += %w( third_party/boringssl/crypto/evp/evp_ctx.c )
966 s.files += %w( third_party/boringssl/crypto/evp/p_dsa_asn1.c )
967 s.files += %w( third_party/boringssl/crypto/evp/p_ec.c )
968 s.files += %w( third_party/boringssl/crypto/evp/p_ec_asn1.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700969 s.files += %w( third_party/boringssl/crypto/evp/p_ed25519.c )
970 s.files += %w( third_party/boringssl/crypto/evp/p_ed25519_asn1.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100971 s.files += %w( third_party/boringssl/crypto/evp/p_rsa.c )
972 s.files += %w( third_party/boringssl/crypto/evp/p_rsa_asn1.c )
973 s.files += %w( third_party/boringssl/crypto/evp/pbkdf.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -0800974 s.files += %w( third_party/boringssl/crypto/evp/print.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700975 s.files += %w( third_party/boringssl/crypto/evp/scrypt.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100976 s.files += %w( third_party/boringssl/crypto/evp/sign.c )
977 s.files += %w( third_party/boringssl/crypto/ex_data.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700978 s.files += %w( third_party/boringssl/crypto/fipsmodule/bcm.c )
979 s.files += %w( third_party/boringssl/crypto/fipsmodule/is_fips.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100980 s.files += %w( third_party/boringssl/crypto/hkdf/hkdf.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100981 s.files += %w( third_party/boringssl/crypto/lhash/lhash.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100982 s.files += %w( third_party/boringssl/crypto/mem.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100983 s.files += %w( third_party/boringssl/crypto/obj/obj.c )
984 s.files += %w( third_party/boringssl/crypto/obj/obj_xref.c )
985 s.files += %w( third_party/boringssl/crypto/pem/pem_all.c )
986 s.files += %w( third_party/boringssl/crypto/pem/pem_info.c )
987 s.files += %w( third_party/boringssl/crypto/pem/pem_lib.c )
988 s.files += %w( third_party/boringssl/crypto/pem/pem_oth.c )
989 s.files += %w( third_party/boringssl/crypto/pem/pem_pk8.c )
990 s.files += %w( third_party/boringssl/crypto/pem/pem_pkey.c )
991 s.files += %w( third_party/boringssl/crypto/pem/pem_x509.c )
992 s.files += %w( third_party/boringssl/crypto/pem/pem_xaux.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700993 s.files += %w( third_party/boringssl/crypto/pkcs7/pkcs7.c )
994 s.files += %w( third_party/boringssl/crypto/pkcs7/pkcs7_x509.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100995 s.files += %w( third_party/boringssl/crypto/pkcs8/p5_pbev2.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100996 s.files += %w( third_party/boringssl/crypto/pkcs8/pkcs8.c )
Matt Kwonga110c742017-09-22 14:31:22 -0700997 s.files += %w( third_party/boringssl/crypto/pkcs8/pkcs8_x509.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +0100998 s.files += %w( third_party/boringssl/crypto/poly1305/poly1305.c )
999 s.files += %w( third_party/boringssl/crypto/poly1305/poly1305_arm.c )
1000 s.files += %w( third_party/boringssl/crypto/poly1305/poly1305_vec.c )
Ken Paysonf8d6fb72017-06-15 17:32:49 -07001001 s.files += %w( third_party/boringssl/crypto/pool/pool.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001002 s.files += %w( third_party/boringssl/crypto/rand_extra/deterministic.c )
1003 s.files += %w( third_party/boringssl/crypto/rand_extra/forkunsafe.c )
1004 s.files += %w( third_party/boringssl/crypto/rand_extra/fuchsia.c )
1005 s.files += %w( third_party/boringssl/crypto/rand_extra/rand_extra.c )
1006 s.files += %w( third_party/boringssl/crypto/rand_extra/windows.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001007 s.files += %w( third_party/boringssl/crypto/rc4/rc4.c )
1008 s.files += %w( third_party/boringssl/crypto/refcount_c11.c )
1009 s.files += %w( third_party/boringssl/crypto/refcount_lock.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001010 s.files += %w( third_party/boringssl/crypto/rsa_extra/rsa_asn1.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001011 s.files += %w( third_party/boringssl/crypto/stack/stack.c )
1012 s.files += %w( third_party/boringssl/crypto/thread.c )
1013 s.files += %w( third_party/boringssl/crypto/thread_none.c )
1014 s.files += %w( third_party/boringssl/crypto/thread_pthread.c )
1015 s.files += %w( third_party/boringssl/crypto/thread_win.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001016 s.files += %w( third_party/boringssl/crypto/x509/a_digest.c )
1017 s.files += %w( third_party/boringssl/crypto/x509/a_sign.c )
1018 s.files += %w( third_party/boringssl/crypto/x509/a_strex.c )
1019 s.files += %w( third_party/boringssl/crypto/x509/a_verify.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -08001020 s.files += %w( third_party/boringssl/crypto/x509/algorithm.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001021 s.files += %w( third_party/boringssl/crypto/x509/asn1_gen.c )
1022 s.files += %w( third_party/boringssl/crypto/x509/by_dir.c )
1023 s.files += %w( third_party/boringssl/crypto/x509/by_file.c )
1024 s.files += %w( third_party/boringssl/crypto/x509/i2d_pr.c )
Stanley Cheungb39942f2017-01-12 21:31:07 -08001025 s.files += %w( third_party/boringssl/crypto/x509/rsa_pss.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001026 s.files += %w( third_party/boringssl/crypto/x509/t_crl.c )
1027 s.files += %w( third_party/boringssl/crypto/x509/t_req.c )
1028 s.files += %w( third_party/boringssl/crypto/x509/t_x509.c )
1029 s.files += %w( third_party/boringssl/crypto/x509/t_x509a.c )
1030 s.files += %w( third_party/boringssl/crypto/x509/x509.c )
1031 s.files += %w( third_party/boringssl/crypto/x509/x509_att.c )
1032 s.files += %w( third_party/boringssl/crypto/x509/x509_cmp.c )
1033 s.files += %w( third_party/boringssl/crypto/x509/x509_d2.c )
1034 s.files += %w( third_party/boringssl/crypto/x509/x509_def.c )
1035 s.files += %w( third_party/boringssl/crypto/x509/x509_ext.c )
1036 s.files += %w( third_party/boringssl/crypto/x509/x509_lu.c )
1037 s.files += %w( third_party/boringssl/crypto/x509/x509_obj.c )
1038 s.files += %w( third_party/boringssl/crypto/x509/x509_r2x.c )
1039 s.files += %w( third_party/boringssl/crypto/x509/x509_req.c )
1040 s.files += %w( third_party/boringssl/crypto/x509/x509_set.c )
1041 s.files += %w( third_party/boringssl/crypto/x509/x509_trs.c )
1042 s.files += %w( third_party/boringssl/crypto/x509/x509_txt.c )
1043 s.files += %w( third_party/boringssl/crypto/x509/x509_v3.c )
1044 s.files += %w( third_party/boringssl/crypto/x509/x509_vfy.c )
1045 s.files += %w( third_party/boringssl/crypto/x509/x509_vpm.c )
1046 s.files += %w( third_party/boringssl/crypto/x509/x509cset.c )
1047 s.files += %w( third_party/boringssl/crypto/x509/x509name.c )
1048 s.files += %w( third_party/boringssl/crypto/x509/x509rset.c )
1049 s.files += %w( third_party/boringssl/crypto/x509/x509spki.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001050 s.files += %w( third_party/boringssl/crypto/x509/x_algor.c )
1051 s.files += %w( third_party/boringssl/crypto/x509/x_all.c )
1052 s.files += %w( third_party/boringssl/crypto/x509/x_attrib.c )
1053 s.files += %w( third_party/boringssl/crypto/x509/x_crl.c )
1054 s.files += %w( third_party/boringssl/crypto/x509/x_exten.c )
1055 s.files += %w( third_party/boringssl/crypto/x509/x_info.c )
1056 s.files += %w( third_party/boringssl/crypto/x509/x_name.c )
1057 s.files += %w( third_party/boringssl/crypto/x509/x_pkey.c )
1058 s.files += %w( third_party/boringssl/crypto/x509/x_pubkey.c )
1059 s.files += %w( third_party/boringssl/crypto/x509/x_req.c )
1060 s.files += %w( third_party/boringssl/crypto/x509/x_sig.c )
1061 s.files += %w( third_party/boringssl/crypto/x509/x_spki.c )
1062 s.files += %w( third_party/boringssl/crypto/x509/x_val.c )
1063 s.files += %w( third_party/boringssl/crypto/x509/x_x509.c )
1064 s.files += %w( third_party/boringssl/crypto/x509/x_x509a.c )
1065 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_cache.c )
1066 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_data.c )
1067 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_lib.c )
1068 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_map.c )
1069 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_node.c )
1070 s.files += %w( third_party/boringssl/crypto/x509v3/pcy_tree.c )
1071 s.files += %w( third_party/boringssl/crypto/x509v3/v3_akey.c )
1072 s.files += %w( third_party/boringssl/crypto/x509v3/v3_akeya.c )
1073 s.files += %w( third_party/boringssl/crypto/x509v3/v3_alt.c )
1074 s.files += %w( third_party/boringssl/crypto/x509v3/v3_bcons.c )
1075 s.files += %w( third_party/boringssl/crypto/x509v3/v3_bitst.c )
1076 s.files += %w( third_party/boringssl/crypto/x509v3/v3_conf.c )
1077 s.files += %w( third_party/boringssl/crypto/x509v3/v3_cpols.c )
1078 s.files += %w( third_party/boringssl/crypto/x509v3/v3_crld.c )
1079 s.files += %w( third_party/boringssl/crypto/x509v3/v3_enum.c )
1080 s.files += %w( third_party/boringssl/crypto/x509v3/v3_extku.c )
1081 s.files += %w( third_party/boringssl/crypto/x509v3/v3_genn.c )
1082 s.files += %w( third_party/boringssl/crypto/x509v3/v3_ia5.c )
1083 s.files += %w( third_party/boringssl/crypto/x509v3/v3_info.c )
1084 s.files += %w( third_party/boringssl/crypto/x509v3/v3_int.c )
1085 s.files += %w( third_party/boringssl/crypto/x509v3/v3_lib.c )
1086 s.files += %w( third_party/boringssl/crypto/x509v3/v3_ncons.c )
1087 s.files += %w( third_party/boringssl/crypto/x509v3/v3_pci.c )
1088 s.files += %w( third_party/boringssl/crypto/x509v3/v3_pcia.c )
1089 s.files += %w( third_party/boringssl/crypto/x509v3/v3_pcons.c )
1090 s.files += %w( third_party/boringssl/crypto/x509v3/v3_pku.c )
1091 s.files += %w( third_party/boringssl/crypto/x509v3/v3_pmaps.c )
1092 s.files += %w( third_party/boringssl/crypto/x509v3/v3_prn.c )
1093 s.files += %w( third_party/boringssl/crypto/x509v3/v3_purp.c )
1094 s.files += %w( third_party/boringssl/crypto/x509v3/v3_skey.c )
1095 s.files += %w( third_party/boringssl/crypto/x509v3/v3_sxnet.c )
1096 s.files += %w( third_party/boringssl/crypto/x509v3/v3_utl.c )
Matt Kwonga110c742017-09-22 14:31:22 -07001097 s.files += %w( third_party/boringssl/ssl/bio_ssl.cc )
1098 s.files += %w( third_party/boringssl/ssl/custom_extensions.cc )
1099 s.files += %w( third_party/boringssl/ssl/d1_both.cc )
1100 s.files += %w( third_party/boringssl/ssl/d1_lib.cc )
1101 s.files += %w( third_party/boringssl/ssl/d1_pkt.cc )
1102 s.files += %w( third_party/boringssl/ssl/d1_srtp.cc )
1103 s.files += %w( third_party/boringssl/ssl/dtls_method.cc )
1104 s.files += %w( third_party/boringssl/ssl/dtls_record.cc )
1105 s.files += %w( third_party/boringssl/ssl/handshake.cc )
1106 s.files += %w( third_party/boringssl/ssl/handshake_client.cc )
1107 s.files += %w( third_party/boringssl/ssl/handshake_server.cc )
1108 s.files += %w( third_party/boringssl/ssl/s3_both.cc )
1109 s.files += %w( third_party/boringssl/ssl/s3_lib.cc )
1110 s.files += %w( third_party/boringssl/ssl/s3_pkt.cc )
1111 s.files += %w( third_party/boringssl/ssl/ssl_aead_ctx.cc )
1112 s.files += %w( third_party/boringssl/ssl/ssl_asn1.cc )
1113 s.files += %w( third_party/boringssl/ssl/ssl_buffer.cc )
1114 s.files += %w( third_party/boringssl/ssl/ssl_cert.cc )
1115 s.files += %w( third_party/boringssl/ssl/ssl_cipher.cc )
1116 s.files += %w( third_party/boringssl/ssl/ssl_file.cc )
1117 s.files += %w( third_party/boringssl/ssl/ssl_key_share.cc )
1118 s.files += %w( third_party/boringssl/ssl/ssl_lib.cc )
1119 s.files += %w( third_party/boringssl/ssl/ssl_privkey.cc )
1120 s.files += %w( third_party/boringssl/ssl/ssl_session.cc )
1121 s.files += %w( third_party/boringssl/ssl/ssl_stat.cc )
1122 s.files += %w( third_party/boringssl/ssl/ssl_transcript.cc )
1123 s.files += %w( third_party/boringssl/ssl/ssl_versions.cc )
1124 s.files += %w( third_party/boringssl/ssl/ssl_x509.cc )
1125 s.files += %w( third_party/boringssl/ssl/t1_enc.cc )
1126 s.files += %w( third_party/boringssl/ssl/t1_lib.cc )
1127 s.files += %w( third_party/boringssl/ssl/tls13_both.cc )
1128 s.files += %w( third_party/boringssl/ssl/tls13_client.cc )
1129 s.files += %w( third_party/boringssl/ssl/tls13_enc.cc )
1130 s.files += %w( third_party/boringssl/ssl/tls13_server.cc )
1131 s.files += %w( third_party/boringssl/ssl/tls_method.cc )
1132 s.files += %w( third_party/boringssl/ssl/tls_record.cc )
Jan Tattermuschd606e362018-03-07 21:21:38 +01001133 s.files += %w( third_party/boringssl/third_party/fiat/curve25519.c )
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01001134 s.files += %w( third_party/zlib/crc32.h )
1135 s.files += %w( third_party/zlib/deflate.h )
1136 s.files += %w( third_party/zlib/gzguts.h )
1137 s.files += %w( third_party/zlib/inffast.h )
1138 s.files += %w( third_party/zlib/inffixed.h )
1139 s.files += %w( third_party/zlib/inflate.h )
1140 s.files += %w( third_party/zlib/inftrees.h )
1141 s.files += %w( third_party/zlib/trees.h )
1142 s.files += %w( third_party/zlib/zconf.h )
1143 s.files += %w( third_party/zlib/zlib.h )
1144 s.files += %w( third_party/zlib/zutil.h )
1145 s.files += %w( third_party/zlib/adler32.c )
1146 s.files += %w( third_party/zlib/compress.c )
1147 s.files += %w( third_party/zlib/crc32.c )
1148 s.files += %w( third_party/zlib/deflate.c )
1149 s.files += %w( third_party/zlib/gzclose.c )
1150 s.files += %w( third_party/zlib/gzlib.c )
1151 s.files += %w( third_party/zlib/gzread.c )
1152 s.files += %w( third_party/zlib/gzwrite.c )
1153 s.files += %w( third_party/zlib/infback.c )
1154 s.files += %w( third_party/zlib/inffast.c )
1155 s.files += %w( third_party/zlib/inflate.c )
1156 s.files += %w( third_party/zlib/inftrees.c )
1157 s.files += %w( third_party/zlib/trees.c )
1158 s.files += %w( third_party/zlib/uncompr.c )
1159 s.files += %w( third_party/zlib/zutil.c )
Yuchen Zeng6694bb02017-01-23 17:09:51 -08001160 s.files += %w( third_party/cares/cares/ares.h )
1161 s.files += %w( third_party/cares/cares/ares_data.h )
1162 s.files += %w( third_party/cares/cares/ares_dns.h )
1163 s.files += %w( third_party/cares/cares/ares_getenv.h )
1164 s.files += %w( third_party/cares/cares/ares_getopt.h )
1165 s.files += %w( third_party/cares/cares/ares_inet_net_pton.h )
1166 s.files += %w( third_party/cares/cares/ares_iphlpapi.h )
1167 s.files += %w( third_party/cares/cares/ares_ipv6.h )
1168 s.files += %w( third_party/cares/cares/ares_library_init.h )
1169 s.files += %w( third_party/cares/cares/ares_llist.h )
1170 s.files += %w( third_party/cares/cares/ares_nowarn.h )
1171 s.files += %w( third_party/cares/cares/ares_platform.h )
1172 s.files += %w( third_party/cares/cares/ares_private.h )
1173 s.files += %w( third_party/cares/cares/ares_rules.h )
1174 s.files += %w( third_party/cares/cares/ares_setup.h )
1175 s.files += %w( third_party/cares/cares/ares_strcasecmp.h )
1176 s.files += %w( third_party/cares/cares/ares_strdup.h )
1177 s.files += %w( third_party/cares/cares/ares_version.h )
1178 s.files += %w( third_party/cares/cares/bitncmp.h )
1179 s.files += %w( third_party/cares/cares/config-win32.h )
1180 s.files += %w( third_party/cares/cares/setup_once.h )
1181 s.files += %w( third_party/cares/ares_build.h )
Yuchen Zeng6694bb02017-01-23 17:09:51 -08001182 s.files += %w( third_party/cares/config_darwin/ares_config.h )
Mehrdad Afshari451c02b2017-10-12 10:28:14 -07001183 s.files += %w( third_party/cares/config_freebsd/ares_config.h )
1184 s.files += %w( third_party/cares/config_linux/ares_config.h )
Frank Groeneveldfbf81282017-10-12 08:27:14 +02001185 s.files += %w( third_party/cares/config_openbsd/ares_config.h )
Yuchen Zeng6694bb02017-01-23 17:09:51 -08001186 s.files += %w( third_party/cares/cares/ares__close_sockets.c )
1187 s.files += %w( third_party/cares/cares/ares__get_hostent.c )
1188 s.files += %w( third_party/cares/cares/ares__read_line.c )
1189 s.files += %w( third_party/cares/cares/ares__timeval.c )
1190 s.files += %w( third_party/cares/cares/ares_cancel.c )
1191 s.files += %w( third_party/cares/cares/ares_create_query.c )
1192 s.files += %w( third_party/cares/cares/ares_data.c )
1193 s.files += %w( third_party/cares/cares/ares_destroy.c )
1194 s.files += %w( third_party/cares/cares/ares_expand_name.c )
1195 s.files += %w( third_party/cares/cares/ares_expand_string.c )
1196 s.files += %w( third_party/cares/cares/ares_fds.c )
1197 s.files += %w( third_party/cares/cares/ares_free_hostent.c )
1198 s.files += %w( third_party/cares/cares/ares_free_string.c )
1199 s.files += %w( third_party/cares/cares/ares_getenv.c )
1200 s.files += %w( third_party/cares/cares/ares_gethostbyaddr.c )
1201 s.files += %w( third_party/cares/cares/ares_gethostbyname.c )
1202 s.files += %w( third_party/cares/cares/ares_getnameinfo.c )
1203 s.files += %w( third_party/cares/cares/ares_getopt.c )
1204 s.files += %w( third_party/cares/cares/ares_getsock.c )
1205 s.files += %w( third_party/cares/cares/ares_init.c )
1206 s.files += %w( third_party/cares/cares/ares_library_init.c )
1207 s.files += %w( third_party/cares/cares/ares_llist.c )
1208 s.files += %w( third_party/cares/cares/ares_mkquery.c )
1209 s.files += %w( third_party/cares/cares/ares_nowarn.c )
1210 s.files += %w( third_party/cares/cares/ares_options.c )
1211 s.files += %w( third_party/cares/cares/ares_parse_a_reply.c )
1212 s.files += %w( third_party/cares/cares/ares_parse_aaaa_reply.c )
1213 s.files += %w( third_party/cares/cares/ares_parse_mx_reply.c )
1214 s.files += %w( third_party/cares/cares/ares_parse_naptr_reply.c )
1215 s.files += %w( third_party/cares/cares/ares_parse_ns_reply.c )
1216 s.files += %w( third_party/cares/cares/ares_parse_ptr_reply.c )
1217 s.files += %w( third_party/cares/cares/ares_parse_soa_reply.c )
1218 s.files += %w( third_party/cares/cares/ares_parse_srv_reply.c )
1219 s.files += %w( third_party/cares/cares/ares_parse_txt_reply.c )
1220 s.files += %w( third_party/cares/cares/ares_platform.c )
1221 s.files += %w( third_party/cares/cares/ares_process.c )
1222 s.files += %w( third_party/cares/cares/ares_query.c )
1223 s.files += %w( third_party/cares/cares/ares_search.c )
1224 s.files += %w( third_party/cares/cares/ares_send.c )
1225 s.files += %w( third_party/cares/cares/ares_strcasecmp.c )
1226 s.files += %w( third_party/cares/cares/ares_strdup.c )
1227 s.files += %w( third_party/cares/cares/ares_strerror.c )
1228 s.files += %w( third_party/cares/cares/ares_timeout.c )
1229 s.files += %w( third_party/cares/cares/ares_version.c )
1230 s.files += %w( third_party/cares/cares/ares_writev.c )
1231 s.files += %w( third_party/cares/cares/bitncmp.c )
1232 s.files += %w( third_party/cares/cares/inet_net_pton.c )
1233 s.files += %w( third_party/cares/cares/inet_ntop.c )
1234 s.files += %w( third_party/cares/cares/windows_port.c )
nnoble097ef9b2014-12-01 17:06:10 -08001235end