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

Side by Side Diff: net/net.gypi

Issue 1854273002: Remove the non-RFC 7539 variants of ChaCha20Poly1305 crypters in QUIC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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
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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 'quic/congestion_control/tcp_cubic_sender_packets.cc', 246 'quic/congestion_control/tcp_cubic_sender_packets.cc',
247 'quic/congestion_control/tcp_cubic_sender_packets.h', 247 'quic/congestion_control/tcp_cubic_sender_packets.h',
248 'quic/crypto/aead_base_decrypter.h', 248 'quic/crypto/aead_base_decrypter.h',
249 'quic/crypto/aead_base_decrypter_openssl.cc', 249 'quic/crypto/aead_base_decrypter_openssl.cc',
250 'quic/crypto/aead_base_encrypter.h', 250 'quic/crypto/aead_base_encrypter.h',
251 'quic/crypto/aead_base_encrypter_openssl.cc', 251 'quic/crypto/aead_base_encrypter_openssl.cc',
252 'quic/crypto/aes_128_gcm_12_decrypter.h', 252 'quic/crypto/aes_128_gcm_12_decrypter.h',
253 'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc', 253 'quic/crypto/aes_128_gcm_12_decrypter_openssl.cc',
254 'quic/crypto/aes_128_gcm_12_encrypter.h', 254 'quic/crypto/aes_128_gcm_12_encrypter.h',
255 'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc', 255 'quic/crypto/aes_128_gcm_12_encrypter_openssl.cc',
256 'quic/crypto/chacha20_poly1305_decrypter.h',
257 'quic/crypto/chacha20_poly1305_decrypter_openssl.cc',
258 'quic/crypto/chacha20_poly1305_encrypter.h',
259 'quic/crypto/chacha20_poly1305_encrypter_openssl.cc',
260 'quic/crypto/chacha20_poly1305_rfc7539_decrypter.h', 256 'quic/crypto/chacha20_poly1305_rfc7539_decrypter.h',
261 'quic/crypto/chacha20_poly1305_rfc7539_decrypter_openssl.cc', 257 'quic/crypto/chacha20_poly1305_rfc7539_decrypter_openssl.cc',
262 'quic/crypto/chacha20_poly1305_rfc7539_encrypter.h', 258 'quic/crypto/chacha20_poly1305_rfc7539_encrypter.h',
263 'quic/crypto/chacha20_poly1305_rfc7539_encrypter_openssl.cc', 259 'quic/crypto/chacha20_poly1305_rfc7539_encrypter_openssl.cc',
264 'quic/crypto/channel_id.cc', 260 'quic/crypto/channel_id.cc',
265 'quic/crypto/channel_id.h', 261 'quic/crypto/channel_id.h',
266 'quic/crypto/channel_id_chromium.cc', 262 'quic/crypto/channel_id_chromium.cc',
267 'quic/crypto/channel_id_chromium.h', 263 'quic/crypto/channel_id_chromium.h',
268 'quic/crypto/channel_id_openssl.cc', 264 'quic/crypto/channel_id_openssl.cc',
269 'quic/crypto/common_cert_set.cc', 265 'quic/crypto/common_cert_set.cc',
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 'proxy/proxy_service.cc', 999 'proxy/proxy_service.cc',
1004 'proxy/proxy_service.h', 1000 'proxy/proxy_service.h',
1005 'quic/bidirectional_stream_quic_impl.cc', 1001 'quic/bidirectional_stream_quic_impl.cc',
1006 'quic/bidirectional_stream_quic_impl.h', 1002 'quic/bidirectional_stream_quic_impl.h',
1007 'quic/crypto/aead_base_decrypter_nss.cc', 1003 'quic/crypto/aead_base_decrypter_nss.cc',
1008 'quic/crypto/aead_base_encrypter_nss.cc', 1004 'quic/crypto/aead_base_encrypter_nss.cc',
1009 'quic/crypto/aes_128_gcm_12_decrypter_nss.cc', 1005 'quic/crypto/aes_128_gcm_12_decrypter_nss.cc',
1010 'quic/crypto/aes_128_gcm_12_encrypter_nss.cc', 1006 'quic/crypto/aes_128_gcm_12_encrypter_nss.cc',
1011 'quic/crypto/cert_compressor.cc', 1007 'quic/crypto/cert_compressor.cc',
1012 'quic/crypto/cert_compressor.h', 1008 'quic/crypto/cert_compressor.h',
1013 'quic/crypto/chacha20_poly1305_decrypter_nss.cc',
1014 'quic/crypto/chacha20_poly1305_encrypter_nss.cc',
1015 'quic/crypto/chacha20_poly1305_rfc7539_decrypter_nss.cc', 1009 'quic/crypto/chacha20_poly1305_rfc7539_decrypter_nss.cc',
1016 'quic/crypto/chacha20_poly1305_rfc7539_encrypter_nss.cc', 1010 'quic/crypto/chacha20_poly1305_rfc7539_encrypter_nss.cc',
1017 'quic/crypto/channel_id_nss.cc', 1011 'quic/crypto/channel_id_nss.cc',
1018 'quic/crypto/p256_key_exchange_nss.cc', 1012 'quic/crypto/p256_key_exchange_nss.cc',
1019 'quic/crypto/proof_source_chromium.h', 1013 'quic/crypto/proof_source_chromium.h',
1020 'quic/crypto/proof_source_chromium_nss.cc', 1014 'quic/crypto/proof_source_chromium_nss.cc',
1021 'quic/crypto/proof_source_chromium_openssl.cc', 1015 'quic/crypto/proof_source_chromium_openssl.cc',
1022 'quic/crypto/quic_compressed_certs_cache.cc', 1016 'quic/crypto/quic_compressed_certs_cache.cc',
1023 'quic/crypto/quic_compressed_certs_cache.h', 1017 'quic/crypto/quic_compressed_certs_cache.h',
1024 'quic/crypto/quic_crypto_client_config.cc', 1018 'quic/crypto/quic_crypto_client_config.cc',
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
1578 'quic/congestion_control/pacing_sender_test.cc', 1572 'quic/congestion_control/pacing_sender_test.cc',
1579 'quic/congestion_control/prr_sender_test.cc', 1573 'quic/congestion_control/prr_sender_test.cc',
1580 'quic/congestion_control/rtt_stats_test.cc', 1574 'quic/congestion_control/rtt_stats_test.cc',
1581 'quic/congestion_control/send_algorithm_simulator.cc', 1575 'quic/congestion_control/send_algorithm_simulator.cc',
1582 'quic/congestion_control/send_algorithm_simulator.h', 1576 'quic/congestion_control/send_algorithm_simulator.h',
1583 'quic/congestion_control/tcp_cubic_sender_bytes_test.cc', 1577 'quic/congestion_control/tcp_cubic_sender_bytes_test.cc',
1584 'quic/congestion_control/tcp_cubic_sender_packets_test.cc', 1578 'quic/congestion_control/tcp_cubic_sender_packets_test.cc',
1585 'quic/crypto/aes_128_gcm_12_decrypter_test.cc', 1579 'quic/crypto/aes_128_gcm_12_decrypter_test.cc',
1586 'quic/crypto/aes_128_gcm_12_encrypter_test.cc', 1580 'quic/crypto/aes_128_gcm_12_encrypter_test.cc',
1587 'quic/crypto/cert_compressor_test.cc', 1581 'quic/crypto/cert_compressor_test.cc',
1588 'quic/crypto/chacha20_poly1305_decrypter_test.cc',
1589 'quic/crypto/chacha20_poly1305_encrypter_test.cc',
1590 'quic/crypto/chacha20_poly1305_rfc7539_decrypter_test.cc', 1582 'quic/crypto/chacha20_poly1305_rfc7539_decrypter_test.cc',
1591 'quic/crypto/chacha20_poly1305_rfc7539_encrypter_test.cc', 1583 'quic/crypto/chacha20_poly1305_rfc7539_encrypter_test.cc',
1592 'quic/crypto/channel_id_test.cc', 1584 'quic/crypto/channel_id_test.cc',
1593 'quic/crypto/common_cert_set_test.cc', 1585 'quic/crypto/common_cert_set_test.cc',
1594 'quic/crypto/crypto_framer_test.cc', 1586 'quic/crypto/crypto_framer_test.cc',
1595 'quic/crypto/crypto_handshake_message_test.cc', 1587 'quic/crypto/crypto_handshake_message_test.cc',
1596 'quic/crypto/crypto_secret_boxer_test.cc', 1588 'quic/crypto/crypto_secret_boxer_test.cc',
1597 'quic/crypto/crypto_server_test.cc', 1589 'quic/crypto/crypto_server_test.cc',
1598 'quic/crypto/crypto_utils_test.cc', 1590 'quic/crypto/crypto_utils_test.cc',
1599 'quic/crypto/curve25519_key_exchange_test.cc', 1591 'quic/crypto/curve25519_key_exchange_test.cc',
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
2016 'docs/bug-triage-labels.md', 2008 'docs/bug-triage-labels.md',
2017 'docs/bug-triage-suggested-workflow.md', 2009 'docs/bug-triage-suggested-workflow.md',
2018 'docs/code-patterns.md', 2010 'docs/code-patterns.md',
2019 'docs/crash-course-in-net-internals.md', 2011 'docs/crash-course-in-net-internals.md',
2020 'docs/life-of-a-url-request.md', 2012 'docs/life-of-a-url-request.md',
2021 'sdch/README.md', 2013 'sdch/README.md',
2022 ], 2014 ],
2023 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', 2015 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs',
2024 } 2016 }
2025 } 2017 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698