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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 10037013: Revert 131593 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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/ui/gtk/first_run_dialog.cc ('k') | chrome/common/logging_chrome_uitest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Deleted: svn:mergeinfo
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 913 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 'browser/content_settings/cookie_settings.cc', 924 'browser/content_settings/cookie_settings.cc',
925 'browser/content_settings/cookie_settings.h', 925 'browser/content_settings/cookie_settings.h',
926 'browser/content_settings/host_content_settings_map.cc', 926 'browser/content_settings/host_content_settings_map.cc',
927 'browser/content_settings/host_content_settings_map.h', 927 'browser/content_settings/host_content_settings_map.h',
928 'browser/content_settings/local_shared_objects_container.cc', 928 'browser/content_settings/local_shared_objects_container.cc',
929 'browser/content_settings/local_shared_objects_container.h', 929 'browser/content_settings/local_shared_objects_container.h',
930 'browser/content_settings/tab_specific_content_settings.cc', 930 'browser/content_settings/tab_specific_content_settings.cc',
931 'browser/content_settings/tab_specific_content_settings.h', 931 'browser/content_settings/tab_specific_content_settings.h',
932 'browser/cookies_tree_model.cc', 932 'browser/cookies_tree_model.cc',
933 'browser/cookies_tree_model.h', 933 'browser/cookies_tree_model.h',
934 'browser/crash_handler_host_linux.h',
934 'browser/crash_upload_list.cc', 935 'browser/crash_upload_list.cc',
935 'browser/crash_upload_list.h', 936 'browser/crash_upload_list.h',
936 'browser/crash_upload_list_win.cc', 937 'browser/crash_upload_list_win.cc',
937 'browser/crash_upload_list_win.h', 938 'browser/crash_upload_list_win.h',
938 'browser/custom_handlers/protocol_handler_registry.cc', 939 'browser/custom_handlers/protocol_handler_registry.cc',
939 'browser/custom_handlers/protocol_handler_registry.h', 940 'browser/custom_handlers/protocol_handler_registry.h',
940 'browser/custom_handlers/register_protocol_handler_infobar_delegate.cc', 941 'browser/custom_handlers/register_protocol_handler_infobar_delegate.cc',
941 'browser/custom_handlers/register_protocol_handler_infobar_delegate.h', 942 'browser/custom_handlers/register_protocol_handler_infobar_delegate.h',
942 'browser/custom_home_pages_table_model.cc', 943 'browser/custom_home_pages_table_model.cc',
943 'browser/custom_home_pages_table_model.h', 944 'browser/custom_home_pages_table_model.h',
(...skipping 3388 matching lines...) Expand 10 before | Expand all | Expand 10 after
4332 ['exclude', '^browser/ui/webui/keyboard_ui.*'], 4333 ['exclude', '^browser/ui/webui/keyboard_ui.*'],
4333 ['exclude', '^browser/ui/webui/options2/chromeos/virtual_keyboard_ma nager_handler2.*'], 4334 ['exclude', '^browser/ui/webui/options2/chromeos/virtual_keyboard_ma nager_handler2.*'],
4334 ], 4335 ],
4335 }], 4336 }],
4336 ['os_posix == 1 and OS != "mac" and OS != "android"', { 4337 ['os_posix == 1 and OS != "mac" and OS != "android"', {
4337 'link_settings': { 4338 'link_settings': {
4338 'libraries': [ 4339 'libraries': [
4339 '-lXss', 4340 '-lXss',
4340 ], 4341 ],
4341 }, 4342 },
4342 }],
4343 ['os_posix == 1 and OS != "mac"', {
4344 'sources': [ 'browser/crash_handler_host_linuxish.h', ],
4345 'conditions': [ 4343 'conditions': [
4346 ['linux_breakpad==1', { 4344 ['linux_breakpad==1', {
4347 'sources': [ 4345 'sources': [
4348 'app/breakpad_linuxish.cc', 4346 'app/breakpad_linux.cc',
4349 'app/breakpad_linuxish.h', 4347 'app/breakpad_linux.h',
4350 'browser/crash_handler_host_linuxish.cc', 4348 'browser/crash_handler_host_linux.cc',
4351 ], 4349 ],
4352 'dependencies': [ 4350 'dependencies': [
4353 '../breakpad/breakpad.gyp:breakpad_client', 4351 '../breakpad/breakpad.gyp:breakpad_client',
4354 # make sure file_version_info_linux.h is generated first. 4352 # make sure file_version_info_linux.h is generated first.
4355 'common', 4353 'common',
4356 ], 4354 ],
4357 'include_dirs': [ 4355 'include_dirs': [
4358 # breakpad_linuxish.cc uses generated file_version_info_linux.h. 4356 # breakpad_linux.cc uses generated file_version_info_linux.h.
4359 '<(SHARED_INTERMEDIATE_DIR)', 4357 '<(SHARED_INTERMEDIATE_DIR)',
4360 '../breakpad/src', 4358 '../breakpad/src',
4361 ], 4359 ],
4362 }, { # linux_breakpad==0 4360 }, { # linux_breakpad==0
4363 'sources': [ 4361 'sources': [
4364 'browser/crash_handler_host_linuxish_stub.cc', 4362 'browser/crash_handler_host_linux_stub.cc',
4365 ], 4363 ],
4366 }], 4364 }],
4367 ], 4365 ],
4368 }], 4366 }],
4369 ['OS=="linux" and use_aura==1', { 4367 ['OS=="linux" and use_aura==1', {
4370 'dependencies': [ 4368 'dependencies': [
4371 '../build/linux/system.gyp:dbus', 4369 '../build/linux/system.gyp:dbus',
4372 '../build/linux/system.gyp:fontconfig', 4370 '../build/linux/system.gyp:fontconfig',
4373 '../build/linux/system.gyp:x11', 4371 '../build/linux/system.gyp:x11',
4374 '../dbus/dbus.gyp:dbus', 4372 '../dbus/dbus.gyp:dbus',
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after
5234 'type': 'static_library', 5232 'type': 'static_library',
5235 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], 5233 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
5236 'variables': { 5234 'variables': {
5237 'proto_in_dir': 'browser/history', 5235 'proto_in_dir': 'browser/history',
5238 'proto_out_dir': 'chrome/browser/history', 5236 'proto_out_dir': 'chrome/browser/history',
5239 }, 5237 },
5240 'includes': [ '../build/protoc.gypi' ] 5238 'includes': [ '../build/protoc.gypi' ]
5241 }, 5239 },
5242 ], 5240 ],
5243 } 5241 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/first_run_dialog.cc ('k') | chrome/common/logging_chrome_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698