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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 10407124: Don't force non-session only cookies to be session only cookies, instead delete on shutdown (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 8 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 | « chrome/chrome_browser.gypi ('k') | chrome/test/functional/cookies.py » ('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) 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 'variables' : { 5 'variables' : {
6 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1305 'browser/media_gallery/media_gallery_database_unittest.cc', 1305 'browser/media_gallery/media_gallery_database_unittest.cc',
1306 'browser/metrics/metrics_log_unittest.cc', 1306 'browser/metrics/metrics_log_unittest.cc',
1307 'browser/metrics/metrics_log_serializer_unittest.cc', 1307 'browser/metrics/metrics_log_serializer_unittest.cc',
1308 'browser/metrics/metrics_response_unittest.cc', 1308 'browser/metrics/metrics_response_unittest.cc',
1309 'browser/metrics/metrics_service_unittest.cc', 1309 'browser/metrics/metrics_service_unittest.cc',
1310 'browser/metrics/thread_watcher_unittest.cc', 1310 'browser/metrics/thread_watcher_unittest.cc',
1311 'browser/metrics/variations_service_unittest.cc', 1311 'browser/metrics/variations_service_unittest.cc',
1312 'browser/nacl_host/nacl_validation_cache_unittest.cc', 1312 'browser/nacl_host/nacl_validation_cache_unittest.cc',
1313 'browser/net/chrome_fraudulent_certificate_reporter_unittest.cc', 1313 'browser/net/chrome_fraudulent_certificate_reporter_unittest.cc',
1314 'browser/net/chrome_net_log_unittest.cc', 1314 'browser/net/chrome_net_log_unittest.cc',
1315 'browser/net/clear_on_exit_policy_unittest.cc',
1315 'browser/net/connection_tester_unittest.cc', 1316 'browser/net/connection_tester_unittest.cc',
1316 'browser/net/gaia/gaia_oauth_fetcher_unittest.cc', 1317 'browser/net/gaia/gaia_oauth_fetcher_unittest.cc',
1317 'browser/net/http_pipelining_compatibility_client_unittest.cc', 1318 'browser/net/http_pipelining_compatibility_client_unittest.cc',
1318 'browser/net/http_server_properties_manager_unittest.cc', 1319 'browser/net/http_server_properties_manager_unittest.cc',
1319 'browser/net/load_timing_observer_unittest.cc', 1320 'browser/net/load_timing_observer_unittest.cc',
1320 'browser/net/network_stats_unittest.cc', 1321 'browser/net/network_stats_unittest.cc',
1321 'browser/net/predictor_unittest.cc', 1322 'browser/net/predictor_unittest.cc',
1322 'browser/net/pref_proxy_config_tracker_impl_unittest.cc', 1323 'browser/net/pref_proxy_config_tracker_impl_unittest.cc',
1323 'browser/net/quoted_printable_unittest.cc', 1324 'browser/net/quoted_printable_unittest.cc',
1324 'browser/net/sqlite_persistent_cookie_store_unittest.cc', 1325 'browser/net/sqlite_persistent_cookie_store_unittest.cc',
(...skipping 2891 matching lines...) Expand 10 before | Expand all | Expand 10 after
4216 '../content/content.gyp:content_gpu', 4217 '../content/content.gyp:content_gpu',
4217 '../content/content.gyp:test_support_content', 4218 '../content/content.gyp:test_support_content',
4218 '../base/base.gyp:base', 4219 '../base/base.gyp:base',
4219 '../base/base.gyp:test_support_base', 4220 '../base/base.gyp:test_support_base',
4220 '../base/base.gyp:test_support_perf', 4221 '../base/base.gyp:test_support_perf',
4221 '../skia/skia.gyp:skia', 4222 '../skia/skia.gyp:skia',
4222 '../testing/gtest.gyp:gtest', 4223 '../testing/gtest.gyp:gtest',
4223 '../webkit/support/webkit_support.gyp:glue', 4224 '../webkit/support/webkit_support.gyp:glue',
4224 ], 4225 ],
4225 'sources': [ 4226 'sources': [
4227 'browser/net/sqlite_persistent_cookie_store_perftest.cc',
4226 'browser/visitedlink/visitedlink_perftest.cc', 4228 'browser/visitedlink/visitedlink_perftest.cc',
4227 'common/json_value_serializer_perftest.cc', 4229 'common/json_value_serializer_perftest.cc',
4228 'test/perf/perftests.cc', 4230 'test/perf/perftests.cc',
4229 'test/perf/url_parse_perftest.cc', 4231 'test/perf/url_parse_perftest.cc',
4230 ], 4232 ],
4231 'conditions': [ 4233 'conditions': [
4232 ['toolkit_uses_gtk == 1', { 4234 ['toolkit_uses_gtk == 1', {
4233 'dependencies': [ 4235 'dependencies': [
4234 '../build/linux/system.gyp:gtk', 4236 '../build/linux/system.gyp:gtk',
4235 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 4237 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
4630 # Use outputs of this action as inputs for the main target build. 4632 # Use outputs of this action as inputs for the main target build.
4631 # Seems as a misnomer but makes this happy on Linux (scons). 4633 # Seems as a misnomer but makes this happy on Linux (scons).
4632 'process_outputs_as_sources': 1, 4634 'process_outputs_as_sources': 1,
4633 }, 4635 },
4634 ], # 'actions' 4636 ], # 'actions'
4635 }, 4637 },
4636 ] 4638 ]
4637 }], # 'coverage!=0' 4639 }], # 'coverage!=0'
4638 ], # 'conditions' 4640 ], # 'conditions'
4639 } 4641 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/test/functional/cookies.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698