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

Side by Side Diff: net/net.gypi

Issue 2429173004: Move FakeProofSource into its own library (Closed)
Patch Set: Created 4 years, 2 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/test_tools/fake_proof_source.h » ('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 1723 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 'quic/core/quic_utils_test.cc', 1734 'quic/core/quic_utils_test.cc',
1735 'quic/core/quic_write_blocked_list_test.cc', 1735 'quic/core/quic_write_blocked_list_test.cc',
1736 'quic/core/reliable_quic_stream_test.cc', 1736 'quic/core/reliable_quic_stream_test.cc',
1737 'quic/core/spdy_utils_test.cc', 1737 'quic/core/spdy_utils_test.cc',
1738 'quic/core/quic_stream_sequencer_buffer_test.cc', 1738 'quic/core/quic_stream_sequencer_buffer_test.cc',
1739 'quic/test_tools/crypto_test_utils.cc', 1739 'quic/test_tools/crypto_test_utils.cc',
1740 'quic/test_tools/crypto_test_utils.h', 1740 'quic/test_tools/crypto_test_utils.h',
1741 'quic/test_tools/crypto_test_utils_test.cc', 1741 'quic/test_tools/crypto_test_utils_test.cc',
1742 'quic/test_tools/delayed_verify_strike_register_client.cc', 1742 'quic/test_tools/delayed_verify_strike_register_client.cc',
1743 'quic/test_tools/delayed_verify_strike_register_client.h', 1743 'quic/test_tools/delayed_verify_strike_register_client.h',
1744 'quic/test_tools/fake_proof_source.cc',
1745 'quic/test_tools/fake_proof_source.h',
1744 'quic/test_tools/mock_clock.cc', 1746 'quic/test_tools/mock_clock.cc',
1745 'quic/test_tools/mock_clock.h', 1747 'quic/test_tools/mock_clock.h',
1746 'quic/test_tools/mock_crypto_client_stream.cc', 1748 'quic/test_tools/mock_crypto_client_stream.cc',
1747 'quic/test_tools/mock_crypto_client_stream.h', 1749 'quic/test_tools/mock_crypto_client_stream.h',
1748 'quic/test_tools/mock_crypto_client_stream_factory.cc', 1750 'quic/test_tools/mock_crypto_client_stream_factory.cc',
1749 'quic/test_tools/mock_crypto_client_stream_factory.h', 1751 'quic/test_tools/mock_crypto_client_stream_factory.h',
1750 'quic/test_tools/mock_quic_client_promised_info.cc', 1752 'quic/test_tools/mock_quic_client_promised_info.cc',
1751 'quic/test_tools/mock_quic_client_promised_info.h', 1753 'quic/test_tools/mock_quic_client_promised_info.h',
1752 'quic/test_tools/mock_quic_dispatcher.cc', 1754 'quic/test_tools/mock_quic_dispatcher.cc',
1753 'quic/test_tools/mock_quic_dispatcher.h', 1755 'quic/test_tools/mock_quic_dispatcher.h',
(...skipping 1519 matching lines...) Expand 10 before | Expand all | Expand 10 after
3273 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl', 3275 'third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl',
3274 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl', 3276 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl',
3275 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl', 3277 'third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl',
3276 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl', 3278 'third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl',
3277 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl', 3279 'third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl',
3278 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl', 3280 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl',
3279 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l', 3281 'third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.cr l',
3280 ], 3282 ],
3281 } 3283 }
3282 } 3284 }
OLDNEW
« no previous file with comments | « no previous file | net/quic/test_tools/fake_proof_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698