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

Side by Side Diff: net/net.gypi

Issue 329733002: Disk Based Certificate Cache Implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improved flow and added set overwrite functionality. Created 6 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
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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 'ftp/ftp_response_info.cc', 554 'ftp/ftp_response_info.cc',
555 'ftp/ftp_response_info.h', 555 'ftp/ftp_response_info.h',
556 'ftp/ftp_server_type_histograms.cc', 556 'ftp/ftp_server_type_histograms.cc',
557 'ftp/ftp_server_type_histograms.h', 557 'ftp/ftp_server_type_histograms.h',
558 'ftp/ftp_transaction.h', 558 'ftp/ftp_transaction.h',
559 'ftp/ftp_transaction_factory.h', 559 'ftp/ftp_transaction_factory.h',
560 'ftp/ftp_util.cc', 560 'ftp/ftp_util.cc',
561 'ftp/ftp_util.h', 561 'ftp/ftp_util.h',
562 'http/des.cc', 562 'http/des.cc',
563 'http/des.h', 563 'http/des.h',
564 'http/disk_based_cert_cache.h',
565 'http/disk_based_cert_cache.cc',
wtc 2014/06/12 03:13:17 Nit: list .cc before .h. See the other files as ex
564 'http/disk_cache_based_quic_server_info.cc', 566 'http/disk_cache_based_quic_server_info.cc',
565 'http/disk_cache_based_quic_server_info.h', 567 'http/disk_cache_based_quic_server_info.h',
566 'http/failing_http_transaction_factory.cc', 568 'http/failing_http_transaction_factory.cc',
567 'http/failing_http_transaction_factory.h', 569 'http/failing_http_transaction_factory.h',
568 'http/http_atom_list.h', 570 'http/http_atom_list.h',
569 'http/http_auth.cc', 571 'http/http_auth.cc',
570 'http/http_auth.h', 572 'http/http_auth.h',
571 'http/http_auth_cache.cc', 573 'http/http_auth_cache.cc',
572 'http/http_auth_cache.h', 574 'http/http_auth_cache.h',
573 'http/http_auth_controller.cc', 575 'http/http_auth_controller.cc',
(...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after
1321 'ftp/ftp_directory_listing_parser_ls_unittest.cc', 1323 'ftp/ftp_directory_listing_parser_ls_unittest.cc',
1322 'ftp/ftp_directory_listing_parser_netware_unittest.cc', 1324 'ftp/ftp_directory_listing_parser_netware_unittest.cc',
1323 'ftp/ftp_directory_listing_parser_os2_unittest.cc', 1325 'ftp/ftp_directory_listing_parser_os2_unittest.cc',
1324 'ftp/ftp_directory_listing_parser_unittest.cc', 1326 'ftp/ftp_directory_listing_parser_unittest.cc',
1325 'ftp/ftp_directory_listing_parser_unittest.h', 1327 'ftp/ftp_directory_listing_parser_unittest.h',
1326 'ftp/ftp_directory_listing_parser_vms_unittest.cc', 1328 'ftp/ftp_directory_listing_parser_vms_unittest.cc',
1327 'ftp/ftp_directory_listing_parser_windows_unittest.cc', 1329 'ftp/ftp_directory_listing_parser_windows_unittest.cc',
1328 'ftp/ftp_network_transaction_unittest.cc', 1330 'ftp/ftp_network_transaction_unittest.cc',
1329 'ftp/ftp_util_unittest.cc', 1331 'ftp/ftp_util_unittest.cc',
1330 'http/des_unittest.cc', 1332 'http/des_unittest.cc',
1333 'http/disk_based_cert_cache_unittest.cc',
1331 'http/disk_cache_based_quic_server_info_unittest.cc', 1334 'http/disk_cache_based_quic_server_info_unittest.cc',
1332 'http/http_auth_cache_unittest.cc', 1335 'http/http_auth_cache_unittest.cc',
1333 'http/http_auth_challenge_tokenizer_unittest.cc', 1336 'http/http_auth_challenge_tokenizer_unittest.cc',
1334 'http/http_auth_controller_unittest.cc', 1337 'http/http_auth_controller_unittest.cc',
1335 'http/http_auth_filter_unittest.cc', 1338 'http/http_auth_filter_unittest.cc',
1336 'http/http_auth_gssapi_posix_unittest.cc', 1339 'http/http_auth_gssapi_posix_unittest.cc',
1337 'http/http_auth_handler_basic_unittest.cc', 1340 'http/http_auth_handler_basic_unittest.cc',
1338 'http/http_auth_handler_digest_unittest.cc', 1341 'http/http_auth_handler_digest_unittest.cc',
1339 'http/http_auth_handler_factory_unittest.cc', 1342 'http/http_auth_handler_factory_unittest.cc',
1340 'http/http_auth_handler_mock.cc', 1343 'http/http_auth_handler_mock.cc',
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1684 'tools/quic/test_tools/quic_test_client.h', 1687 'tools/quic/test_tools/quic_test_client.h',
1685 'tools/quic/test_tools/quic_test_utils.cc', 1688 'tools/quic/test_tools/quic_test_utils.cc',
1686 'tools/quic/test_tools/quic_test_utils.h', 1689 'tools/quic/test_tools/quic_test_utils.h',
1687 'tools/quic/test_tools/server_thread.h', 1690 'tools/quic/test_tools/server_thread.h',
1688 'tools/quic/test_tools/server_thread.cc', 1691 'tools/quic/test_tools/server_thread.cc',
1689 'tools/quic/test_tools/simple_client.h', 1692 'tools/quic/test_tools/simple_client.h',
1690 'tools/quic/test_tools/simple_client.cc', 1693 'tools/quic/test_tools/simple_client.cc',
1691 ], 1694 ],
1692 } 1695 }
1693 } 1696 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698