| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |