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

Side by Side Diff: chrome/chrome.gyp

Issue 115293: Add a dep on symupload when using breakpad so it gets built for the bot to th... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 | Annotate | Revision Log
« 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 # Mac NOTE: at the start of the conditions block we default some vars 8 # Mac NOTE: at the start of the conditions block we default some vars
9 # that control features based on the branding, this way each place that 9 # that control features based on the branding, this way each place that
10 # needs to know about the feature isn't hard coded to the branding type. 10 # needs to know about the feature isn't hard coded to the branding type.
(...skipping 1971 matching lines...) Expand 10 before | Expand all | Expand 10 after
1982 'mac_bundle_resources': ['app/theme/chromium/app.icns'], 1982 'mac_bundle_resources': ['app/theme/chromium/app.icns'],
1983 'variables': { 1983 'variables': {
1984 'bundle_id': 'org.chromium.Chromium', 1984 'bundle_id': 'org.chromium.Chromium',
1985 }, 1985 },
1986 }], 1986 }],
1987 ['mac_breakpad==1', { 1987 ['mac_breakpad==1', {
1988 # Only include breakpad in official builds. 1988 # Only include breakpad in official builds.
1989 'dependencies': [ 1989 'dependencies': [
1990 '../breakpad/breakpad.gyp:breakpad', 1990 '../breakpad/breakpad.gyp:breakpad',
1991 '../breakpad/breakpad.gyp:dump_syms', 1991 '../breakpad/breakpad.gyp:dump_syms',
1992 '../breakpad/breakpad.gyp:symupload',
1992 ], 1993 ],
1993 'copies': [ 1994 'copies': [
1994 { 1995 {
1995 'destination': '<(PRODUCT_DIR)/<(branding).app/Contents/Resour ces/', 1996 'destination': '<(PRODUCT_DIR)/<(branding).app/Contents/Resour ces/',
1996 'files': ['<(PRODUCT_DIR)/crash_inspector', '<(PRODUCT_DIR)/cr ash_report_sender.app'], 1997 'files': ['<(PRODUCT_DIR)/crash_inspector', '<(PRODUCT_DIR)/cr ash_report_sender.app'],
1997 }, 1998 },
1998 ], 1999 ],
1999 'target_conditions': [ 2000 'target_conditions': [
2000 # We use target_conditions here that is always true to force 2001 # We use target_conditions here that is always true to force
2001 # this post build to run last. This lets the strip from 2002 # this post build to run last. This lets the strip from
(...skipping 1572 matching lines...) Expand 10 before | Expand all | Expand 10 after
3574 # Use outputs of this action as inputs for the main target build. 3575 # Use outputs of this action as inputs for the main target build.
3575 # Seems as a misnomer but makes this happy on Linux (scons). 3576 # Seems as a misnomer but makes this happy on Linux (scons).
3576 'process_outputs_as_sources': 1, 3577 'process_outputs_as_sources': 1,
3577 }, 3578 },
3578 ], # 'actions' 3579 ], # 'actions'
3579 }, 3580 },
3580 ] 3581 ]
3581 }], 3582 }],
3582 ], # 'conditions' 3583 ], # 'conditions'
3583 } 3584 }
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