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

Side by Side Diff: chrome/chrome.gyp

Issue 7827021: Changed mac and win Official Chrome build to drop default app CRXs in the build/installer output. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 | chrome/chrome_dll.gypi » ('j') | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 1720 matching lines...) Expand 10 before | Expand all | Expand 10 after
1731 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHAR ED_INTERMEDIATE_DIR) -x <(INTERMEDIATE_DIR) <(pseudo_locales))' 1731 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHAR ED_INTERMEDIATE_DIR) -x <(INTERMEDIATE_DIR) <(pseudo_locales))'
1732 ], 1732 ],
1733 }, 1733 },
1734 { 1734 {
1735 'destination': '<(PRODUCT_DIR)', 1735 'destination': '<(PRODUCT_DIR)',
1736 'files': [ 1736 'files': [
1737 '<(INTERMEDIATE_DIR)/repack/chrome.pak' 1737 '<(INTERMEDIATE_DIR)/repack/chrome.pak'
1738 ], 1738 ],
1739 }, 1739 },
1740 ], 1740 ],
1741 'conditions': [
1742 ['branding=="Chrome"', {
1743 'copies': [
1744 {
1745 # This location is for the Windows and Linux builds. For
1746 # Windows, the chrome.release file ensures that these files are
1747 # copied into the installer. Note that we have a separate
1748 # section in chrome_dll.gyp to copy these files for Mac, as it
1749 # needs to be dropped inside the framework.
1750 'destination': '<(PRODUCT_DIR)/default_apps',
1751 'files': [
1752 'browser/resources/default_apps/gmail.crx',
1753 'browser/resources/default_apps/youtube.crx',
1754 ],
1755 },
1756 ],
1757 }],
1758 ],
1741 }], # targets 1759 }], # targets
1742 }], # OS != "mac" 1760 }], # OS != "mac"
1743 ], # 'conditions' 1761 ], # 'conditions'
1744 } 1762 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698