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

Side by Side Diff: chrome/chrome.gyp

Issue 353002: Fix "line 2: BUILT_PRODUCTS_DIR: command not found" (Closed) Base URL: svn://svn.chromium.org/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
« 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 8
9 'variables': { 9 'variables': {
10 'version_py_path': 'tools/build/version.py', 10 'version_py_path': 'tools/build/version.py',
(...skipping 3720 matching lines...) Expand 10 before | Expand all | Expand 10 after
3731 { 3731 {
3732 'postbuild_name': 'Clean up old versions', 3732 'postbuild_name': 'Clean up old versions',
3733 'action': [ 3733 'action': [
3734 'tools/build/mac/clean_up_old_versions', 3734 'tools/build/mac/clean_up_old_versions',
3735 '<(version_full)' 3735 '<(version_full)'
3736 ], 3736 ],
3737 }, 3737 },
3738 { 3738 {
3739 # TODO(tony): Remove this after Nov 13, 2009. 3739 # TODO(tony): Remove this after Nov 13, 2009.
3740 'postbuild_name': 'cleanup_theme_pak', 3740 'postbuild_name': 'cleanup_theme_pak',
3741 'action': ['rm', '-f', 3741 'action': [
3742 '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/Versions' 3742 'rm', '-f',
3743 '/<(version_full)/<(mac_product_name) Framework.framework/' 3743 '${BUILT_PRODUCTS_DIR}/<(mac_product_name).app/Contents/'
3744 'Resources/theme.pak'], 3744 'Versions/<(version_full)/'
3745 '<(mac_product_name) Framework.framework/Resources/theme.pak'
Nico 2009/11/02 17:23:51 I prefer to explicitly use `+` in these cases at t
3746 ],
3745 }, 3747 },
3746 ], # postbuilds 3748 ], # postbuilds
3747 }, { # else: OS != "mac" 3749 }, { # else: OS != "mac"
3748 'conditions': [ 3750 'conditions': [
3749 ['branding=="Chrome"', { 3751 ['branding=="Chrome"', {
3750 'product_name': 'chrome' 3752 'product_name': 'chrome'
3751 }, { # else: Branding!="Chrome" 3753 }, { # else: Branding!="Chrome"
3752 # TODO: change to: 3754 # TODO: change to:
3753 # 'product_name': 'chromium' 3755 # 'product_name': 'chromium'
3754 # whenever we convert the rest of the infrastructure 3756 # whenever we convert the rest of the infrastructure
(...skipping 3199 matching lines...) Expand 10 before | Expand all | Expand 10 after
6954 ] 6956 ]
6955 }], 6957 }],
6956 ], # 'conditions' 6958 ], # 'conditions'
6957 } 6959 }
6958 6960
6959 # Local Variables: 6961 # Local Variables:
6960 # tab-width:2 6962 # tab-width:2
6961 # indent-tabs-mode:nil 6963 # indent-tabs-mode:nil
6962 # End: 6964 # End:
6963 # vim: set expandtab tabstop=2 shiftwidth=2: 6965 # vim: set expandtab tabstop=2 shiftwidth=2:
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