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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 9960072: Upstream crash changes for android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixes to gyp and a typo in breakpad_linuxish.cc 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')
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',
935 'browser/crash_upload_list.cc', 934 'browser/crash_upload_list.cc',
936 'browser/crash_upload_list.h', 935 'browser/crash_upload_list.h',
937 'browser/crash_upload_list_win.cc', 936 'browser/crash_upload_list_win.cc',
938 'browser/crash_upload_list_win.h', 937 'browser/crash_upload_list_win.h',
939 'browser/custom_handlers/protocol_handler_registry.cc', 938 'browser/custom_handlers/protocol_handler_registry.cc',
940 'browser/custom_handlers/protocol_handler_registry.h', 939 'browser/custom_handlers/protocol_handler_registry.h',
941 'browser/custom_handlers/register_protocol_handler_infobar_delegate.cc', 940 'browser/custom_handlers/register_protocol_handler_infobar_delegate.cc',
942 'browser/custom_handlers/register_protocol_handler_infobar_delegate.h', 941 'browser/custom_handlers/register_protocol_handler_infobar_delegate.h',
943 'browser/custom_home_pages_table_model.cc', 942 'browser/custom_home_pages_table_model.cc',
944 'browser/custom_home_pages_table_model.h', 943 'browser/custom_home_pages_table_model.h',
(...skipping 3388 matching lines...) Expand 10 before | Expand all | Expand 10 after
4333 ['exclude', '^browser/ui/webui/keyboard_ui.*'], 4332 ['exclude', '^browser/ui/webui/keyboard_ui.*'],
4334 ['exclude', '^browser/ui/webui/options2/chromeos/virtual_keyboard_ma nager_handler2.*'], 4333 ['exclude', '^browser/ui/webui/options2/chromeos/virtual_keyboard_ma nager_handler2.*'],
4335 ], 4334 ],
4336 }], 4335 }],
4337 ['os_posix == 1 and OS != "mac" and OS != "android"', { 4336 ['os_posix == 1 and OS != "mac" and OS != "android"', {
4338 'link_settings': { 4337 'link_settings': {
4339 'libraries': [ 4338 'libraries': [
4340 '-lXss', 4339 '-lXss',
4341 ], 4340 ],
4342 }, 4341 },
4342 }],
4343 ['os_posix == 1 and OS != "mac"', {
4344 'sources': [ 'browser/crash_handler_host_linuxish.h', ],
4343 'conditions': [ 4345 'conditions': [
4344 ['linux_breakpad==1', { 4346 ['linux_breakpad==1', {
4345 'sources': [ 4347 'sources': [
4346 'app/breakpad_linux.cc', 4348 'app/breakpad_linuxish.cc',
4347 'app/breakpad_linux.h', 4349 'app/breakpad_linuxish.h',
4348 'browser/crash_handler_host_linux.cc', 4350 'browser/crash_handler_host_linuxish.cc',
4349 ], 4351 ],
4350 'dependencies': [ 4352 'dependencies': [
4351 '../breakpad/breakpad.gyp:breakpad_client', 4353 '../breakpad/breakpad.gyp:breakpad_client',
4352 # make sure file_version_info_linux.h is generated first. 4354 # make sure file_version_info_linux.h is generated first.
4353 'common', 4355 'common',
4354 ], 4356 ],
4355 'include_dirs': [ 4357 'include_dirs': [
4356 # breakpad_linux.cc uses generated file_version_info_linux.h. 4358 # breakpad_linuxish.cc uses generated file_version_info_linux.h.
4357 '<(SHARED_INTERMEDIATE_DIR)', 4359 '<(SHARED_INTERMEDIATE_DIR)',
4358 '../breakpad/src', 4360 '../breakpad/src',
4359 ], 4361 ],
4360 }, { # linux_breakpad==0 4362 }, { # linux_breakpad==0
4361 'sources': [ 4363 'sources': [
4362 'browser/crash_handler_host_linux_stub.cc', 4364 'browser/crash_handler_host_linuxish_stub.cc',
4363 ], 4365 ],
4364 }], 4366 }],
4365 ], 4367 ],
4366 }], 4368 }],
4367 ['OS=="linux" and use_aura==1', { 4369 ['OS=="linux" and use_aura==1', {
4368 'dependencies': [ 4370 'dependencies': [
4369 '../build/linux/system.gyp:dbus', 4371 '../build/linux/system.gyp:dbus',
4370 '../build/linux/system.gyp:fontconfig', 4372 '../build/linux/system.gyp:fontconfig',
4371 '../build/linux/system.gyp:x11', 4373 '../build/linux/system.gyp:x11',
4372 '../dbus/dbus.gyp:dbus', 4374 '../dbus/dbus.gyp:dbus',
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after
5232 'type': 'static_library', 5234 'type': 'static_library',
5233 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], 5235 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
5234 'variables': { 5236 'variables': {
5235 'proto_in_dir': 'browser/history', 5237 'proto_in_dir': 'browser/history',
5236 'proto_out_dir': 'chrome/browser/history', 5238 'proto_out_dir': 'chrome/browser/history',
5237 }, 5239 },
5238 'includes': [ '../build/protoc.gypi' ] 5240 'includes': [ '../build/protoc.gypi' ]
5239 }, 5241 },
5240 ], 5242 ],
5241 } 5243 }
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