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

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: 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/browser/sessions/tab_restore_service.cc ('k') | chrome/chrome_tests.gypi » ('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 { 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',
4490 'browser/sessions/session_service.cc',
4491 'browser/sessions/session_service.h',
4492 'browser/sessions/session_service_factory.cc',
4493 'browser/sessions/session_service_factory.h',
4494 ],
4495 }],
4487 ['OS=="android"', { 4496 ['OS=="android"', {
4488 'sources': [ 4497 'sources': [
4489 'browser/sync/glue/synced_window_delegate_registry.cc', 4498 'browser/sync/glue/synced_window_delegate_registry.cc',
4490 'browser/sync/glue/synced_window_delegate_registry.h', 4499 'browser/sync/glue/synced_window_delegate_registry.h',
4491 ], 4500 ],
4492 'sources!': [ 4501 'sources!': [
4493 'browser/bookmarks/bookmark_context_menu_controller.cc', 4502 'browser/bookmarks/bookmark_context_menu_controller.cc',
4494 # Bookmark export/import are handled via the BookmarkColumns 4503 # Bookmark export/import are handled via the BookmarkColumns
4495 # ContentProvider. 4504 # ContentProvider.
4496 'browser/bookmarks/bookmark_html_writer.cc', 4505 'browser/bookmarks/bookmark_html_writer.cc',
(...skipping 13 matching lines...) Expand all
4510 # There's no Browser/BrowserList on Android. 4519 # There's no Browser/BrowserList on Android.
4511 'browser/net/gaia/gaia_oauth_fetcher.cc', 4520 'browser/net/gaia/gaia_oauth_fetcher.cc',
4512 'browser/ui/browser.cc', 4521 'browser/ui/browser.cc',
4513 'browser/ui/browser_init.cc', 4522 'browser/ui/browser_init.cc',
4514 'browser/ui/browser_list.cc', 4523 'browser/ui/browser_list.cc',
4515 'browser/ui/browser_list_stub.cc', 4524 'browser/ui/browser_list_stub.cc',
4516 'browser/ui/browser_navigator.cc', 4525 'browser/ui/browser_navigator.cc',
4517 'browser/ui/browser_tab_restore_service_delegate.cc', 4526 'browser/ui/browser_tab_restore_service_delegate.cc',
4518 'browser/ui/sync/browser_synced_window_delegate.cc', 4527 'browser/ui/sync/browser_synced_window_delegate.cc',
4519 4528
4520 # Custom implementation of session_restore for Android.
4521 'browser/sessions/session_restore.cc',
4522
4523 'browser/ui/sad_tab_helper.cc', 4529 'browser/ui/sad_tab_helper.cc',
4524 'browser/ui/webui/certificate_viewer_webui.cc', 4530 'browser/ui/webui/certificate_viewer_webui.cc',
4525 'browser/ui/window_sizer.cc', 4531 'browser/ui/window_sizer.cc',
4526 'browser/ui/window_sizer.h', 4532 'browser/ui/window_sizer.h',
4527 'browser/ui/webui/ntp/ntp_resource_cache.cc', 4533 'browser/ui/webui/ntp/ntp_resource_cache.cc',
4528 'browser/upgrade_detector.cc', 4534 'browser/upgrade_detector.cc',
4529 'browser/upgrade_detector.h', 4535 'browser/upgrade_detector.h',
4530 'browser/upgrade_detector_impl.cc', 4536 'browser/upgrade_detector_impl.cc',
4531 'browser/upgrade_detector_impl.h', 4537 'browser/upgrade_detector_impl.h',
4532 ], 4538 ],
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
5293 'variables': { 5299 'variables': {
5294 'proto_in_dir': '../third_party/cros_system_api/dbus/', 5300 'proto_in_dir': '../third_party/cros_system_api/dbus/',
5295 'proto_out_dir': 'chrome/browser/chromeos/dbus', 5301 'proto_out_dir': 'chrome/browser/chromeos/dbus',
5296 }, 5302 },
5297 'includes': ['../build/protoc.gypi'], 5303 'includes': ['../build/protoc.gypi'],
5298 }], 5304 }],
5299 ], 5305 ],
5300 }, 5306 },
5301 ], 5307 ],
5302 } 5308 }
OLDNEW
« no previous file with comments | « chrome/browser/sessions/tab_restore_service.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698