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

Side by Side Diff: chrome/chrome.gyp

Issue 115823: Fix breakpad-related Linux official build breakage. (Closed)
Patch Set: Clean up "app" target some more. Created 11 years, 7 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
« no previous file with comments | « no previous file | no next file » | 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) 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 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 1544 matching lines...) Expand 10 before | Expand all | Expand 10 after
1555 ], 1555 ],
1556 'sources!': [ 1556 'sources!': [
1557 'browser/debugger/debugger_shell_stubs.cc', 1557 'browser/debugger/debugger_shell_stubs.cc',
1558 # Windows-specific files. 1558 # Windows-specific files.
1559 'browser/download/download_exe.cc', 1559 'browser/download/download_exe.cc',
1560 ], 1560 ],
1561 'conditions': [ 1561 'conditions': [
1562 ['linux_breakpad==1', { 1562 ['linux_breakpad==1', {
1563 'sources': [ 1563 'sources': [
1564 'browser/renderer_host/render_crash_handler_host_linux.cc', 1564 'browser/renderer_host/render_crash_handler_host_linux.cc',
1565 'app/breakpad_linux.cc',
1566 'app/breakpad_linux.h',
1567 ],
1568 'dependencies': [
1569 '../breakpad/breakpad.gyp:breakpad_client',
1570 ],
1571 'include_dirs': [
1572 # breakpad_linux.cc wants file_version_info_linux.h
1573 '<(SHARED_INTERMEDIATE_DIR)',
1565 ], 1574 ],
1566 }, { 1575 }, {
1567 'sources': [ 1576 'sources': [
1568 'browser/renderer_host/render_crash_handler_host_linux_stub.cc', 1577 'browser/renderer_host/render_crash_handler_host_linux_stub.cc',
1578 'app/breakpad_linux_stub.cc',
1579 'app/breakpad_linux.h',
1569 ], 1580 ],
1570 }], 1581 }],
1571 ], 1582 ],
1572 }], 1583 }],
1573 ['OS=="linux" and toolkit_views==0', { 1584 ['OS=="linux" and toolkit_views==0', {
1574 'sources!': [ 1585 'sources!': [
1575 'browser/bookmarks/bookmark_drop_info.cc', 1586 'browser/bookmarks/bookmark_drop_info.cc',
1576 ], 1587 ],
1577 }], 1588 }],
1578 ['OS=="mac"', { 1589 ['OS=="mac"', {
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
2083 '<(INTERMEDIATE_DIR)/repack/en-US.pak', 2094 '<(INTERMEDIATE_DIR)/repack/en-US.pak',
2084 '<(INTERMEDIATE_DIR)/repack/he.pak', 2095 '<(INTERMEDIATE_DIR)/repack/he.pak',
2085 '<(INTERMEDIATE_DIR)/repack/zh-TW.pak', 2096 '<(INTERMEDIATE_DIR)/repack/zh-TW.pak',
2086 ], 2097 ],
2087 }, 2098 },
2088 { 2099 {
2089 'destination': '<(PRODUCT_DIR)/themes', 2100 'destination': '<(PRODUCT_DIR)/themes',
2090 'files': ['<(INTERMEDIATE_DIR)/repack/default.pak'], 2101 'files': ['<(INTERMEDIATE_DIR)/repack/default.pak'],
2091 }, 2102 },
2092 ], 2103 ],
2093 'include_dirs': [
2094 # Needed in order to be able to read the raw
2095 # file_version_info_linux.h file.
2096 '<(SHARED_INTERMEDIATE_DIR)',
2097 ],
2098 'conditions': [
2099 ['linux_breakpad==1', {
2100 'sources': [
2101 'app/breakpad_linux.cc',
2102 'app/breakpad_linux.h',
2103 ],
2104 'dependencies': [
2105 '../breakpad/breakpad.gyp:breakpad_client',
2106 ],
2107 }, {
2108 'sources': [
2109 'app/breakpad_linux_stub.cc',
2110 'app/breakpad_linux.h',
2111 ],
2112 }],
2113 ]
2114 }], 2104 }],
2115 ['OS=="linux" and toolkit_views==1', { 2105 ['OS=="linux" and toolkit_views==1', {
2116 'dependencies': [ 2106 'dependencies': [
2117 '../views/views.gyp:views', 2107 '../views/views.gyp:views',
2118 ], 2108 ],
2119 }], 2109 }],
2120 ['OS=="mac"', { 2110 ['OS=="mac"', {
2121 # 'branding' is a variable defined in common.gypi 2111 # 'branding' is a variable defined in common.gypi
2122 # (e.g. "Chromium", "Chrome") 2112 # (e.g. "Chromium", "Chrome")
2123 'conditions': [ 2113 'conditions': [
(...skipping 1759 matching lines...) Expand 10 before | Expand all | Expand 10 after
3883 # Use outputs of this action as inputs for the main target build. 3873 # Use outputs of this action as inputs for the main target build.
3884 # Seems as a misnomer but makes this happy on Linux (scons). 3874 # Seems as a misnomer but makes this happy on Linux (scons).
3885 'process_outputs_as_sources': 1, 3875 'process_outputs_as_sources': 1,
3886 }, 3876 },
3887 ], # 'actions' 3877 ], # 'actions'
3888 }, 3878 },
3889 ] 3879 ]
3890 }], 3880 }],
3891 ], # 'conditions' 3881 ], # 'conditions'
3892 } 3882 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698