Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(629)

Side by Side Diff: net/net.gyp

Issue 188873004: Compile src/net for PNaCl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 23 matching lines...) Expand all
34 'enable_built_in_dns%': 0, 34 'enable_built_in_dns%': 0,
35 }, { 35 }, {
36 'enable_websockets%': 1, 36 'enable_websockets%': 1,
37 'use_v8_in_net%': 1, 37 'use_v8_in_net%': 1,
38 'enable_built_in_dns%': 1, 38 'enable_built_in_dns%': 1,
39 }], 39 }],
40 ], 40 ],
41 }, 41 },
42 'includes': [ 42 'includes': [
43 '../build/win_precompile.gypi', 43 '../build/win_precompile.gypi',
44 'net.gypi',
44 ], 45 ],
45 'targets': [ 46 'targets': [
46 { 47 {
47 'target_name': 'net', 48 'target_name': 'net',
48 'type': '<(component)', 49 'type': '<(component)',
49 'variables': { 'enable_wexit_time_destructors': 1, }, 50 'variables': { 'enable_wexit_time_destructors': 1, },
50 'dependencies': [ 51 'dependencies': [
51 '../base/base.gyp:base', 52 '../base/base.gyp:base',
52 '../base/base.gyp:base_i18n', 53 '../base/base.gyp:base_i18n',
53 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 54 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
54 '../crypto/crypto.gyp:crypto', 55 '../crypto/crypto.gyp:crypto',
55 '../sdch/sdch.gyp:sdch', 56 '../sdch/sdch.gyp:sdch',
56 '../third_party/icu/icu.gyp:icui18n', 57 '../third_party/icu/icu.gyp:icui18n',
57 '../third_party/icu/icu.gyp:icuuc', 58 '../third_party/icu/icu.gyp:icuuc',
58 '../third_party/zlib/zlib.gyp:zlib', 59 '../third_party/zlib/zlib.gyp:zlib',
59 '../url/url.gyp:url_lib', 60 '../url/url.gyp:url_lib',
60 'net_resources', 61 'net_resources',
61 ], 62 ],
62 'sources': [ 63 'sources': [
63 'android/cert_verify_result_android.cc', 64 '<@(net_sources)',
64 'android/cert_verify_result_android.h',
65 'android/cert_verify_status_android_list.h',
66 'android/gurl_utils.cc',
67 'android/gurl_utils.h',
68 'android/android_private_key.cc',
69 'android/android_private_key.h',
70 'android/keystore.cc',
71 'android/keystore.h',
72 'android/keystore_openssl.cc',
73 'android/keystore_openssl.h',
74 'android/net_jni_registrar.cc',
75 'android/net_jni_registrar.h',
76 'android/network_change_notifier_android.cc',
77 'android/network_change_notifier_android.h',
78 'android/network_change_notifier_delegate_android.cc',
79 'android/network_change_notifier_delegate_android.h',
80 'android/network_change_notifier_factory_android.cc',
81 'android/network_change_notifier_factory_android.h',
82 'android/network_library.cc',
83 'android/network_library.h',
84 'base/address_family.h',
85 'base/address_list.cc',
86 'base/address_list.h',
87 'base/address_tracker_linux.cc',
88 'base/address_tracker_linux.h',
89 'base/auth.cc',
90 'base/auth.h',
91 'base/backoff_entry.cc',
92 'base/backoff_entry.h',
93 'base/bandwidth_metrics.cc',
94 'base/bandwidth_metrics.h',
95 'base/cache_type.h',
96 'base/completion_callback.h',
97 'base/connection_type_histograms.cc',
98 'base/connection_type_histograms.h',
99 'base/crypto_module.h',
100 'base/crypto_module_nss.cc',
101 'base/crypto_module_openssl.cc',
102 'base/data_url.cc',
103 'base/data_url.h',
104 'base/directory_lister.cc',
105 'base/directory_lister.h',
106 'base/dns_reloader.cc',
107 'base/dns_reloader.h',
108 'base/dns_util.cc',
109 'base/dns_util.h',
110 'base/escape.cc',
111 'base/escape.h',
112 'base/expiring_cache.h',
113 'base/file_stream.cc',
114 'base/file_stream.h',
115 'base/file_stream_context.cc',
116 'base/file_stream_context.h',
117 'base/file_stream_context_posix.cc',
118 'base/file_stream_context_win.cc',
119 'base/file_stream_metrics.cc',
120 'base/file_stream_metrics.h',
121 'base/file_stream_metrics_posix.cc',
122 'base/file_stream_metrics_win.cc',
123 'base/file_stream_net_log_parameters.cc',
124 'base/file_stream_net_log_parameters.h',
125 'base/file_stream_whence.h',
126 'base/int128.cc',
127 'base/int128.h',
128 'base/hash_value.cc',
129 'base/hash_value.h',
130 'base/host_mapping_rules.cc',
131 'base/host_mapping_rules.h',
132 'base/host_port_pair.cc',
133 'base/host_port_pair.h',
134 'base/io_buffer.cc',
135 'base/io_buffer.h',
136 'base/iovec.h',
137 'base/ip_endpoint.cc',
138 'base/ip_endpoint.h',
139 'base/ip_mapping_rules.cc',
140 'base/ip_mapping_rules.h',
141 'base/ip_pattern.cc',
142 'base/ip_pattern.h',
143 'base/keygen_handler.cc',
144 'base/keygen_handler.h',
145 'base/keygen_handler_mac.cc',
146 'base/keygen_handler_nss.cc',
147 'base/keygen_handler_openssl.cc',
148 'base/keygen_handler_win.cc',
149 'base/linked_hash_map.h',
150 'base/load_flags.h',
151 'base/load_flags_list.h',
152 'base/load_states.h',
153 'base/load_states_list.h',
154 'base/load_timing_info.cc',
155 'base/load_timing_info.h',
156 'base/mime_sniffer.cc',
157 'base/mime_sniffer.h',
158 'base/mime_util.cc',
159 'base/mime_util.h',
160 'base/net_error_list.h',
161 'base/net_errors.cc',
162 'base/net_errors.h',
163 'base/net_errors_posix.cc',
164 'base/net_errors_win.cc',
165 'base/net_export.h',
166 'base/net_log.cc',
167 'base/net_log.h',
168 'base/net_log_logger.cc',
169 'base/net_log_logger.h',
170 'base/net_log_event_type_list.h',
171 'base/net_log_source_type_list.h',
172 'base/net_module.cc',
173 'base/net_module.h',
174 'base/net_util.cc',
175 'base/net_util.h',
176 'base/net_util_posix.cc',
177 'base/net_util_win.cc',
178 'base/network_change_notifier.cc',
179 'base/network_change_notifier.h',
180 'base/network_change_notifier_factory.h',
181 'base/network_change_notifier_linux.cc',
182 'base/network_change_notifier_linux.h',
183 'base/network_change_notifier_mac.cc',
184 'base/network_change_notifier_mac.h',
185 'base/network_change_notifier_win.cc',
186 'base/network_change_notifier_win.h',
187 'base/network_config_watcher_mac.cc',
188 'base/network_config_watcher_mac.h',
189 'base/network_delegate.cc',
190 'base/network_delegate.h',
191 'base/network_time_notifier.cc',
192 'base/network_time_notifier.h',
193 'base/nss_memio.c',
194 'base/nss_memio.h',
195 'base/openssl_private_key_store.h',
196 'base/openssl_private_key_store_android.cc',
197 'base/openssl_private_key_store_memory.cc',
198 'base/platform_mime_util.h',
199 # TODO(tc): gnome-vfs? xdgmime? /etc/mime.types?
200 'base/platform_mime_util_linux.cc',
201 'base/platform_mime_util_mac.mm',
202 'base/platform_mime_util_win.cc',
203 'base/prioritized_dispatcher.cc',
204 'base/prioritized_dispatcher.h',
205 'base/priority_queue.h',
206 'base/rand_callback.h',
207 'base/registry_controlled_domains/registry_controlled_domain.cc',
208 'base/registry_controlled_domains/registry_controlled_domain.h',
209 'base/request_priority.cc',
210 'base/request_priority.h',
211 'base/sdch_manager.cc',
212 'base/sdch_manager.h',
213 'base/static_cookie_policy.cc',
214 'base/static_cookie_policy.h',
215 'base/sys_addrinfo.h',
216 'base/test_data_stream.cc',
217 'base/test_data_stream.h',
218 'base/upload_bytes_element_reader.cc',
219 'base/upload_bytes_element_reader.h',
220 'base/upload_data_stream.cc',
221 'base/upload_data_stream.h',
222 'base/upload_element.cc',
223 'base/upload_element.h',
224 'base/upload_element_reader.cc',
225 'base/upload_element_reader.h',
226 'base/upload_file_element_reader.cc',
227 'base/upload_file_element_reader.h',
228 'base/upload_progress.h',
229 'base/url_util.cc',
230 'base/url_util.h',
231 'base/winsock_init.cc',
232 'base/winsock_init.h',
233 'base/winsock_util.cc',
234 'base/winsock_util.h',
235 'base/zap.cc',
236 'base/zap.h',
237 'cert/asn1_util.cc',
238 'cert/asn1_util.h',
239 'cert/cert_database.cc',
240 'cert/cert_database.h',
241 'cert/cert_database_android.cc',
242 'cert/cert_database_ios.cc',
243 'cert/cert_database_mac.cc',
244 'cert/cert_database_nss.cc',
245 'cert/cert_database_openssl.cc',
246 'cert/cert_database_win.cc',
247 'cert/cert_status_flags.cc',
248 'cert/cert_status_flags.h',
249 'cert/cert_trust_anchor_provider.h',
250 'cert/cert_verifier.cc',
251 'cert/cert_verifier.h',
252 'cert/cert_verify_proc.cc',
253 'cert/cert_verify_proc.h',
254 'cert/cert_verify_proc_android.cc',
255 'cert/cert_verify_proc_android.h',
256 'cert/cert_verify_proc_mac.cc',
257 'cert/cert_verify_proc_mac.h',
258 'cert/cert_verify_proc_nss.cc',
259 'cert/cert_verify_proc_nss.h',
260 'cert/cert_verify_proc_openssl.cc',
261 'cert/cert_verify_proc_openssl.h',
262 'cert/cert_verify_proc_win.cc',
263 'cert/cert_verify_proc_win.h',
264 'cert/cert_verify_result.cc',
265 'cert/cert_verify_result.h',
266 'cert/crl_set.cc',
267 'cert/crl_set.h',
268 'cert/ct_known_logs.cc',
269 'cert/ct_known_logs.h',
270 'cert/ct_log_verifier.cc',
271 'cert/ct_log_verifier.h',
272 'cert/ct_log_verifier_nss.cc',
273 'cert/ct_log_verifier_openssl.cc',
274 'cert/ct_objects_extractor.h',
275 'cert/ct_objects_extractor_nss.cc',
276 'cert/ct_objects_extractor_openssl.cc',
277 'cert/ct_serialization.cc',
278 'cert/ct_serialization.h',
279 'cert/ct_signed_certificate_timestamp_log_param.cc',
280 'cert/ct_signed_certificate_timestamp_log_param.h',
281 'cert/ct_verifier.h',
282 'cert/ct_verify_result.cc',
283 'cert/ct_verify_result.h',
284 'cert/ev_root_ca_metadata.cc',
285 'cert/ev_root_ca_metadata.h',
286 'cert/jwk_serializer_nss.cc',
287 'cert/jwk_serializer_openssl.cc',
288 'cert/jwk_serializer.h',
289 'cert/multi_log_ct_verifier.cc',
290 'cert/multi_log_ct_verifier.h',
291 'cert/multi_threaded_cert_verifier.cc',
292 'cert/multi_threaded_cert_verifier.h',
293 'cert/nss_cert_database.cc',
294 'cert/nss_cert_database.h',
295 'cert/nss_cert_database_chromeos.cc',
296 'cert/nss_cert_database_chromeos.h',
297 'cert/nss_profile_filter_chromeos.cc',
298 'cert/nss_profile_filter_chromeos.h',
299 'cert/pem_tokenizer.cc',
300 'cert/pem_tokenizer.h',
301 'cert/scoped_nss_types.h',
302 'cert/sct_status_flags.h',
303 'cert/signed_certificate_timestamp.cc',
304 'cert/signed_certificate_timestamp.h',
305 'cert/single_request_cert_verifier.cc',
306 'cert/single_request_cert_verifier.h',
307 'cert/test_root_certs.cc',
308 'cert/test_root_certs.h',
309 'cert/test_root_certs_android.cc',
310 'cert/test_root_certs_mac.cc',
311 'cert/test_root_certs_nss.cc',
312 'cert/test_root_certs_openssl.cc',
313 'cert/test_root_certs_win.cc',
314 'cert/x509_cert_types.cc',
315 'cert/x509_cert_types.h',
316 'cert/x509_cert_types_mac.cc',
317 'cert/x509_cert_types_win.cc',
318 'cert/x509_certificate.cc',
319 'cert/x509_certificate.h',
320 'cert/x509_certificate_ios.cc',
321 'cert/x509_certificate_mac.cc',
322 'cert/x509_certificate_net_log_param.cc',
323 'cert/x509_certificate_net_log_param.h',
324 'cert/x509_certificate_nss.cc',
325 'cert/x509_certificate_openssl.cc',
326 'cert/x509_certificate_win.cc',
327 'cert/x509_util.cc',
328 'cert/x509_util.h',
329 'cert/x509_util_android.cc',
330 'cert/x509_util_android.h',
331 'cert/x509_util_ios.cc',
332 'cert/x509_util_ios.h',
333 'cert/x509_util_mac.cc',
334 'cert/x509_util_mac.h',
335 'cert/x509_util_nss.cc',
336 'cert/x509_util_nss.h',
337 'cert/x509_util_openssl.cc',
338 'cert/x509_util_openssl.h',
339 'cookies/canonical_cookie.cc',
340 'cookies/canonical_cookie.h',
341 'cookies/cookie_constants.cc',
342 'cookies/cookie_constants.h',
343 'cookies/cookie_monster.cc',
344 'cookies/cookie_monster.h',
345 'cookies/cookie_options.h',
346 'cookies/cookie_store.cc',
347 'cookies/cookie_store.h',
348 'cookies/cookie_util.cc',
349 'cookies/cookie_util.h',
350 'cookies/parsed_cookie.cc',
351 'cookies/parsed_cookie.h',
352 'disk_cache/blockfile/addr.cc',
353 'disk_cache/blockfile/addr.h',
354 'disk_cache/blockfile/backend_impl.cc',
355 'disk_cache/blockfile/backend_impl.h',
356 'disk_cache/blockfile/backend_impl_v3.cc',
357 'disk_cache/blockfile/backend_impl_v3.h',
358 'disk_cache/blockfile/bitmap.cc',
359 'disk_cache/blockfile/bitmap.h',
360 'disk_cache/blockfile/block_bitmaps_v3.cc',
361 'disk_cache/blockfile/block_bitmaps_v3.h',
362 'disk_cache/blockfile/block_files.cc',
363 'disk_cache/blockfile/block_files.h',
364 'disk_cache/blockfile/disk_format.cc',
365 'disk_cache/blockfile/disk_format.h',
366 'disk_cache/blockfile/disk_format_base.h',
367 'disk_cache/blockfile/disk_format_v3.h',
368 'disk_cache/blockfile/entry_impl.cc',
369 'disk_cache/blockfile/entry_impl.h',
370 'disk_cache/blockfile/entry_impl_v3.cc',
371 'disk_cache/blockfile/entry_impl_v3.h',
372 'disk_cache/blockfile/errors.h',
373 'disk_cache/blockfile/eviction.cc',
374 'disk_cache/blockfile/eviction.h',
375 'disk_cache/blockfile/eviction_v3.cc',
376 'disk_cache/blockfile/eviction_v3.h',
377 'disk_cache/blockfile/experiments.h',
378 'disk_cache/blockfile/file.cc',
379 'disk_cache/blockfile/file.h',
380 'disk_cache/blockfile/file_block.h',
381 'disk_cache/blockfile/file_ios.cc',
382 'disk_cache/blockfile/file_lock.cc',
383 'disk_cache/blockfile/file_lock.h',
384 'disk_cache/blockfile/file_posix.cc',
385 'disk_cache/blockfile/file_win.cc',
386 'disk_cache/blockfile/histogram_macros.h',
387 'disk_cache/blockfile/histogram_macros_v3.h',
388 'disk_cache/blockfile/in_flight_backend_io.cc',
389 'disk_cache/blockfile/in_flight_backend_io.h',
390 'disk_cache/blockfile/in_flight_io.cc',
391 'disk_cache/blockfile/in_flight_io.h',
392 'disk_cache/blockfile/index_table_v3.cc',
393 'disk_cache/blockfile/index_table_v3.h',
394 'disk_cache/blockfile/mapped_file.cc',
395 'disk_cache/blockfile/mapped_file.h',
396 'disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc',
397 'disk_cache/blockfile/mapped_file_posix.cc',
398 'disk_cache/blockfile/mapped_file_win.cc',
399 'disk_cache/blockfile/rankings.cc',
400 'disk_cache/blockfile/rankings.h',
401 'disk_cache/blockfile/sparse_control.cc',
402 'disk_cache/blockfile/sparse_control.h',
403 'disk_cache/blockfile/stats.cc',
404 'disk_cache/blockfile/stats.h',
405 'disk_cache/blockfile/stats_histogram.cc',
406 'disk_cache/blockfile/stats_histogram.h',
407 'disk_cache/blockfile/storage_block-inl.h',
408 'disk_cache/blockfile/storage_block.h',
409 'disk_cache/blockfile/stress_support.h',
410 'disk_cache/blockfile/trace.cc',
411 'disk_cache/blockfile/trace.h',
412 'disk_cache/cache_creator.cc',
413 'disk_cache/cache_util.cc',
414 'disk_cache/cache_util.h',
415 'disk_cache/cache_util_posix.cc',
416 'disk_cache/cache_util_win.cc',
417 'disk_cache/disk_cache.h',
418 'disk_cache/flash/flash_entry_impl.cc',
419 'disk_cache/flash/flash_entry_impl.h',
420 'disk_cache/flash/format.h',
421 'disk_cache/flash/internal_entry.cc',
422 'disk_cache/flash/internal_entry.h',
423 'disk_cache/flash/log_store.cc',
424 'disk_cache/flash/log_store.h',
425 'disk_cache/flash/log_store_entry.cc',
426 'disk_cache/flash/log_store_entry.h',
427 'disk_cache/flash/segment.cc',
428 'disk_cache/flash/segment.h',
429 'disk_cache/flash/storage.cc',
430 'disk_cache/flash/storage.h',
431 'disk_cache/memory/mem_backend_impl.cc',
432 'disk_cache/memory/mem_backend_impl.h',
433 'disk_cache/memory/mem_entry_impl.cc',
434 'disk_cache/memory/mem_entry_impl.h',
435 'disk_cache/memory/mem_rankings.cc',
436 'disk_cache/memory/mem_rankings.h',
437 'disk_cache/net_log_parameters.cc',
438 'disk_cache/net_log_parameters.h',
439 'disk_cache/simple/simple_backend_impl.cc',
440 'disk_cache/simple/simple_backend_impl.h',
441 'disk_cache/simple/simple_backend_version.h',
442 'disk_cache/simple/simple_entry_format.cc',
443 'disk_cache/simple/simple_entry_format.h',
444 'disk_cache/simple/simple_entry_format_history.h',
445 'disk_cache/simple/simple_entry_impl.cc',
446 'disk_cache/simple/simple_entry_impl.h',
447 'disk_cache/simple/simple_entry_operation.cc',
448 'disk_cache/simple/simple_entry_operation.h',
449 'disk_cache/simple/simple_histogram_macros.h' ,
450 'disk_cache/simple/simple_index.cc',
451 'disk_cache/simple/simple_index.h',
452 'disk_cache/simple/simple_index_delegate.h',
453 'disk_cache/simple/simple_index_file.cc',
454 'disk_cache/simple/simple_index_file.h',
455 'disk_cache/simple/simple_index_file_posix.cc',
456 'disk_cache/simple/simple_index_file_win.cc',
457 'disk_cache/simple/simple_net_log_parameters.cc',
458 'disk_cache/simple/simple_net_log_parameters.h',
459 'disk_cache/simple/simple_synchronous_entry.cc',
460 'disk_cache/simple/simple_synchronous_entry.h',
461 'disk_cache/simple/simple_util.cc',
462 'disk_cache/simple/simple_util.h',
463 'disk_cache/simple/simple_version_upgrade.cc',
464 'disk_cache/simple/simple_version_upgrade.h',
465 'disk_cache/tracing/tracing_cache_backend.cc',
466 'disk_cache/tracing/tracing_cache_backend.h',
467 'dns/address_sorter.h',
468 'dns/address_sorter_posix.cc',
469 'dns/address_sorter_posix.h',
470 'dns/address_sorter_win.cc',
471 'dns/dns_client.cc',
472 'dns/dns_client.h',
473 'dns/dns_config_service.cc',
474 'dns/dns_config_service.h',
475 'dns/dns_config_service_posix.cc',
476 'dns/dns_config_service_posix.h',
477 'dns/dns_config_service_win.cc',
478 'dns/dns_config_service_win.h',
479 'dns/dns_config_watcher_mac.cc',
480 'dns/dns_config_watcher_mac.h',
481 'dns/dns_hosts.cc',
482 'dns/dns_hosts.h',
483 'dns/dns_protocol.h',
484 'dns/dns_query.cc',
485 'dns/dns_query.h',
486 'dns/dns_response.cc',
487 'dns/dns_response.h',
488 'dns/dns_session.cc',
489 'dns/dns_session.h',
490 'dns/dns_socket_pool.cc',
491 'dns/dns_socket_pool.h',
492 'dns/dns_transaction.cc',
493 'dns/dns_transaction.h',
494 'dns/host_cache.cc',
495 'dns/host_cache.h',
496 'dns/host_resolver.cc',
497 'dns/host_resolver.h',
498 'dns/host_resolver_impl.cc',
499 'dns/host_resolver_impl.h',
500 'dns/host_resolver_proc.cc',
501 'dns/host_resolver_proc.h',
502 'dns/mapped_host_resolver.cc',
503 'dns/mapped_host_resolver.h',
504 'dns/mapped_ip_resolver.cc',
505 'dns/mapped_ip_resolver.h',
506 'dns/mdns_cache.cc',
507 'dns/mdns_cache.h',
508 'dns/mdns_client.cc',
509 'dns/mdns_client.h',
510 'dns/mdns_client_impl.cc',
511 'dns/mdns_client_impl.h',
512 'dns/notify_watcher_mac.cc',
513 'dns/notify_watcher_mac.h',
514 'dns/record_parsed.cc',
515 'dns/record_parsed.h',
516 'dns/record_rdata.cc',
517 'dns/record_rdata.h',
518 'dns/serial_worker.cc',
519 'dns/serial_worker.h',
520 'dns/single_request_host_resolver.cc',
521 'dns/single_request_host_resolver.h',
522 'filter/filter.cc',
523 'filter/filter.h',
524 'filter/gzip_filter.cc',
525 'filter/gzip_filter.h',
526 'filter/gzip_header.cc',
527 'filter/gzip_header.h',
528 'filter/sdch_filter.cc',
529 'filter/sdch_filter.h',
530 'ftp/ftp_auth_cache.cc',
531 'ftp/ftp_auth_cache.h',
532 'ftp/ftp_ctrl_response_buffer.cc',
533 'ftp/ftp_ctrl_response_buffer.h',
534 'ftp/ftp_directory_listing_parser.cc',
535 'ftp/ftp_directory_listing_parser.h',
536 'ftp/ftp_directory_listing_parser_ls.cc',
537 'ftp/ftp_directory_listing_parser_ls.h',
538 'ftp/ftp_directory_listing_parser_netware.cc',
539 'ftp/ftp_directory_listing_parser_netware.h',
540 'ftp/ftp_directory_listing_parser_os2.cc',
541 'ftp/ftp_directory_listing_parser_os2.h',
542 'ftp/ftp_directory_listing_parser_vms.cc',
543 'ftp/ftp_directory_listing_parser_vms.h',
544 'ftp/ftp_directory_listing_parser_windows.cc',
545 'ftp/ftp_directory_listing_parser_windows.h',
546 'ftp/ftp_network_layer.cc',
547 'ftp/ftp_network_layer.h',
548 'ftp/ftp_network_session.cc',
549 'ftp/ftp_network_session.h',
550 'ftp/ftp_network_transaction.cc',
551 'ftp/ftp_network_transaction.h',
552 'ftp/ftp_request_info.h',
553 'ftp/ftp_response_info.cc',
554 'ftp/ftp_response_info.h',
555 'ftp/ftp_server_type_histograms.cc',
556 'ftp/ftp_server_type_histograms.h',
557 'ftp/ftp_transaction.h',
558 'ftp/ftp_transaction_factory.h',
559 'ftp/ftp_util.cc',
560 'ftp/ftp_util.h',
561 'http/des.cc',
562 'http/des.h',
563 'http/disk_cache_based_quic_server_info.cc',
564 'http/disk_cache_based_quic_server_info.h',
565 'http/failing_http_transaction_factory.cc',
566 'http/failing_http_transaction_factory.h',
567 'http/http_atom_list.h',
568 'http/http_auth.cc',
569 'http/http_auth.h',
570 'http/http_auth_cache.cc',
571 'http/http_auth_cache.h',
572 'http/http_auth_controller.cc',
573 'http/http_auth_controller.h',
574 'http/http_auth_filter.cc',
575 'http/http_auth_filter.h',
576 'http/http_auth_filter_win.h',
577 'http/http_auth_gssapi_posix.cc',
578 'http/http_auth_gssapi_posix.h',
579 'http/http_auth_handler.cc',
580 'http/http_auth_handler.h',
581 'http/http_auth_handler_basic.cc',
582 'http/http_auth_handler_basic.h',
583 'http/http_auth_handler_digest.cc',
584 'http/http_auth_handler_digest.h',
585 'http/http_auth_handler_factory.cc',
586 'http/http_auth_handler_factory.h',
587 'http/http_auth_handler_negotiate.cc',
588 'http/http_auth_handler_negotiate.h',
589 'http/http_auth_handler_ntlm.cc',
590 'http/http_auth_handler_ntlm.h',
591 'http/http_auth_handler_ntlm_portable.cc',
592 'http/http_auth_handler_ntlm_win.cc',
593 'http/http_auth_sspi_win.cc',
594 'http/http_auth_sspi_win.h',
595 'http/http_basic_state.cc',
596 'http/http_basic_state.h',
597 'http/http_basic_stream.cc',
598 'http/http_basic_stream.h',
599 'http/http_byte_range.cc',
600 'http/http_byte_range.h',
601 'http/http_cache.cc',
602 'http/http_cache.h',
603 'http/http_cache_transaction.cc',
604 'http/http_cache_transaction.h',
605 'http/http_content_disposition.cc',
606 'http/http_content_disposition.h',
607 'http/http_chunked_decoder.cc',
608 'http/http_chunked_decoder.h',
609 'http/http_network_layer.cc',
610 'http/http_network_layer.h',
611 'http/http_network_session.cc',
612 'http/http_network_session.h',
613 'http/http_network_session_peer.cc',
614 'http/http_network_session_peer.h',
615 'http/http_network_transaction.cc',
616 'http/http_network_transaction.h',
617 'http/http_pipelined_connection.h',
618 'http/http_pipelined_connection_impl.cc',
619 'http/http_pipelined_connection_impl.h',
620 'http/http_pipelined_host.cc',
621 'http/http_pipelined_host.h',
622 'http/http_pipelined_host_capability.h',
623 'http/http_pipelined_host_forced.cc',
624 'http/http_pipelined_host_forced.h',
625 'http/http_pipelined_host_impl.cc',
626 'http/http_pipelined_host_impl.h',
627 'http/http_pipelined_host_pool.cc',
628 'http/http_pipelined_host_pool.h',
629 'http/http_pipelined_stream.cc',
630 'http/http_pipelined_stream.h',
631 'http/http_proxy_client_socket.cc',
632 'http/http_proxy_client_socket.h',
633 'http/http_proxy_client_socket_pool.cc',
634 'http/http_proxy_client_socket_pool.h',
635 'http/http_request_headers.cc',
636 'http/http_request_headers.h',
637 'http/http_request_info.cc',
638 'http/http_request_info.h',
639 'http/http_response_body_drainer.cc',
640 'http/http_response_body_drainer.h',
641 'http/http_response_headers.cc',
642 'http/http_response_headers.h',
643 'http/http_response_info.cc',
644 'http/http_response_info.h',
645 'http/http_security_headers.cc',
646 'http/http_security_headers.h',
647 'http/http_server_properties.cc',
648 'http/http_server_properties.h',
649 'http/http_server_properties_impl.cc',
650 'http/http_server_properties_impl.h',
651 'http/http_status_code.cc',
652 'http/http_status_code.h',
653 'http/http_stream.h',
654 'http/http_stream_base.h',
655 'http/http_stream_factory.cc',
656 'http/http_stream_factory.h',
657 'http/http_stream_factory_impl.cc',
658 'http/http_stream_factory_impl.h',
659 'http/http_stream_factory_impl_job.cc',
660 'http/http_stream_factory_impl_job.h',
661 'http/http_stream_factory_impl_request.cc',
662 'http/http_stream_factory_impl_request.h',
663 'http/http_stream_parser.cc',
664 'http/http_stream_parser.h',
665 'http/http_transaction.h',
666 'http/http_transaction_factory.h',
667 'http/http_util.cc',
668 'http/http_util.h',
669 'http/http_util_icu.cc',
670 'http/http_vary_data.cc',
671 'http/http_vary_data.h',
672 'http/http_version.h',
673 'http/md4.cc',
674 'http/md4.h',
675 'http/partial_data.cc',
676 'http/partial_data.h',
677 'http/proxy_client_socket.h',
678 'http/proxy_client_socket.cc',
679 'http/proxy_connect_redirect_http_stream.cc',
680 'http/proxy_connect_redirect_http_stream.h',
681 'http/transport_security_persister.cc',
682 'http/transport_security_persister.h',
683 'http/transport_security_state.cc',
684 'http/transport_security_state.h',
685 'http/transport_security_state_static.h',
686 'http/url_security_manager.cc',
687 'http/url_security_manager.h',
688 'http/url_security_manager_posix.cc',
689 'http/url_security_manager_win.cc',
690 'ocsp/nss_ocsp.cc',
691 'ocsp/nss_ocsp.h',
692 'proxy/dhcp_proxy_script_adapter_fetcher_win.cc',
693 'proxy/dhcp_proxy_script_adapter_fetcher_win.h',
694 'proxy/dhcp_proxy_script_fetcher.cc',
695 'proxy/dhcp_proxy_script_fetcher.h',
696 'proxy/dhcp_proxy_script_fetcher_factory.cc',
697 'proxy/dhcp_proxy_script_fetcher_factory.h',
698 'proxy/dhcp_proxy_script_fetcher_win.cc',
699 'proxy/dhcp_proxy_script_fetcher_win.h',
700 'proxy/dhcpcsvc_init_win.cc',
701 'proxy/dhcpcsvc_init_win.h',
702 'proxy/multi_threaded_proxy_resolver.cc',
703 'proxy/multi_threaded_proxy_resolver.h',
704 'proxy/network_delegate_error_observer.cc',
705 'proxy/network_delegate_error_observer.h',
706 'proxy/polling_proxy_config_service.cc',
707 'proxy/polling_proxy_config_service.h',
708 'proxy/proxy_bypass_rules.cc',
709 'proxy/proxy_bypass_rules.h',
710 'proxy/proxy_config.cc',
711 'proxy/proxy_config.h',
712 'proxy/proxy_config_service.h',
713 'proxy/proxy_config_service_android.cc',
714 'proxy/proxy_config_service_android.h',
715 'proxy/proxy_config_service_fixed.cc',
716 'proxy/proxy_config_service_fixed.h',
717 'proxy/proxy_config_service_ios.cc',
718 'proxy/proxy_config_service_ios.h',
719 'proxy/proxy_config_service_linux.cc',
720 'proxy/proxy_config_service_linux.h',
721 'proxy/proxy_config_service_mac.cc',
722 'proxy/proxy_config_service_mac.h',
723 'proxy/proxy_config_service_win.cc',
724 'proxy/proxy_config_service_win.h',
725 'proxy/proxy_config_source.cc',
726 'proxy/proxy_config_source.h',
727 'proxy/proxy_info.cc',
728 'proxy/proxy_info.h',
729 'proxy/proxy_list.cc',
730 'proxy/proxy_list.h',
731 'proxy/proxy_resolver.h',
732 'proxy/proxy_resolver_error_observer.h',
733 'proxy/proxy_resolver_mac.cc',
734 'proxy/proxy_resolver_mac.h',
735 'proxy/proxy_resolver_script.h',
736 'proxy/proxy_resolver_script_data.cc',
737 'proxy/proxy_resolver_script_data.h',
738 'proxy/proxy_resolver_winhttp.cc',
739 'proxy/proxy_resolver_winhttp.h',
740 'proxy/proxy_retry_info.h',
741 'proxy/proxy_script_decider.cc',
742 'proxy/proxy_script_decider.h',
743 'proxy/proxy_script_fetcher.h',
744 'proxy/proxy_script_fetcher_impl.cc',
745 'proxy/proxy_script_fetcher_impl.h',
746 'proxy/proxy_server.cc',
747 'proxy/proxy_server.h',
748 'proxy/proxy_server_mac.cc',
749 'proxy/proxy_service.cc',
750 'proxy/proxy_service.h',
751 'quic/congestion_control/available_channel_estimator.cc',
752 'quic/congestion_control/available_channel_estimator.h',
753 'quic/congestion_control/channel_estimator.cc',
754 'quic/congestion_control/channel_estimator.h',
755 'quic/congestion_control/cube_root.cc',
756 'quic/congestion_control/cube_root.h',
757 'quic/congestion_control/cubic.cc',
758 'quic/congestion_control/cubic.h',
759 'quic/congestion_control/fix_rate_receiver.cc',
760 'quic/congestion_control/fix_rate_receiver.h',
761 'quic/congestion_control/fix_rate_sender.cc',
762 'quic/congestion_control/fix_rate_sender.h',
763 'quic/congestion_control/hybrid_slow_start.cc',
764 'quic/congestion_control/hybrid_slow_start.h',
765 'quic/congestion_control/inter_arrival_bitrate_ramp_up.cc',
766 'quic/congestion_control/inter_arrival_bitrate_ramp_up.h',
767 'quic/congestion_control/inter_arrival_overuse_detector.cc',
768 'quic/congestion_control/inter_arrival_overuse_detector.h',
769 'quic/congestion_control/inter_arrival_probe.cc',
770 'quic/congestion_control/inter_arrival_probe.h',
771 'quic/congestion_control/inter_arrival_receiver.cc',
772 'quic/congestion_control/inter_arrival_receiver.h',
773 'quic/congestion_control/inter_arrival_sender.cc',
774 'quic/congestion_control/inter_arrival_sender.h',
775 'quic/congestion_control/inter_arrival_state_machine.cc',
776 'quic/congestion_control/inter_arrival_state_machine.h',
777 'quic/congestion_control/leaky_bucket.cc',
778 'quic/congestion_control/leaky_bucket.h',
779 'quic/congestion_control/loss_detection_interface.cc',
780 'quic/congestion_control/loss_detection_interface.h',
781 'quic/congestion_control/paced_sender.cc',
782 'quic/congestion_control/paced_sender.h',
783 'quic/congestion_control/pacing_sender.cc',
784 'quic/congestion_control/pacing_sender.h',
785 'quic/congestion_control/quic_max_sized_map.h',
786 'quic/congestion_control/receive_algorithm_interface.cc',
787 'quic/congestion_control/receive_algorithm_interface.h',
788 'quic/congestion_control/send_algorithm_interface.cc',
789 'quic/congestion_control/send_algorithm_interface.h',
790 'quic/congestion_control/tcp_cubic_sender.cc',
791 'quic/congestion_control/tcp_cubic_sender.h',
792 'quic/congestion_control/tcp_loss_algorithm.cc',
793 'quic/congestion_control/tcp_loss_algorithm.h',
794 'quic/congestion_control/tcp_receiver.cc',
795 'quic/congestion_control/tcp_receiver.h',
796 'quic/congestion_control/time_loss_algorithm.cc',
797 'quic/congestion_control/time_loss_algorithm.h',
798 'quic/crypto/aes_128_gcm_12_decrypter.h',
799 'quic/crypto/aes_128_gcm_12_decrypter_nss.cc',
800 'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc',
801 'quic/crypto/aes_128_gcm_12_encrypter.h',
802 'quic/crypto/aes_128_gcm_12_encrypter_nss.cc',
803 'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc',
804 'quic/crypto/cert_compressor.cc',
805 'quic/crypto/cert_compressor.h',
806 'quic/crypto/channel_id.cc',
807 'quic/crypto/channel_id.h',
808 'quic/crypto/channel_id_nss.cc',
809 'quic/crypto/channel_id_openssl.cc',
810 'quic/crypto/common_cert_set.cc',
811 'quic/crypto/common_cert_set.h',
812 'quic/crypto/crypto_framer.cc',
813 'quic/crypto/crypto_framer.h',
814 'quic/crypto/crypto_handshake.cc',
815 'quic/crypto/crypto_handshake.h',
816 'quic/crypto/crypto_handshake_message.cc',
817 'quic/crypto/crypto_handshake_message.h',
818 'quic/crypto/crypto_protocol.h',
819 'quic/crypto/crypto_secret_boxer.cc',
820 'quic/crypto/crypto_secret_boxer.h',
821 'quic/crypto/crypto_server_config_protobuf.cc',
822 'quic/crypto/crypto_server_config_protobuf.h',
823 'quic/crypto/crypto_utils.cc',
824 'quic/crypto/crypto_utils.h',
825 'quic/crypto/curve25519_key_exchange.cc',
826 'quic/crypto/curve25519_key_exchange.h',
827 'quic/crypto/ephemeral_key_source.h',
828 'quic/crypto/key_exchange.h',
829 'quic/crypto/local_strike_register_client.cc',
830 'quic/crypto/local_strike_register_client.h',
831 'quic/crypto/null_decrypter.cc',
832 'quic/crypto/null_decrypter.h',
833 'quic/crypto/null_encrypter.cc',
834 'quic/crypto/null_encrypter.h',
835 'quic/crypto/p256_key_exchange.h',
836 'quic/crypto/p256_key_exchange_nss.cc',
837 'quic/crypto/p256_key_exchange_openssl.cc',
838 'quic/crypto/proof_source.h',
839 'quic/crypto/proof_source_chromium.cc',
840 'quic/crypto/proof_source_chromium.h',
841 'quic/crypto/proof_verifier.cc',
842 'quic/crypto/proof_verifier_chromium.cc',
843 'quic/crypto/proof_verifier_chromium.h',
844 'quic/crypto/quic_crypto_client_config.cc',
845 'quic/crypto/quic_crypto_client_config.h',
846 'quic/crypto/quic_crypto_server_config.cc',
847 'quic/crypto/quic_crypto_server_config.h',
848 'quic/crypto/quic_decrypter.cc',
849 'quic/crypto/quic_decrypter.h',
850 'quic/crypto/quic_encrypter.cc',
851 'quic/crypto/quic_encrypter.h',
852 'quic/crypto/quic_random.cc',
853 'quic/crypto/quic_random.h',
854 'quic/crypto/quic_server_info.cc',
855 'quic/crypto/quic_server_info.h',
856 'quic/crypto/scoped_evp_aead_ctx.cc',
857 'quic/crypto/scoped_evp_aead_ctx.h',
858 'quic/crypto/strike_register.cc',
859 'quic/crypto/strike_register.h',
860 'quic/crypto/strike_register_client.h',
861 'quic/crypto/source_address_token.cc',
862 'quic/crypto/source_address_token.h',
863 'quic/iovector.cc',
864 'quic/iovector.h',
865 'quic/port_suggester.cc',
866 'quic/port_suggester.h',
867 'quic/quic_ack_notifier.cc',
868 'quic/quic_ack_notifier.h',
869 'quic/quic_ack_notifier_manager.cc',
870 'quic/quic_ack_notifier_manager.h',
871 'quic/quic_address_mismatch.cc',
872 'quic/quic_address_mismatch.h',
873 'quic/quic_alarm.cc',
874 'quic/quic_alarm.h',
875 'quic/quic_bandwidth.cc',
876 'quic/quic_bandwidth.h',
877 'quic/quic_blocked_writer_interface.h',
878 'quic/quic_client_session.cc',
879 'quic/quic_client_session.h',
880 'quic/quic_clock.cc',
881 'quic/quic_clock.h',
882 'quic/quic_config.cc',
883 'quic/quic_config.h',
884 'quic/quic_connection.cc',
885 'quic/quic_connection.h',
886 'quic/quic_connection_helper.cc',
887 'quic/quic_connection_helper.h',
888 'quic/quic_connection_logger.cc',
889 'quic/quic_connection_logger.h',
890 'quic/quic_connection_stats.cc',
891 'quic/quic_connection_stats.h',
892 'quic/quic_crypto_client_stream.cc',
893 'quic/quic_crypto_client_stream.h',
894 'quic/quic_crypto_client_stream_factory.h',
895 'quic/quic_crypto_server_stream.cc',
896 'quic/quic_crypto_server_stream.h',
897 'quic/quic_crypto_stream.cc',
898 'quic/quic_crypto_stream.h',
899 'quic/quic_data_reader.cc',
900 'quic/quic_data_reader.h',
901 'quic/quic_data_stream.cc',
902 'quic/quic_data_stream.h',
903 'quic/quic_data_writer.cc',
904 'quic/quic_data_writer.h',
905 'quic/quic_default_packet_writer.cc',
906 'quic/quic_default_packet_writer.h',
907 'quic/quic_fec_group.cc',
908 'quic/quic_fec_group.h',
909 'quic/quic_framer.cc',
910 'quic/quic_framer.h',
911 'quic/quic_headers_stream.cc',
912 'quic/quic_headers_stream.h',
913 'quic/quic_http_stream.cc',
914 'quic/quic_http_stream.h',
915 'quic/quic_http_utils.cc',
916 'quic/quic_http_utils.h',
917 'quic/quic_packet_creator.cc',
918 'quic/quic_packet_creator.h',
919 'quic/quic_packet_generator.cc',
920 'quic/quic_packet_generator.h',
921 'quic/quic_packet_writer.h',
922 'quic/quic_protocol.cc',
923 'quic/quic_protocol.h',
924 'quic/quic_received_packet_manager.cc',
925 'quic/quic_received_packet_manager.h',
926 'quic/quic_reliable_client_stream.cc',
927 'quic/quic_reliable_client_stream.h',
928 'quic/quic_sent_entropy_manager.cc',
929 'quic/quic_sent_entropy_manager.h',
930 'quic/quic_sent_packet_manager.cc',
931 'quic/quic_sent_packet_manager.h',
932 'quic/quic_session.cc',
933 'quic/quic_session.h',
934 'quic/quic_socket_address_coder.cc',
935 'quic/quic_socket_address_coder.h',
936 'quic/quic_stream_factory.cc',
937 'quic/quic_stream_factory.h',
938 'quic/quic_stream_sequencer.cc',
939 'quic/quic_stream_sequencer.h',
940 'quic/quic_time.cc',
941 'quic/quic_time.h',
942 'quic/quic_unacked_packet_map.cc',
943 'quic/quic_unacked_packet_map.h',
944 'quic/quic_utils.cc',
945 'quic/quic_utils.h',
946 'quic/quic_utils_chromium.h',
947 'quic/quic_write_blocked_list.cc',
948 'quic/quic_write_blocked_list.h',
949 'quic/reliable_quic_stream.cc',
950 'quic/reliable_quic_stream.h',
951 'quic/spdy_utils.cc',
952 'quic/spdy_utils.h',
953 'socket/buffered_write_stream_socket.cc',
954 'socket/buffered_write_stream_socket.h',
955 'socket/client_socket_factory.cc',
956 'socket/client_socket_factory.h',
957 'socket/client_socket_handle.cc',
958 'socket/client_socket_handle.h',
959 'socket/client_socket_pool.cc',
960 'socket/client_socket_pool.h',
961 'socket/client_socket_pool_base.cc',
962 'socket/client_socket_pool_base.h',
963 'socket/client_socket_pool_histograms.cc',
964 'socket/client_socket_pool_histograms.h',
965 'socket/client_socket_pool_manager.cc',
966 'socket/client_socket_pool_manager.h',
967 'socket/client_socket_pool_manager_impl.cc',
968 'socket/client_socket_pool_manager_impl.h',
969 'socket/next_proto.h',
970 'socket/nss_ssl_util.cc',
971 'socket/nss_ssl_util.h',
972 'socket/server_socket.h',
973 'socket/socket_descriptor.cc',
974 'socket/socket_descriptor.h',
975 'socket/socket_net_log_params.cc',
976 'socket/socket_net_log_params.h',
977 'socket/socket.h',
978 'socket/socks5_client_socket.cc',
979 'socket/socks5_client_socket.h',
980 'socket/socks_client_socket.cc',
981 'socket/socks_client_socket.h',
982 'socket/socks_client_socket_pool.cc',
983 'socket/socks_client_socket_pool.h',
984 'socket/ssl_client_socket.cc',
985 'socket/ssl_client_socket.h',
986 'socket/ssl_client_socket_nss.cc',
987 'socket/ssl_client_socket_nss.h',
988 'socket/ssl_client_socket_openssl.cc',
989 'socket/ssl_client_socket_openssl.h',
990 'socket/ssl_client_socket_pool.cc',
991 'socket/ssl_client_socket_pool.h',
992 'socket/ssl_error_params.cc',
993 'socket/ssl_error_params.h',
994 'socket/ssl_server_socket.h',
995 'socket/ssl_server_socket_nss.cc',
996 'socket/ssl_server_socket_nss.h',
997 'socket/ssl_server_socket_openssl.cc',
998 'socket/ssl_session_cache_openssl.cc',
999 'socket/ssl_session_cache_openssl.h',
1000 'socket/ssl_socket.h',
1001 'socket/stream_listen_socket.cc',
1002 'socket/stream_listen_socket.h',
1003 'socket/stream_socket.cc',
1004 'socket/stream_socket.h',
1005 'socket/tcp_client_socket.cc',
1006 'socket/tcp_client_socket.h',
1007 'socket/tcp_listen_socket.cc',
1008 'socket/tcp_listen_socket.h',
1009 'socket/tcp_server_socket.cc',
1010 'socket/tcp_server_socket.h',
1011 'socket/tcp_socket.cc',
1012 'socket/tcp_socket.h',
1013 'socket/tcp_socket_libevent.cc',
1014 'socket/tcp_socket_libevent.h',
1015 'socket/tcp_socket_win.cc',
1016 'socket/tcp_socket_win.h',
1017 'socket/transport_client_socket_pool.cc',
1018 'socket/transport_client_socket_pool.h',
1019 'socket/unix_domain_socket_posix.cc',
1020 'socket/unix_domain_socket_posix.h',
1021 'socket_stream/socket_stream.cc',
1022 'socket_stream/socket_stream.h',
1023 'socket_stream/socket_stream_job.cc',
1024 'socket_stream/socket_stream_job.h',
1025 'socket_stream/socket_stream_job_manager.cc',
1026 'socket_stream/socket_stream_job_manager.h',
1027 'socket_stream/socket_stream_metrics.cc',
1028 'socket_stream/socket_stream_metrics.h',
1029 'spdy/buffered_spdy_framer.cc',
1030 'spdy/buffered_spdy_framer.h',
1031 'spdy/hpack_constants.cc',
1032 'spdy/hpack_constants.h',
1033 'spdy/hpack_decoder.cc',
1034 'spdy/hpack_decoder.h',
1035 'spdy/hpack_encoder.cc',
1036 'spdy/hpack_encoder.h',
1037 'spdy/hpack_encoding_context.cc',
1038 'spdy/hpack_encoding_context.h',
1039 'spdy/hpack_entry.cc',
1040 'spdy/hpack_entry.h',
1041 'spdy/hpack_header_table.cc',
1042 'spdy/hpack_header_table.h',
1043 'spdy/hpack_huffman_table.cc',
1044 'spdy/hpack_huffman_table.h',
1045 'spdy/hpack_input_stream.cc',
1046 'spdy/hpack_input_stream.h',
1047 'spdy/hpack_output_stream.cc',
1048 'spdy/hpack_output_stream.h',
1049 'spdy/hpack_string_util.cc',
1050 'spdy/hpack_string_util.h',
1051 'spdy/spdy_bitmasks.h',
1052 'spdy/spdy_buffer.cc',
1053 'spdy/spdy_buffer.h',
1054 'spdy/spdy_buffer_producer.cc',
1055 'spdy/spdy_buffer_producer.h',
1056 'spdy/spdy_frame_builder.cc',
1057 'spdy/spdy_frame_builder.h',
1058 'spdy/spdy_frame_reader.cc',
1059 'spdy/spdy_frame_reader.h',
1060 'spdy/spdy_framer.cc',
1061 'spdy/spdy_framer.h',
1062 'spdy/spdy_header_block.cc',
1063 'spdy/spdy_header_block.h',
1064 'spdy/spdy_headers_block_parser.cc',
1065 'spdy/spdy_headers_block_parser.h',
1066 'spdy/spdy_http_stream.cc',
1067 'spdy/spdy_http_stream.h',
1068 'spdy/spdy_http_utils.cc',
1069 'spdy/spdy_http_utils.h',
1070 'spdy/spdy_pinnable_buffer_piece.cc',
1071 'spdy/spdy_pinnable_buffer_piece.h',
1072 'spdy/spdy_prefixed_buffer_reader.cc',
1073 'spdy/spdy_prefixed_buffer_reader.h',
1074 'spdy/spdy_priority_forest.h',
1075 'spdy/spdy_protocol.cc',
1076 'spdy/spdy_protocol.h',
1077 'spdy/spdy_proxy_client_socket.cc',
1078 'spdy/spdy_proxy_client_socket.h',
1079 'spdy/spdy_read_queue.cc',
1080 'spdy/spdy_read_queue.h',
1081 'spdy/spdy_session.cc',
1082 'spdy/spdy_session.h',
1083 'spdy/spdy_session_key.cc',
1084 'spdy/spdy_session_key.h',
1085 'spdy/spdy_session_pool.cc',
1086 'spdy/spdy_session_pool.h',
1087 'spdy/spdy_stream.cc',
1088 'spdy/spdy_stream.h',
1089 'spdy/spdy_websocket_stream.cc',
1090 'spdy/spdy_websocket_stream.h',
1091 'spdy/spdy_write_queue.cc',
1092 'spdy/spdy_write_queue.h',
1093 'spdy/write_blocked_list.h',
1094 'ssl/client_cert_store.h',
1095 'ssl/client_cert_store_chromeos.cc',
1096 'ssl/client_cert_store_chromeos.h',
1097 'ssl/client_cert_store_mac.cc',
1098 'ssl/client_cert_store_mac.h',
1099 'ssl/client_cert_store_nss.cc',
1100 'ssl/client_cert_store_nss.h',
1101 'ssl/client_cert_store_win.cc',
1102 'ssl/client_cert_store_win.h',
1103 'ssl/default_server_bound_cert_store.cc',
1104 'ssl/default_server_bound_cert_store.h',
1105 'ssl/openssl_client_key_store.cc',
1106 'ssl/openssl_client_key_store.h',
1107 'ssl/server_bound_cert_service.cc',
1108 'ssl/server_bound_cert_service.h',
1109 'ssl/server_bound_cert_store.cc',
1110 'ssl/server_bound_cert_store.h',
1111 'ssl/signed_certificate_timestamp_and_status.cc',
1112 'ssl/signed_certificate_timestamp_and_status.h',
1113 'ssl/ssl_cert_request_info.cc',
1114 'ssl/ssl_cert_request_info.h',
1115 'ssl/ssl_cipher_suite_names.cc',
1116 'ssl/ssl_cipher_suite_names.h',
1117 'ssl/ssl_client_auth_cache.cc',
1118 'ssl/ssl_client_auth_cache.h',
1119 'ssl/ssl_client_cert_type.h',
1120 'ssl/ssl_config_service.cc',
1121 'ssl/ssl_config_service.h',
1122 'ssl/ssl_config_service_defaults.cc',
1123 'ssl/ssl_config_service_defaults.h',
1124 'ssl/ssl_info.cc',
1125 'ssl/ssl_info.h',
1126 'third_party/mozilla_security_manager/nsKeygenHandler.cpp',
1127 'third_party/mozilla_security_manager/nsKeygenHandler.h',
1128 'third_party/mozilla_security_manager/nsNSSCertificateDB.cpp',
1129 'third_party/mozilla_security_manager/nsNSSCertificateDB.h',
1130 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp',
1131 'third_party/mozilla_security_manager/nsPKCS12Blob.h',
1132 'udp/datagram_client_socket.h',
1133 'udp/datagram_server_socket.h',
1134 'udp/datagram_socket.h',
1135 'udp/udp_client_socket.cc',
1136 'udp/udp_client_socket.h',
1137 'udp/udp_net_log_parameters.cc',
1138 'udp/udp_net_log_parameters.h',
1139 'udp/udp_server_socket.cc',
1140 'udp/udp_server_socket.h',
1141 'udp/udp_socket.h',
1142 'udp/udp_socket_libevent.cc',
1143 'udp/udp_socket_libevent.h',
1144 'udp/udp_socket_win.cc',
1145 'udp/udp_socket_win.h',
1146 'url_request/data_protocol_handler.cc',
1147 'url_request/data_protocol_handler.h',
1148 'url_request/file_protocol_handler.cc',
1149 'url_request/file_protocol_handler.h',
1150 'url_request/fraudulent_certificate_reporter.h',
1151 'url_request/ftp_protocol_handler.cc',
1152 'url_request/ftp_protocol_handler.h',
1153 'url_request/http_user_agent_settings.h',
1154 'url_request/protocol_intercept_job_factory.cc',
1155 'url_request/protocol_intercept_job_factory.h',
1156 'url_request/static_http_user_agent_settings.cc',
1157 'url_request/static_http_user_agent_settings.h',
1158 'url_request/url_fetcher.cc',
1159 'url_request/url_fetcher.h',
1160 'url_request/url_fetcher_core.cc',
1161 'url_request/url_fetcher_core.h',
1162 'url_request/url_fetcher_delegate.cc',
1163 'url_request/url_fetcher_delegate.h',
1164 'url_request/url_fetcher_factory.h',
1165 'url_request/url_fetcher_impl.cc',
1166 'url_request/url_fetcher_impl.h',
1167 'url_request/url_fetcher_response_writer.cc',
1168 'url_request/url_fetcher_response_writer.h',
1169 'url_request/url_range_request_job.cc',
1170 'url_request/url_range_request_job.h',
1171 'url_request/url_request.cc',
1172 'url_request/url_request.h',
1173 'url_request/url_request_about_job.cc',
1174 'url_request/url_request_about_job.h',
1175 'url_request/url_request_context.cc',
1176 'url_request/url_request_context.h',
1177 'url_request/url_request_context_builder.cc',
1178 'url_request/url_request_context_builder.h',
1179 'url_request/url_request_context_getter.cc',
1180 'url_request/url_request_context_getter.h',
1181 'url_request/url_request_context_storage.cc',
1182 'url_request/url_request_context_storage.h',
1183 'url_request/url_request_data_job.cc',
1184 'url_request/url_request_data_job.h',
1185 'url_request/url_request_error_job.cc',
1186 'url_request/url_request_error_job.h',
1187 'url_request/url_request_file_dir_job.cc',
1188 'url_request/url_request_file_dir_job.h',
1189 'url_request/url_request_file_job.cc',
1190 'url_request/url_request_file_job.h',
1191 'url_request/url_request_filter.cc',
1192 'url_request/url_request_filter.h',
1193 'url_request/url_request_ftp_job.cc',
1194 'url_request/url_request_ftp_job.h',
1195 'url_request/url_request_http_job.cc',
1196 'url_request/url_request_http_job.h',
1197 'url_request/url_request_job.cc',
1198 'url_request/url_request_job.h',
1199 'url_request/url_request_job_factory.cc',
1200 'url_request/url_request_job_factory.h',
1201 'url_request/url_request_job_factory_impl.cc',
1202 'url_request/url_request_job_factory_impl.h',
1203 'url_request/url_request_job_manager.cc',
1204 'url_request/url_request_job_manager.h',
1205 'url_request/url_request_netlog_params.cc',
1206 'url_request/url_request_netlog_params.h',
1207 'url_request/url_request_redirect_job.cc',
1208 'url_request/url_request_redirect_job.h',
1209 'url_request/url_request_simple_job.cc',
1210 'url_request/url_request_simple_job.h',
1211 'url_request/url_request_status.h',
1212 'url_request/url_request_test_job.cc',
1213 'url_request/url_request_test_job.h',
1214 'url_request/url_request_throttler_entry.cc',
1215 'url_request/url_request_throttler_entry.h',
1216 'url_request/url_request_throttler_entry_interface.h',
1217 'url_request/url_request_throttler_header_adapter.cc',
1218 'url_request/url_request_throttler_header_adapter.h',
1219 'url_request/url_request_throttler_header_interface.h',
1220 'url_request/url_request_throttler_manager.cc',
1221 'url_request/url_request_throttler_manager.h',
1222 'url_request/view_cache_helper.cc',
1223 'url_request/view_cache_helper.h',
1224 'url_request/websocket_handshake_userdata_key.cc',
1225 'url_request/websocket_handshake_userdata_key.h',
1226 'websockets/websocket_basic_handshake_stream.cc',
1227 'websockets/websocket_basic_handshake_stream.h',
1228 'websockets/websocket_basic_stream.cc',
1229 'websockets/websocket_basic_stream.h',
1230 'websockets/websocket_channel.cc',
1231 'websockets/websocket_channel.h',
1232 'websockets/websocket_deflate_predictor.h',
1233 'websockets/websocket_deflate_predictor_impl.cc',
1234 'websockets/websocket_deflate_predictor_impl.h',
1235 'websockets/websocket_deflate_stream.cc',
1236 'websockets/websocket_deflate_stream.h',
1237 'websockets/websocket_deflater.cc',
1238 'websockets/websocket_deflater.h',
1239 'websockets/websocket_errors.cc',
1240 'websockets/websocket_errors.h',
1241 'websockets/websocket_extension.cc',
1242 'websockets/websocket_extension.h',
1243 'websockets/websocket_extension_parser.cc',
1244 'websockets/websocket_extension_parser.h',
1245 'websockets/websocket_frame.cc',
1246 'websockets/websocket_frame.h',
1247 'websockets/websocket_frame_parser.cc',
1248 'websockets/websocket_frame_parser.h',
1249 'websockets/websocket_handshake_constants.cc',
1250 'websockets/websocket_handshake_constants.h',
1251 'websockets/websocket_handshake_handler.cc',
1252 'websockets/websocket_handshake_handler.h',
1253 'websockets/websocket_handshake_request_info.cc',
1254 'websockets/websocket_handshake_request_info.h',
1255 'websockets/websocket_handshake_response_info.cc',
1256 'websockets/websocket_handshake_response_info.h',
1257 'websockets/websocket_handshake_stream_base.h',
1258 'websockets/websocket_handshake_stream_create_helper.cc',
1259 'websockets/websocket_handshake_stream_create_helper.h',
1260 'websockets/websocket_inflater.cc',
1261 'websockets/websocket_inflater.h',
1262 'websockets/websocket_job.cc',
1263 'websockets/websocket_job.h',
1264 'websockets/websocket_mux.h',
1265 'websockets/websocket_net_log_params.cc',
1266 'websockets/websocket_net_log_params.h',
1267 'websockets/websocket_stream.cc',
1268 'websockets/websocket_stream.h',
1269 'websockets/websocket_throttle.cc',
1270 'websockets/websocket_throttle.h',
1271 ], 65 ],
1272 'defines': [ 66 'defines': [
1273 'NET_IMPLEMENTATION', 67 'NET_IMPLEMENTATION',
1274 ], 68 ],
1275 'export_dependent_settings': [ 69 'export_dependent_settings': [
1276 '../base/base.gyp:base', 70 '../base/base.gyp:base',
1277 ], 71 ],
1278 'conditions': [ 72 'conditions': [
1279 ['chromeos==1', { 73 ['chromeos==1', {
1280 'sources!': [ 74 'sources!': [
(...skipping 1957 matching lines...) Expand 10 before | Expand all | Expand 10 after
3238 'net_unittests.isolate', 2032 'net_unittests.isolate',
3239 ], 2033 ],
3240 'sources': [ 2034 'sources': [
3241 'net_unittests.isolate', 2035 'net_unittests.isolate',
3242 ], 2036 ],
3243 }, 2037 },
3244 ], 2038 ],
3245 }], 2039 }],
3246 ], 2040 ],
3247 } 2041 }
OLDNEW
« net/cert/crl_set.cc ('K') | « net/cert/test_root_certs.cc ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698