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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 9985002: Allow SessionService to be disabled. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed sky's comments Created 8 years, 8 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') | 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 '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 2218 matching lines...) Expand 10 before | Expand all | Expand 10 after
2229 'sources/': [ 2229 'sources/': [
2230 ['exclude', '^browser/safe_browsing/'], 2230 ['exclude', '^browser/safe_browsing/'],
2231 ['exclude', '^renderer/safe_browsing/'], 2231 ['exclude', '^renderer/safe_browsing/'],
2232 ], 2232 ],
2233 }], 2233 }],
2234 ['enable_automation!=1', { 2234 ['enable_automation!=1', {
2235 'sources/': [ 2235 'sources/': [
2236 ['exclude', '^browser/automation/'], 2236 ['exclude', '^browser/automation/'],
2237 ], 2237 ],
2238 }], 2238 }],
2239 ['enable_session_service!=1', {
2240 'sources!': [
2241 'browser/sessions/session_service_unittest.cc',
2242 ],
2243 }],
2239 ['chromeos==1', { 2244 ['chromeos==1', {
2240 'sources/': [ 2245 'sources/': [
2241 ['exclude', '^browser/password_manager/native_backend_gnome_x_unitte st.cc'], 2246 ['exclude', '^browser/password_manager/native_backend_gnome_x_unitte st.cc'],
2242 ['exclude', '^browser/password_manager/native_backend_kwallet_x_unit test.cc'], 2247 ['exclude', '^browser/password_manager/native_backend_kwallet_x_unit test.cc'],
2243 ['exclude', '^browser/safe_browsing/download_protection_service_unit test.cc' ], 2248 ['exclude', '^browser/safe_browsing/download_protection_service_unit test.cc' ],
2244 ], 2249 ],
2245 }, { # else: chromeos == 0 2250 }, { # else: chromeos == 0
2246 'sources/': [ 2251 'sources/': [
2247 ['exclude', '^browser/chromeos/'], 2252 ['exclude', '^browser/chromeos/'],
2248 ['exclude', '^browser/oom_priority_manager_unittest.cc'], 2253 ['exclude', '^browser/oom_priority_manager_unittest.cc'],
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
2457 # Sync setup uses native ui. 2462 # Sync setup uses native ui.
2458 'browser/ui/webui/sync_setup_handler_unittest.cc', 2463 'browser/ui/webui/sync_setup_handler_unittest.cc',
2459 2464
2460 # about:flags is unsupported. 2465 # about:flags is unsupported.
2461 'browser/about_flags_unittest.cc', 2466 'browser/about_flags_unittest.cc',
2462 2467
2463 # There's no Browser/BrowserList on Android. 2468 # There's no Browser/BrowserList on Android.
2464 'browser/browser_commands_unittest.cc', 2469 'browser/browser_commands_unittest.cc',
2465 'browser/net/gaia/gaia_oauth_fetcher_unittest.cc', 2470 'browser/net/gaia/gaia_oauth_fetcher_unittest.cc',
2466 'browser/profiles/off_the_record_profile_impl_unittest.cc', 2471 'browser/profiles/off_the_record_profile_impl_unittest.cc',
2467 'browser/sessions/session_service_unittest.cc',
2468 'browser/sync/profile_sync_service_session_unittest.cc', 2472 'browser/sync/profile_sync_service_session_unittest.cc',
2469 'browser/sync/sync_global_error_unittest.cc', 2473 'browser/sync/sync_global_error_unittest.cc',
2470 'browser/sync/sync_setup_wizard_unittest.cc', 2474 'browser/sync/sync_setup_wizard_unittest.cc',
2471 'browser/ui/browser_list_unittest.cc', 2475 'browser/ui/browser_list_unittest.cc',
2472 'browser/ui/browser_unittest.cc', 2476 'browser/ui/browser_unittest.cc',
2473 'browser/ui/toolbar/toolbar_model_unittest.cc', 2477 'browser/ui/toolbar/toolbar_model_unittest.cc',
2474 'browser/ui/toolbar/wrench_menu_model_unittest.cc', 2478 'browser/ui/toolbar/wrench_menu_model_unittest.cc',
2475 'browser/ui/webui/html_dialog_tab_contents_delegate_unittest.cc', 2479 'browser/ui/webui/html_dialog_tab_contents_delegate_unittest.cc',
2476 'test/base/browser_with_test_window_test.cc', 2480 'test/base/browser_with_test_window_test.cc',
2477 'test/base/browser_with_test_window_test.h', 2481 'test/base/browser_with_test_window_test.h',
(...skipping 2203 matching lines...) Expand 10 before | Expand all | Expand 10 after
4681 # Use outputs of this action as inputs for the main target build. 4685 # Use outputs of this action as inputs for the main target build.
4682 # Seems as a misnomer but makes this happy on Linux (scons). 4686 # Seems as a misnomer but makes this happy on Linux (scons).
4683 'process_outputs_as_sources': 1, 4687 'process_outputs_as_sources': 1,
4684 }, 4688 },
4685 ], # 'actions' 4689 ], # 'actions'
4686 }, 4690 },
4687 ] 4691 ]
4688 }], # 'coverage!=0' 4692 }], # 'coverage!=0'
4689 ], # 'conditions' 4693 ], # 'conditions'
4690 } 4694 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698