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

Side by Side Diff: net/net.gyp

Issue 10907241: Revert 156846 - Http Cache: Add code for simulating an infinite HTTP cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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/infinite_cache_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Deleted: svn:mergeinfo
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'conditions': [ 10 'conditions': [
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 'http/http_stream_parser.h', 536 'http/http_stream_parser.h',
537 'http/http_transaction.h', 537 'http/http_transaction.h',
538 'http/http_transaction_delegate.h', 538 'http/http_transaction_delegate.h',
539 'http/http_transaction_factory.h', 539 'http/http_transaction_factory.h',
540 'http/http_util.cc', 540 'http/http_util.cc',
541 'http/http_util.h', 541 'http/http_util.h',
542 'http/http_util_icu.cc', 542 'http/http_util_icu.cc',
543 'http/http_vary_data.cc', 543 'http/http_vary_data.cc',
544 'http/http_vary_data.h', 544 'http/http_vary_data.h',
545 'http/http_version.h', 545 'http/http_version.h',
546 'http/infinite_cache.cc',
547 'http/infinite_cache.h',
548 'http/md4.cc', 546 'http/md4.cc',
549 'http/md4.h', 547 'http/md4.h',
550 'http/partial_data.cc', 548 'http/partial_data.cc',
551 'http/partial_data.h', 549 'http/partial_data.h',
552 'http/proxy_client_socket.h', 550 'http/proxy_client_socket.h',
553 'http/proxy_client_socket.cc', 551 'http/proxy_client_socket.cc',
554 'http/url_security_manager.cc', 552 'http/url_security_manager.cc',
555 'http/url_security_manager.h', 553 'http/url_security_manager.h',
556 'http/url_security_manager_posix.cc', 554 'http/url_security_manager_posix.cc',
557 'http/url_security_manager_win.cc', 555 'http/url_security_manager_win.cc',
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
1314 'http/http_request_headers_unittest.cc', 1312 'http/http_request_headers_unittest.cc',
1315 'http/http_response_body_drainer_unittest.cc', 1313 'http/http_response_body_drainer_unittest.cc',
1316 'http/http_response_headers_unittest.cc', 1314 'http/http_response_headers_unittest.cc',
1317 'http/http_server_properties_impl_unittest.cc', 1315 'http/http_server_properties_impl_unittest.cc',
1318 'http/http_stream_factory_impl_unittest.cc', 1316 'http/http_stream_factory_impl_unittest.cc',
1319 'http/http_stream_parser_unittest.cc', 1317 'http/http_stream_parser_unittest.cc',
1320 'http/http_transaction_unittest.cc', 1318 'http/http_transaction_unittest.cc',
1321 'http/http_transaction_unittest.h', 1319 'http/http_transaction_unittest.h',
1322 'http/http_util_unittest.cc', 1320 'http/http_util_unittest.cc',
1323 'http/http_vary_data_unittest.cc', 1321 'http/http_vary_data_unittest.cc',
1324 'http/infinite_cache_unittest.cc',
1325 'http/mock_allow_url_security_manager.cc', 1322 'http/mock_allow_url_security_manager.cc',
1326 'http/mock_allow_url_security_manager.h', 1323 'http/mock_allow_url_security_manager.h',
1327 'http/mock_gssapi_library_posix.cc', 1324 'http/mock_gssapi_library_posix.cc',
1328 'http/mock_gssapi_library_posix.h', 1325 'http/mock_gssapi_library_posix.h',
1329 'http/mock_http_cache.cc', 1326 'http/mock_http_cache.cc',
1330 'http/mock_http_cache.h', 1327 'http/mock_http_cache.h',
1331 'http/mock_sspi_library_win.cc', 1328 'http/mock_sspi_library_win.cc',
1332 'http/mock_sspi_library_win.h', 1329 'http/mock_sspi_library_win.h',
1333 'http/url_security_manager_unittest.cc', 1330 'http/url_security_manager_unittest.cc',
1334 'proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc', 1331 'proxy/dhcp_proxy_script_adapter_fetcher_win_unittest.cc',
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after
2259 '--result', '<@(_outputs)', 2256 '--result', '<@(_outputs)',
2260 '--isolate', 'net_unittests.isolate', 2257 '--isolate', 'net_unittests.isolate',
2261 ], 2258 ],
2262 }, 2259 },
2263 ], 2260 ],
2264 }, 2261 },
2265 ], 2262 ],
2266 }], 2263 }],
2267 ], 2264 ],
2268 } 2265 }
OLDNEW
« no previous file with comments | « net/http/infinite_cache_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698