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

Side by Side Diff: net/net.gyp

Issue 9703011: Move the cookie store implementation into its own directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: net/base/cookies/ -> net/cookies/ Created 8 years, 9 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/cookies/cookie_util_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')
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 'base/cert_database_win.cc', 68 'base/cert_database_win.cc',
69 'base/cert_status_flags.cc', 69 'base/cert_status_flags.cc',
70 'base/cert_status_flags.h', 70 'base/cert_status_flags.h',
71 'base/cert_verifier.cc', 71 'base/cert_verifier.cc',
72 'base/cert_verifier.h', 72 'base/cert_verifier.h',
73 'base/cert_verify_result.cc', 73 'base/cert_verify_result.cc',
74 'base/cert_verify_result.h', 74 'base/cert_verify_result.h',
75 'base/completion_callback.h', 75 'base/completion_callback.h',
76 'base/connection_type_histograms.cc', 76 'base/connection_type_histograms.cc',
77 'base/connection_type_histograms.h', 77 'base/connection_type_histograms.h',
78 'base/cookie_monster.cc',
79 'base/cookie_monster.h',
80 'base/cookie_options.h',
81 'base/cookie_store.cc',
82 'base/cookie_store.h',
83 'base/cookie_util.cc',
84 'base/cookie_util.h',
85 'base/crl_set.cc', 78 'base/crl_set.cc',
86 'base/crl_set.h', 79 'base/crl_set.h',
87 'base/crypto_module.h', 80 'base/crypto_module.h',
88 'base/crypto_module_nss.cc', 81 'base/crypto_module_nss.cc',
89 'base/crypto_module_openssl.cc', 82 'base/crypto_module_openssl.cc',
90 'base/data_url.cc', 83 'base/data_url.cc',
91 'base/data_url.h', 84 'base/data_url.h',
92 'base/default_origin_bound_cert_store.cc', 85 'base/default_origin_bound_cert_store.cc',
93 'base/default_origin_bound_cert_store.h', 86 'base/default_origin_bound_cert_store.h',
94 'base/directory_lister.cc', 87 'base/directory_lister.cc',
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 'base/x509_certificate_nss.cc', 262 'base/x509_certificate_nss.cc',
270 'base/x509_certificate_openssl.cc', 263 'base/x509_certificate_openssl.cc',
271 'base/x509_certificate_win.cc', 264 'base/x509_certificate_win.cc',
272 'base/x509_util.h', 265 'base/x509_util.h',
273 'base/x509_util_nss.cc', 266 'base/x509_util_nss.cc',
274 'base/x509_util_nss.h', 267 'base/x509_util_nss.h',
275 'base/x509_util_openssl.cc', 268 'base/x509_util_openssl.cc',
276 'base/x509_util_openssl.h', 269 'base/x509_util_openssl.h',
277 'base/zap.cc', 270 'base/zap.cc',
278 'base/zap.h', 271 'base/zap.h',
272 'cookies/cookie_monster.cc',
273 'cookies/cookie_monster.h',
274 'cookies/cookie_options.h',
275 'cookies/cookie_store.cc',
276 'cookies/cookie_store.h',
277 'cookies/cookie_util.cc',
278 'cookies/cookie_util.h',
279 'disk_cache/addr.cc', 279 'disk_cache/addr.cc',
280 'disk_cache/addr.h', 280 'disk_cache/addr.h',
281 'disk_cache/backend_impl.cc', 281 'disk_cache/backend_impl.cc',
282 'disk_cache/backend_impl.h', 282 'disk_cache/backend_impl.h',
283 'disk_cache/bitmap.cc', 283 'disk_cache/bitmap.cc',
284 'disk_cache/bitmap.h', 284 'disk_cache/bitmap.h',
285 'disk_cache/block_files.cc', 285 'disk_cache/block_files.cc',
286 'disk_cache/block_files.h', 286 'disk_cache/block_files.h',
287 'disk_cache/cache_util.h', 287 'disk_cache/cache_util.h',
288 'disk_cache/cache_util_posix.cc', 288 'disk_cache/cache_util_posix.cc',
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 '../testing/gmock.gyp:gmock', 1014 '../testing/gmock.gyp:gmock',
1015 '../testing/gtest.gyp:gtest', 1015 '../testing/gtest.gyp:gtest',
1016 '../third_party/zlib/zlib.gyp:zlib', 1016 '../third_party/zlib/zlib.gyp:zlib',
1017 ], 1017 ],
1018 'sources': [ 1018 'sources': [
1019 'base/address_list_unittest.cc', 1019 'base/address_list_unittest.cc',
1020 'base/backoff_entry_unittest.cc', 1020 'base/backoff_entry_unittest.cc',
1021 'base/big_endian_unittest.cc', 1021 'base/big_endian_unittest.cc',
1022 'base/cert_database_nss_unittest.cc', 1022 'base/cert_database_nss_unittest.cc',
1023 'base/cert_verifier_unittest.cc', 1023 'base/cert_verifier_unittest.cc',
1024 'base/cookie_monster_unittest.cc',
1025 'base/cookie_store_unittest.h',
1026 'base/cookie_util_unittest.cc',
1027 'base/crl_set_unittest.cc', 1024 'base/crl_set_unittest.cc',
1028 'base/data_url_unittest.cc', 1025 'base/data_url_unittest.cc',
1029 'base/default_origin_bound_cert_store_unittest.cc', 1026 'base/default_origin_bound_cert_store_unittest.cc',
1030 'base/directory_lister_unittest.cc', 1027 'base/directory_lister_unittest.cc',
1031 'base/dnssec_unittest.cc', 1028 'base/dnssec_unittest.cc',
1032 'base/dns_util_unittest.cc', 1029 'base/dns_util_unittest.cc',
1033 'base/dnsrr_resolver_unittest.cc', 1030 'base/dnsrr_resolver_unittest.cc',
1034 'base/escape_unittest.cc', 1031 'base/escape_unittest.cc',
1035 'base/expiring_cache_unittest.cc', 1032 'base/expiring_cache_unittest.cc',
1036 'base/file_stream_unittest.cc', 1033 'base/file_stream_unittest.cc',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 'base/static_cookie_policy_unittest.cc', 1066 'base/static_cookie_policy_unittest.cc',
1070 'base/test_certificate_data.h', 1067 'base/test_certificate_data.h',
1071 'base/test_completion_callback_unittest.cc', 1068 'base/test_completion_callback_unittest.cc',
1072 'base/transport_security_state_unittest.cc', 1069 'base/transport_security_state_unittest.cc',
1073 'base/upload_data_unittest.cc', 1070 'base/upload_data_unittest.cc',
1074 'base/upload_data_stream_unittest.cc', 1071 'base/upload_data_stream_unittest.cc',
1075 'base/x509_certificate_unittest.cc', 1072 'base/x509_certificate_unittest.cc',
1076 'base/x509_cert_types_unittest.cc', 1073 'base/x509_cert_types_unittest.cc',
1077 'base/x509_util_nss_unittest.cc', 1074 'base/x509_util_nss_unittest.cc',
1078 'base/x509_util_openssl_unittest.cc', 1075 'base/x509_util_openssl_unittest.cc',
1076 'cookies/cookie_monster_unittest.cc',
1077 'cookies/cookie_store_unittest.h',
1078 'cookies/cookie_util_unittest.cc',
1079 'disk_cache/addr_unittest.cc', 1079 'disk_cache/addr_unittest.cc',
1080 'disk_cache/backend_unittest.cc', 1080 'disk_cache/backend_unittest.cc',
1081 'disk_cache/bitmap_unittest.cc', 1081 'disk_cache/bitmap_unittest.cc',
1082 'disk_cache/block_files_unittest.cc', 1082 'disk_cache/block_files_unittest.cc',
1083 'disk_cache/cache_util_unittest.cc', 1083 'disk_cache/cache_util_unittest.cc',
1084 'disk_cache/entry_unittest.cc', 1084 'disk_cache/entry_unittest.cc',
1085 'disk_cache/mapped_file_unittest.cc', 1085 'disk_cache/mapped_file_unittest.cc',
1086 'disk_cache/storage_block_unittest.cc', 1086 'disk_cache/storage_block_unittest.cc',
1087 'dns/dns_config_service_posix_unittest.cc', 1087 'dns/dns_config_service_posix_unittest.cc',
1088 'dns/dns_config_service_unittest.cc', 1088 'dns/dns_config_service_unittest.cc',
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
1420 'dependencies': [ 1420 'dependencies': [
1421 'net', 1421 'net',
1422 'net_test_support', 1422 'net_test_support',
1423 '../base/base.gyp:base', 1423 '../base/base.gyp:base',
1424 '../base/base.gyp:base_i18n', 1424 '../base/base.gyp:base_i18n',
1425 '../base/base.gyp:test_support_perf', 1425 '../base/base.gyp:test_support_perf',
1426 '../build/temp_gyp/googleurl.gyp:googleurl', 1426 '../build/temp_gyp/googleurl.gyp:googleurl',
1427 '../testing/gtest.gyp:gtest', 1427 '../testing/gtest.gyp:gtest',
1428 ], 1428 ],
1429 'sources': [ 1429 'sources': [
1430 'base/cookie_monster_perftest.cc', 1430 'cookies/cookie_monster_perftest.cc',
1431 'disk_cache/disk_cache_perftest.cc', 1431 'disk_cache/disk_cache_perftest.cc',
1432 'proxy/proxy_resolver_perftest.cc', 1432 'proxy/proxy_resolver_perftest.cc',
1433 ], 1433 ],
1434 'conditions': [ 1434 'conditions': [
1435 # This is needed to trigger the dll copy step on windows. 1435 # This is needed to trigger the dll copy step on windows.
1436 # TODO(mark): Specifying this here shouldn't be necessary. 1436 # TODO(mark): Specifying this here shouldn't be necessary.
1437 [ 'OS == "win"', { 1437 [ 'OS == "win"', {
1438 'dependencies': [ 1438 'dependencies': [
1439 '../third_party/icu/icu.gyp:icudata', 1439 '../third_party/icu/icu.gyp:icudata',
1440 ], 1440 ],
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
1502 '../testing/gtest.gyp:gtest', 1502 '../testing/gtest.gyp:gtest',
1503 ], 1503 ],
1504 'export_dependent_settings': [ 1504 'export_dependent_settings': [
1505 '../base/base.gyp:base', 1505 '../base/base.gyp:base',
1506 '../base/base.gyp:test_support_base', 1506 '../base/base.gyp:test_support_base',
1507 '../testing/gtest.gyp:gtest', 1507 '../testing/gtest.gyp:gtest',
1508 ], 1508 ],
1509 'sources': [ 1509 'sources': [
1510 'base/cert_test_util.cc', 1510 'base/cert_test_util.cc',
1511 'base/cert_test_util.h', 1511 'base/cert_test_util.h',
1512 'base/cookie_monster_store_test.cc',
1513 'base/cookie_monster_store_test.h',
1514 'base/cookie_store_test_callbacks.cc',
1515 'base/cookie_store_test_callbacks.h',
1516 'base/cookie_store_test_helpers.cc',
1517 'base/cookie_store_test_helpers.h',
1518 'base/mock_file_stream.cc', 1512 'base/mock_file_stream.cc',
1519 'base/mock_file_stream.h', 1513 'base/mock_file_stream.h',
1520 'base/mock_host_resolver.cc', 1514 'base/mock_host_resolver.cc',
1521 'base/mock_host_resolver.h', 1515 'base/mock_host_resolver.h',
1522 'base/net_test_suite.cc', 1516 'base/net_test_suite.cc',
1523 'base/net_test_suite.h', 1517 'base/net_test_suite.h',
1524 'base/test_completion_callback.cc', 1518 'base/test_completion_callback.cc',
1525 'base/test_completion_callback.h', 1519 'base/test_completion_callback.h',
1520 'cookies/cookie_monster_store_test.cc',
1521 'cookies/cookie_monster_store_test.h',
1522 'cookies/cookie_store_test_callbacks.cc',
1523 'cookies/cookie_store_test_callbacks.h',
1524 'cookies/cookie_store_test_helpers.cc',
1525 'cookies/cookie_store_test_helpers.h',
1526 'disk_cache/disk_cache_test_base.cc', 1526 'disk_cache/disk_cache_test_base.cc',
1527 'disk_cache/disk_cache_test_base.h', 1527 'disk_cache/disk_cache_test_base.h',
1528 'disk_cache/disk_cache_test_util.cc', 1528 'disk_cache/disk_cache_test_util.cc',
1529 'disk_cache/disk_cache_test_util.h', 1529 'disk_cache/disk_cache_test_util.h',
1530 'dns/dns_test_util.h', 1530 'dns/dns_test_util.h',
1531 'proxy/mock_proxy_resolver.cc', 1531 'proxy/mock_proxy_resolver.cc',
1532 'proxy/mock_proxy_resolver.h', 1532 'proxy/mock_proxy_resolver.h',
1533 'proxy/mock_proxy_script_fetcher.cc', 1533 'proxy/mock_proxy_script_fetcher.cc',
1534 'proxy/mock_proxy_script_fetcher.h', 1534 'proxy/mock_proxy_script_fetcher.h',
1535 'proxy/proxy_config_service_common_unittest.cc', 1535 'proxy/proxy_config_service_common_unittest.cc',
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
1857 'tools/dump_cache/url_to_filename_encoder.cc', 1857 'tools/dump_cache/url_to_filename_encoder.cc',
1858 'tools/dump_cache/url_to_filename_encoder.h', 1858 'tools/dump_cache/url_to_filename_encoder.h',
1859 'tools/dump_cache/url_utilities.h', 1859 'tools/dump_cache/url_utilities.h',
1860 'tools/dump_cache/url_utilities.cc', 1860 'tools/dump_cache/url_utilities.cc',
1861 ], 1861 ],
1862 }, 1862 },
1863 ], 1863 ],
1864 }], 1864 }],
1865 ], 1865 ],
1866 } 1866 }
OLDNEW
« no previous file with comments | « net/cookies/cookie_util_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698