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

Side by Side Diff: chrome/chrome.gyp

Issue 371015: Linux: Catch plugin crashes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'variables': { 9 'variables': {
10 'version_py_path': 'tools/build/version.py', 10 'version_py_path': 'tools/build/version.py',
(...skipping 2516 matching lines...) Expand 10 before | Expand all | Expand 10 after
2527 'sources!': [ 2527 'sources!': [
2528 'browser/views/extensions/extension_shelf.cc', 2528 'browser/views/extensions/extension_shelf.cc',
2529 'browser/views/extensions/extension_shelf.h', 2529 'browser/views/extensions/extension_shelf.h',
2530 'browser/views/extensions/extension_view.cc', 2530 'browser/views/extensions/extension_view.cc',
2531 'browser/views/extensions/extension_view.h', 2531 'browser/views/extensions/extension_view.h',
2532 # Windows-specific files. 2532 # Windows-specific files.
2533 'browser/password_manager/password_store_win.cc', 2533 'browser/password_manager/password_store_win.cc',
2534 'browser/password_manager/password_store_win.h', 2534 'browser/password_manager/password_store_win.h',
2535 ], 2535 ],
2536 'sources': [ 2536 'sources': [
2537 'browser/crash_handler_host_linux.h',
2537 'browser/net/ssl_config_service_manager_pref.cc', 2538 'browser/net/ssl_config_service_manager_pref.cc',
2538 'browser/spellcheck_host.cc', 2539 'browser/spellcheck_host.cc',
2539 'browser/spellcheck_host.h', 2540 'browser/spellcheck_host.h',
2540 ], 2541 ],
2541 'sources/': [ 2542 'sources/': [
2542 # Exclude most of printing. 2543 # Exclude most of printing.
2543 ['exclude', '^browser/printing/'], 2544 ['exclude', '^browser/printing/'],
2544 ['include', '^browser/printing/page_(number|range|setup)\\.cc$'], 2545 ['include', '^browser/printing/page_(number|range|setup)\\.cc$'],
2545 ], 2546 ],
2546 'conditions': [ 2547 'conditions': [
2547 ['linux_breakpad==1', { 2548 ['linux_breakpad==1', {
2548 'sources': [ 2549 'sources': [
2549 'browser/renderer_host/render_crash_handler_host_linux.cc',
2550 'app/breakpad_linux.cc', 2550 'app/breakpad_linux.cc',
2551 'app/breakpad_linux.h', 2551 'app/breakpad_linux.h',
2552 'browser/crash_handler_host_linux.cc',
2552 ], 2553 ],
2553 'dependencies': [ 2554 'dependencies': [
2554 '../breakpad/breakpad.gyp:breakpad_client', 2555 '../breakpad/breakpad.gyp:breakpad_client',
2555 ], 2556 ],
2556 'include_dirs': [ 2557 'include_dirs': [
2557 # breakpad_linux.cc wants file_version_info_linux.h 2558 # breakpad_linux.cc wants file_version_info_linux.h
2558 '<(SHARED_INTERMEDIATE_DIR)', 2559 '<(SHARED_INTERMEDIATE_DIR)',
2559 ], 2560 ],
2560 }, { # linux_breakpad==0 2561 }, { # linux_breakpad==0
2561 'sources': [ 2562 'sources': [
2562 'browser/renderer_host/render_crash_handler_host_linux_stub.cc', 2563 'browser/crash_handler_host_linux_stub.cc',
2563 ], 2564 ],
2564 }], 2565 }],
2565 ], 2566 ],
2566 }], 2567 }],
2567 ['OS=="linux" and toolkit_views==0', { 2568 ['OS=="linux" and toolkit_views==0', {
2568 'sources!': [ 2569 'sources!': [
2569 'browser/bookmarks/bookmark_drop_info.cc', 2570 'browser/bookmarks/bookmark_drop_info.cc',
2570 'browser/views/autocomplete/autocomplete_popup_gtk.cc', 2571 'browser/views/autocomplete/autocomplete_popup_gtk.cc',
2571 'browser/views/autocomplete/autocomplete_popup_gtk.h' 2572 'browser/views/autocomplete/autocomplete_popup_gtk.h'
2572 ], 2573 ],
(...skipping 4430 matching lines...) Expand 10 before | Expand all | Expand 10 after
7003 ] 7004 ]
7004 }], 7005 }],
7005 ], # 'conditions' 7006 ], # 'conditions'
7006 } 7007 }
7007 7008
7008 # Local Variables: 7009 # Local Variables:
7009 # tab-width:2 7010 # tab-width:2
7010 # indent-tabs-mode:nil 7011 # indent-tabs-mode:nil
7011 # End: 7012 # End:
7012 # vim: set expandtab tabstop=2 shiftwidth=2: 7013 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698