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

Side by Side Diff: chrome/chrome.gyp

Issue 126062: Cleanups from post-submit suggestions. (Closed)
Patch Set: more cleanups Created 11 years, 6 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
« build/linux/dump_signature.py ('K') | « build/linux/dump_signature.py ('k') | 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 2305 matching lines...) Expand 10 before | Expand all | Expand 10 after
2316 'INFOPLIST_FILE': 'app/app-Info.plist', 2316 'INFOPLIST_FILE': 'app/app-Info.plist',
2317 }, 2317 },
2318 'conditions': [ 2318 'conditions': [
2319 ['OS=="linux"', { 2319 ['OS=="linux"', {
2320 'conditions': [ 2320 'conditions': [
2321 ['branding=="Chrome"', { 2321 ['branding=="Chrome"', {
2322 'actions': [ 2322 'actions': [
2323 { 2323 {
2324 'action_name': 'dump_symbols', 2324 'action_name': 'dump_symbols',
2325 'inputs': [ 2325 'inputs': [
2326 '<(DEPTH)/build/linux/dump_app_syms',
2327 '<(DEPTH)/build/linux/dump_signature.py',
2326 '<(PRODUCT_DIR)/dump_syms', 2328 '<(PRODUCT_DIR)/dump_syms',
2327 '<(PRODUCT_DIR)/chrome', 2329 '<(PRODUCT_DIR)/chrome',
2328 ], 2330 ],
2329 'outputs': [ 2331 'outputs': [
2330 '<(PRODUCT_DIR)/chrome.breakpad', 2332 '<(PRODUCT_DIR)/chrome.breakpad',
2331 ], 2333 ],
2332 'action': ['<(DEPTH)/build/linux/dump_app_syms', 2334 'action': ['<(DEPTH)/build/linux/dump_app_syms',
2333 '<(PRODUCT_DIR)/dump_syms', 2335 '<(PRODUCT_DIR)/dump_syms',
2334 '<(PRODUCT_DIR)/chrome', '<@(_outputs)'], 2336 '<(PRODUCT_DIR)/chrome', '<@(_outputs)'],
2335 }, 2337 },
(...skipping 2207 matching lines...) Expand 10 before | Expand all | Expand 10 after
4543 # Use outputs of this action as inputs for the main target build. 4545 # Use outputs of this action as inputs for the main target build.
4544 # Seems as a misnomer but makes this happy on Linux (scons). 4546 # Seems as a misnomer but makes this happy on Linux (scons).
4545 'process_outputs_as_sources': 1, 4547 'process_outputs_as_sources': 1,
4546 }, 4548 },
4547 ], # 'actions' 4549 ], # 'actions'
4548 }, 4550 },
4549 ] 4551 ]
4550 }], 4552 }],
4551 ], # 'conditions' 4553 ], # 'conditions'
4552 } 4554 }
OLDNEW
« build/linux/dump_signature.py ('K') | « build/linux/dump_signature.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698