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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 9838033: Upstream native crash handling changes for Android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Chrome Android native crash support Created 8 years, 9 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 930 matching lines...) Expand 10 before | Expand all | Expand 10 after
941 'browser/content_settings/cookie_settings.cc', 941 'browser/content_settings/cookie_settings.cc',
942 'browser/content_settings/cookie_settings.h', 942 'browser/content_settings/cookie_settings.h',
943 'browser/content_settings/host_content_settings_map.cc', 943 'browser/content_settings/host_content_settings_map.cc',
944 'browser/content_settings/host_content_settings_map.h', 944 'browser/content_settings/host_content_settings_map.h',
945 'browser/content_settings/local_shared_objects_container.cc', 945 'browser/content_settings/local_shared_objects_container.cc',
946 'browser/content_settings/local_shared_objects_container.h', 946 'browser/content_settings/local_shared_objects_container.h',
947 'browser/content_settings/tab_specific_content_settings.cc', 947 'browser/content_settings/tab_specific_content_settings.cc',
948 'browser/content_settings/tab_specific_content_settings.h', 948 'browser/content_settings/tab_specific_content_settings.h',
949 'browser/cookies_tree_model.cc', 949 'browser/cookies_tree_model.cc',
950 'browser/cookies_tree_model.h', 950 'browser/cookies_tree_model.h',
951 'browser/crash_handler_host_linux.h',
952 'browser/crash_upload_list.cc', 951 'browser/crash_upload_list.cc',
953 'browser/crash_upload_list.h', 952 'browser/crash_upload_list.h',
954 'browser/crash_upload_list_win.cc', 953 'browser/crash_upload_list_win.cc',
955 'browser/crash_upload_list_win.h', 954 'browser/crash_upload_list_win.h',
956 'browser/custom_handlers/protocol_handler_registry.cc', 955 'browser/custom_handlers/protocol_handler_registry.cc',
957 'browser/custom_handlers/protocol_handler_registry.h', 956 'browser/custom_handlers/protocol_handler_registry.h',
958 'browser/custom_handlers/register_protocol_handler_infobar_delegate.cc', 957 'browser/custom_handlers/register_protocol_handler_infobar_delegate.cc',
959 'browser/custom_handlers/register_protocol_handler_infobar_delegate.h', 958 'browser/custom_handlers/register_protocol_handler_infobar_delegate.h',
960 'browser/custom_home_pages_table_model.cc', 959 'browser/custom_home_pages_table_model.cc',
961 'browser/custom_home_pages_table_model.h', 960 'browser/custom_home_pages_table_model.h',
(...skipping 3342 matching lines...) Expand 10 before | Expand all | Expand 10 after
4304 '../ui/gfx/gl/gl.gyp:gl', 4303 '../ui/gfx/gl/gl.gyp:gl',
4305 ], 4304 ],
4306 }], 4305 }],
4307 ['use_virtual_keyboard==0', { 4306 ['use_virtual_keyboard==0', {
4308 'sources/': [ 4307 'sources/': [
4309 ['exclude', '^browser/ui/touch/status_bubble_touch.*'], 4308 ['exclude', '^browser/ui/touch/status_bubble_touch.*'],
4310 ['exclude', '^browser/ui/virtual_keyboard/*'], 4309 ['exclude', '^browser/ui/virtual_keyboard/*'],
4311 ['exclude', '^browser/ui/webui/keyboard_ui.*'], 4310 ['exclude', '^browser/ui/webui/keyboard_ui.*'],
4312 ], 4311 ],
4313 }], 4312 }],
4314 ['os_posix == 1 and OS != "mac" and OS != "android"', { 4313 ['os_posix == 1 and OS != "mac"', {
4315 'link_settings': { 4314 'link_settings': {
4316 'libraries': [ 4315 'libraries': [
4317 '-lXss', 4316 '-lXss',
4318 ], 4317 ],
4319 }, 4318 },
4319 'sources': [ 'browser/crash_handler_host_posix.h', ],
4320 'conditions': [ 4320 'conditions': [
4321 ['linux_breakpad==1', { 4321 ['linux_breakpad==1', {
Yaron 2012/03/26 18:51:16 This should probably also be renamed.
carlosvaldivia 2012/04/03 06:24:47 Done.
4322 'sources': [ 4322 'sources': [
4323 'app/breakpad_linux.cc', 4323 'app/breakpad_posix.cc',
4324 'app/breakpad_linux.h', 4324 'app/breakpad_posix.h',
4325 'browser/crash_handler_host_linux.cc', 4325 'browser/crash_handler_host_posix.cc',
4326 ], 4326 ],
4327 'dependencies': [ 4327 'dependencies': [
4328 '../breakpad/breakpad.gyp:breakpad_client', 4328 '../breakpad/breakpad.gyp:breakpad_client',
4329 # make sure file_version_info_linux.h is generated first. 4329 # make sure file_version_info_linux.h is generated first.
4330 'common', 4330 'common',
4331 ], 4331 ],
4332 'include_dirs': [ 4332 'include_dirs': [
4333 # breakpad_linux.cc uses generated file_version_info_linux.h. 4333 # breakpad_linux.cc uses generated file_version_info_linux.h.
4334 '<(SHARED_INTERMEDIATE_DIR)', 4334 '<(SHARED_INTERMEDIATE_DIR)',
4335 '../breakpad/src', 4335 '../breakpad/src',
4336 ], 4336 ],
4337 }, { # linux_breakpad==0 4337 }, { # linux_breakpad==0
4338 'sources': [ 4338 'sources': [
4339 'browser/crash_handler_host_linux_stub.cc', 4339 'browser/crash_handler_host_posix_stub.cc',
4340 ], 4340 ],
4341 }], 4341 }],
4342 ], 4342 ],
4343 }], 4343 }],
4344 ['OS=="linux" and use_aura==1', { 4344 ['OS=="linux" and use_aura==1', {
4345 'dependencies': [ 4345 'dependencies': [
4346 '../build/linux/system.gyp:dbus', 4346 '../build/linux/system.gyp:dbus',
4347 '../build/linux/system.gyp:fontconfig', 4347 '../build/linux/system.gyp:fontconfig',
4348 '../build/linux/system.gyp:x11', 4348 '../build/linux/system.gyp:x11',
4349 '../dbus/dbus.gyp:dbus', 4349 '../dbus/dbus.gyp:dbus',
(...skipping 934 matching lines...) Expand 10 before | Expand all | Expand 10 after
5284 'variables': { 5284 'variables': {
5285 'proto_in_dir': '../third_party/cros_system_api/dbus/', 5285 'proto_in_dir': '../third_party/cros_system_api/dbus/',
5286 'proto_out_dir': 'chrome/browser/chromeos/dbus', 5286 'proto_out_dir': 'chrome/browser/chromeos/dbus',
5287 }, 5287 },
5288 'includes': ['../build/protoc.gypi'], 5288 'includes': ['../build/protoc.gypi'],
5289 }], 5289 }],
5290 ], 5290 ],
5291 }, 5291 },
5292 ], 5292 ],
5293 } 5293 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698