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

Side by Side Diff: net/net.gypi

Issue 1660593004: Landing Recent QUIC changes until 01/28/2016 18:41 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0202
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | net/quic/congestion_control/general_loss_algorithm_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This file is shared between the regular GYP build, the NaCl GYP build, and 5 # This file is shared between the regular GYP build, the NaCl GYP build, and
6 # the GN build. For GN support, it must have no conditionals or anything like 6 # the GN build. For GN support, it must have no conditionals or anything like
7 # that beyond the simple one-level-deep dictionary of values. 7 # that beyond the simple one-level-deep dictionary of values.
8 { 8 {
9 'variables': { 9 'variables': {
10 # Subset of net source files that are compiled for NaCl (net_nacl target). 10 # Subset of net source files that are compiled for NaCl (net_nacl target).
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 'quic/congestion_control/prr_sender.cc', 227 'quic/congestion_control/prr_sender.cc',
228 'quic/congestion_control/prr_sender.h', 228 'quic/congestion_control/prr_sender.h',
229 'quic/congestion_control/rtt_stats.cc', 229 'quic/congestion_control/rtt_stats.cc',
230 'quic/congestion_control/rtt_stats.h', 230 'quic/congestion_control/rtt_stats.h',
231 'quic/congestion_control/send_algorithm_interface.cc', 231 'quic/congestion_control/send_algorithm_interface.cc',
232 'quic/congestion_control/send_algorithm_interface.h', 232 'quic/congestion_control/send_algorithm_interface.h',
233 'quic/congestion_control/tcp_cubic_bytes_sender.cc', 233 'quic/congestion_control/tcp_cubic_bytes_sender.cc',
234 'quic/congestion_control/tcp_cubic_bytes_sender.h', 234 'quic/congestion_control/tcp_cubic_bytes_sender.h',
235 'quic/congestion_control/tcp_cubic_sender.cc', 235 'quic/congestion_control/tcp_cubic_sender.cc',
236 'quic/congestion_control/tcp_cubic_sender.h', 236 'quic/congestion_control/tcp_cubic_sender.h',
237 'quic/congestion_control/tcp_loss_algorithm.cc',
238 'quic/congestion_control/tcp_loss_algorithm.h',
239 'quic/congestion_control/time_loss_algorithm.cc',
240 'quic/congestion_control/time_loss_algorithm.h',
241 'quic/crypto/aead_base_decrypter.h', 237 'quic/crypto/aead_base_decrypter.h',
242 'quic/crypto/aead_base_decrypter_openssl.cc', 238 'quic/crypto/aead_base_decrypter_openssl.cc',
243 'quic/crypto/aead_base_encrypter.h', 239 'quic/crypto/aead_base_encrypter.h',
244 'quic/crypto/aead_base_encrypter_openssl.cc', 240 'quic/crypto/aead_base_encrypter_openssl.cc',
245 'quic/crypto/aes_128_gcm_12_decrypter.h', 241 'quic/crypto/aes_128_gcm_12_decrypter.h',
246 'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc', 242 'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc',
247 'quic/crypto/aes_128_gcm_12_encrypter.h', 243 'quic/crypto/aes_128_gcm_12_encrypter.h',
248 'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc', 244 'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc',
249 'quic/crypto/chacha20_poly1305_decrypter.h', 245 'quic/crypto/chacha20_poly1305_decrypter.h',
250 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc', 246 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc',
(...skipping 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after
1530 'quic/congestion_control/cubic_test.cc', 1526 'quic/congestion_control/cubic_test.cc',
1531 'quic/congestion_control/general_loss_algorithm_test.cc', 1527 'quic/congestion_control/general_loss_algorithm_test.cc',
1532 'quic/congestion_control/hybrid_slow_start_test.cc', 1528 'quic/congestion_control/hybrid_slow_start_test.cc',
1533 'quic/congestion_control/pacing_sender_test.cc', 1529 'quic/congestion_control/pacing_sender_test.cc',
1534 'quic/congestion_control/prr_sender_test.cc', 1530 'quic/congestion_control/prr_sender_test.cc',
1535 'quic/congestion_control/rtt_stats_test.cc', 1531 'quic/congestion_control/rtt_stats_test.cc',
1536 'quic/congestion_control/send_algorithm_simulator.cc', 1532 'quic/congestion_control/send_algorithm_simulator.cc',
1537 'quic/congestion_control/send_algorithm_simulator.h', 1533 'quic/congestion_control/send_algorithm_simulator.h',
1538 'quic/congestion_control/tcp_cubic_bytes_sender_test.cc', 1534 'quic/congestion_control/tcp_cubic_bytes_sender_test.cc',
1539 'quic/congestion_control/tcp_cubic_sender_test.cc', 1535 'quic/congestion_control/tcp_cubic_sender_test.cc',
1540 'quic/congestion_control/tcp_loss_algorithm_test.cc',
1541 'quic/congestion_control/time_loss_algorithm_test.cc',
1542 'quic/crypto/aes_128_gcm_12_decrypter_test.cc', 1536 'quic/crypto/aes_128_gcm_12_decrypter_test.cc',
1543 'quic/crypto/aes_128_gcm_12_encrypter_test.cc', 1537 'quic/crypto/aes_128_gcm_12_encrypter_test.cc',
1544 'quic/crypto/cert_compressor_test.cc', 1538 'quic/crypto/cert_compressor_test.cc',
1545 'quic/crypto/chacha20_poly1305_decrypter_test.cc', 1539 'quic/crypto/chacha20_poly1305_decrypter_test.cc',
1546 'quic/crypto/chacha20_poly1305_encrypter_test.cc', 1540 'quic/crypto/chacha20_poly1305_encrypter_test.cc',
1547 'quic/crypto/chacha20_poly1305_rfc7539_decrypter_test.cc', 1541 'quic/crypto/chacha20_poly1305_rfc7539_decrypter_test.cc',
1548 'quic/crypto/chacha20_poly1305_rfc7539_encrypter_test.cc', 1542 'quic/crypto/chacha20_poly1305_rfc7539_encrypter_test.cc',
1549 'quic/crypto/channel_id_test.cc', 1543 'quic/crypto/channel_id_test.cc',
1550 'quic/crypto/common_cert_set_test.cc', 1544 'quic/crypto/common_cert_set_test.cc',
1551 'quic/crypto/crypto_framer_test.cc', 1545 'quic/crypto/crypto_framer_test.cc',
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
1974 'docs/bug-triage-labels.md', 1968 'docs/bug-triage-labels.md',
1975 'docs/bug-triage-suggested-workflow.md', 1969 'docs/bug-triage-suggested-workflow.md',
1976 'docs/code-patterns.md', 1970 'docs/code-patterns.md',
1977 'docs/crash-course-in-net-internals.md', 1971 'docs/crash-course-in-net-internals.md',
1978 'docs/life-of-a-url-request.md', 1972 'docs/life-of-a-url-request.md',
1979 'sdch/README.md', 1973 'sdch/README.md',
1980 ], 1974 ],
1981 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', 1975 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs',
1982 } 1976 }
1983 } 1977 }
OLDNEW
« no previous file with comments | « no previous file | net/quic/congestion_control/general_loss_algorithm_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698