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

Side by Side Diff: net/net.gyp

Issue 6993015: Add unit-tests for SingleRequestHostResolver. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Try to re-upload cuz patch not applying on commit bot... Created 9 years, 6 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
« no previous file with comments | « net/http/http_auth_handler_negotiate.cc ('k') | net/socket/socks_client_socket.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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 'base/platform_mime_util_linux.cc', 170 'base/platform_mime_util_linux.cc',
171 'base/platform_mime_util_mac.cc', 171 'base/platform_mime_util_mac.cc',
172 'base/platform_mime_util_win.cc', 172 'base/platform_mime_util_win.cc',
173 'base/registry_controlled_domain.cc', 173 'base/registry_controlled_domain.cc',
174 'base/registry_controlled_domain.h', 174 'base/registry_controlled_domain.h',
175 'base/scoped_cert_chain_context.h', 175 'base/scoped_cert_chain_context.h',
176 'base/sdch_filter.cc', 176 'base/sdch_filter.cc',
177 'base/sdch_filter.h', 177 'base/sdch_filter.h',
178 'base/sdch_manager.cc', 178 'base/sdch_manager.cc',
179 'base/sdch_manager.h', 179 'base/sdch_manager.h',
180 'base/single_request_host_resolver.cc',
181 'base/single_request_host_resolver.h',
180 'base/ssl_cert_request_info.cc', 182 'base/ssl_cert_request_info.cc',
181 'base/ssl_cert_request_info.h', 183 'base/ssl_cert_request_info.h',
182 'base/ssl_cipher_suite_names.cc', 184 'base/ssl_cipher_suite_names.cc',
183 'base/ssl_cipher_suite_names.h', 185 'base/ssl_cipher_suite_names.h',
184 'base/ssl_client_auth_cache.cc', 186 'base/ssl_client_auth_cache.cc',
185 'base/ssl_client_auth_cache.h', 187 'base/ssl_client_auth_cache.h',
186 'base/ssl_config_service.cc', 188 'base/ssl_config_service.cc',
187 'base/ssl_config_service.h', 189 'base/ssl_config_service.h',
188 'base/ssl_config_service_defaults.cc', 190 'base/ssl_config_service_defaults.cc',
189 'base/ssl_config_service_defaults.h', 191 'base/ssl_config_service_defaults.h',
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
858 'base/mime_util_unittest.cc', 860 'base/mime_util_unittest.cc',
859 'base/mock_filter_context.cc', 861 'base/mock_filter_context.cc',
860 'base/mock_filter_context.h', 862 'base/mock_filter_context.h',
861 'base/net_log_unittest.cc', 863 'base/net_log_unittest.cc',
862 'base/net_log_unittest.h', 864 'base/net_log_unittest.h',
863 'base/net_util_unittest.cc', 865 'base/net_util_unittest.cc',
864 'base/pem_tokenizer_unittest.cc', 866 'base/pem_tokenizer_unittest.cc',
865 'base/registry_controlled_domain_unittest.cc', 867 'base/registry_controlled_domain_unittest.cc',
866 'base/run_all_unittests.cc', 868 'base/run_all_unittests.cc',
867 'base/sdch_filter_unittest.cc', 869 'base/sdch_filter_unittest.cc',
870 'base/single_request_host_resolver_unittest.cc',
868 'base/ssl_cipher_suite_names_unittest.cc', 871 'base/ssl_cipher_suite_names_unittest.cc',
869 'base/ssl_client_auth_cache_unittest.cc', 872 'base/ssl_client_auth_cache_unittest.cc',
870 'base/ssl_config_service_unittest.cc', 873 'base/ssl_config_service_unittest.cc',
871 'base/ssl_false_start_blacklist_unittest.cc', 874 'base/ssl_false_start_blacklist_unittest.cc',
872 'base/static_cookie_policy_unittest.cc', 875 'base/static_cookie_policy_unittest.cc',
873 'base/transport_security_state_unittest.cc', 876 'base/transport_security_state_unittest.cc',
874 'base/test_certificate_data.h', 877 'base/test_certificate_data.h',
875 'base/test_completion_callback_unittest.cc', 878 'base/test_completion_callback_unittest.cc',
876 'base/upload_data_stream_unittest.cc', 879 'base/upload_data_stream_unittest.cc',
877 'base/x509_certificate_unittest.cc', 880 'base/x509_certificate_unittest.cc',
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 ], 1445 ],
1443 }], 1446 }],
1444 ], 1447 ],
1445 } 1448 }
1446 1449
1447 # Local Variables: 1450 # Local Variables:
1448 # tab-width:2 1451 # tab-width:2
1449 # indent-tabs-mode:nil 1452 # indent-tabs-mode:nil
1450 # End: 1453 # End:
1451 # vim: set expandtab tabstop=2 shiftwidth=2: 1454 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « net/http/http_auth_handler_negotiate.cc ('k') | net/socket/socks_client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698