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

Side by Side Diff: chrome/chrome.gyp

Issue 131028: Use 'cp' not 'copy' to copy in the FirstRun file, since the gyp msvs... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: 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 | 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 # 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 2648 matching lines...) Expand 10 before | Expand all | Expand 10 after
2659 'message': 'Generating version information in <(_outputs)' 2659 'message': 'Generating version information in <(_outputs)'
2660 }, 2660 },
2661 { 2661 {
2662 'action_name': 'first_run', 2662 'action_name': 'first_run',
2663 'inputs': [ 2663 'inputs': [
2664 'app/FirstRun', 2664 'app/FirstRun',
2665 ], 2665 ],
2666 'outputs': [ 2666 'outputs': [
2667 '<(PRODUCT_DIR)/First Run', 2667 '<(PRODUCT_DIR)/First Run',
2668 ], 2668 ],
2669 'action': ['copy', '<@(_inputs)', '<@(_outputs)'], 2669 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'],
2670 'message': 'Copy first run complete sentinel file', 2670 'message': 'Copy first run complete sentinel file',
2671 }, 2671 },
2672 ], 2672 ],
2673 },{ # 'OS!="win" 2673 },{ # 'OS!="win"
2674 'dependencies': [ 2674 'dependencies': [
2675 # On Linux and Mac, link the dependencies (libraries) 2675 # On Linux and Mac, link the dependencies (libraries)
2676 # that make up actual Chromium functionality directly 2676 # that make up actual Chromium functionality directly
2677 # into the executable. 2677 # into the executable.
2678 '<@(chromium_dependencies)', 2678 '<@(chromium_dependencies)',
2679 ], 2679 ],
(...skipping 2086 matching lines...) Expand 10 before | Expand all | Expand 10 after
4766 # Use outputs of this action as inputs for the main target build. 4766 # Use outputs of this action as inputs for the main target build.
4767 # Seems as a misnomer but makes this happy on Linux (scons). 4767 # Seems as a misnomer but makes this happy on Linux (scons).
4768 'process_outputs_as_sources': 1, 4768 'process_outputs_as_sources': 1,
4769 }, 4769 },
4770 ], # 'actions' 4770 ], # 'actions'
4771 }, 4771 },
4772 ] 4772 ]
4773 }], 4773 }],
4774 ], # 'conditions' 4774 ], # 'conditions'
4775 } 4775 }
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