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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 9985002: Allow SessionService to be disabled. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comment 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
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 4466 matching lines...) Expand 10 before | Expand all | Expand 10 after
4477 ], 4477 ],
4478 'sources/': [ 4478 'sources/': [
4479 ['exclude', '^browser/themes/'], 4479 ['exclude', '^browser/themes/'],
4480 ], 4480 ],
4481 }], 4481 }],
4482 ['enable_automation!=1', { 4482 ['enable_automation!=1', {
4483 'sources/': [ 4483 'sources/': [
4484 ['exclude', '^browser/automation/'], 4484 ['exclude', '^browser/automation/'],
4485 ], 4485 ],
4486 }], 4486 }],
4487 ['enable_session_service!=1', {
4488 'sources!': [
4489 'browser/sessions/session_restore.cc',
sky 2012/04/04 21:04:51 Don't you want to remove the .h's too?
Yaron 2012/04/04 21:36:18 I suppose I could but I thought that it doesn't ma
4490 'browser/sessions/session_service.cc',
4491 'browser/sessions/session_service_factory.cc',
4492 ],
4493 }],
4487 ['OS=="android"', { 4494 ['OS=="android"', {
4488 'sources': [ 4495 'sources': [
4489 'browser/sync/glue/synced_window_delegate_registry.cc', 4496 'browser/sync/glue/synced_window_delegate_registry.cc',
4490 'browser/sync/glue/synced_window_delegate_registry.h', 4497 'browser/sync/glue/synced_window_delegate_registry.h',
4491 ], 4498 ],
4492 'sources!': [ 4499 'sources!': [
4493 'browser/bookmarks/bookmark_context_menu_controller.cc', 4500 'browser/bookmarks/bookmark_context_menu_controller.cc',
4494 # Bookmark export/import are handled via the BookmarkColumns 4501 # Bookmark export/import are handled via the BookmarkColumns
4495 # ContentProvider. 4502 # ContentProvider.
4496 'browser/bookmarks/bookmark_html_writer.cc', 4503 'browser/bookmarks/bookmark_html_writer.cc',
(...skipping 13 matching lines...) Expand all
4510 # There's no Browser/BrowserList on Android. 4517 # There's no Browser/BrowserList on Android.
4511 'browser/net/gaia/gaia_oauth_fetcher.cc', 4518 'browser/net/gaia/gaia_oauth_fetcher.cc',
4512 'browser/ui/browser.cc', 4519 'browser/ui/browser.cc',
4513 'browser/ui/browser_init.cc', 4520 'browser/ui/browser_init.cc',
4514 'browser/ui/browser_list.cc', 4521 'browser/ui/browser_list.cc',
4515 'browser/ui/browser_list_stub.cc', 4522 'browser/ui/browser_list_stub.cc',
4516 'browser/ui/browser_navigator.cc', 4523 'browser/ui/browser_navigator.cc',
4517 'browser/ui/browser_tab_restore_service_delegate.cc', 4524 'browser/ui/browser_tab_restore_service_delegate.cc',
4518 'browser/ui/sync/browser_synced_window_delegate.cc', 4525 'browser/ui/sync/browser_synced_window_delegate.cc',
4519 4526
4520 # Custom implementation of session_restore for Android.
4521 'browser/sessions/session_restore.cc',
4522
4523 'browser/ui/sad_tab_helper.cc', 4527 'browser/ui/sad_tab_helper.cc',
4524 'browser/ui/webui/certificate_viewer_webui.cc', 4528 'browser/ui/webui/certificate_viewer_webui.cc',
4525 'browser/ui/window_sizer.cc', 4529 'browser/ui/window_sizer.cc',
4526 'browser/ui/window_sizer.h', 4530 'browser/ui/window_sizer.h',
4527 'browser/ui/webui/ntp/ntp_resource_cache.cc', 4531 'browser/ui/webui/ntp/ntp_resource_cache.cc',
4528 'browser/upgrade_detector.cc', 4532 'browser/upgrade_detector.cc',
4529 'browser/upgrade_detector.h', 4533 'browser/upgrade_detector.h',
4530 'browser/upgrade_detector_impl.cc', 4534 'browser/upgrade_detector_impl.cc',
4531 'browser/upgrade_detector_impl.h', 4535 'browser/upgrade_detector_impl.h',
4532 ], 4536 ],
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
5293 'variables': { 5297 'variables': {
5294 'proto_in_dir': '../third_party/cros_system_api/dbus/', 5298 'proto_in_dir': '../third_party/cros_system_api/dbus/',
5295 'proto_out_dir': 'chrome/browser/chromeos/dbus', 5299 'proto_out_dir': 'chrome/browser/chromeos/dbus',
5296 }, 5300 },
5297 'includes': ['../build/protoc.gypi'], 5301 'includes': ['../build/protoc.gypi'],
5298 }], 5302 }],
5299 ], 5303 ],
5300 }, 5304 },
5301 ], 5305 ],
5302 } 5306 }
OLDNEW
« chrome/browser/browsing_data_remover.cc ('K') | « chrome/browser/sessions/tab_restore_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698