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 1688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1699 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHAR
ED_INTERMEDIATE_DIR) -x <(INTERMEDIATE_DIR) <(pseudo_locales))' | 1699 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHAR
ED_INTERMEDIATE_DIR) -x <(INTERMEDIATE_DIR) <(pseudo_locales))' |
1700 ], | 1700 ], |
1701 }, | 1701 }, |
1702 { | 1702 { |
1703 'destination': '<(PRODUCT_DIR)', | 1703 'destination': '<(PRODUCT_DIR)', |
1704 'files': [ | 1704 'files': [ |
1705 '<(INTERMEDIATE_DIR)/repack/chrome.pak' | 1705 '<(INTERMEDIATE_DIR)/repack/chrome.pak' |
1706 ], | 1706 ], |
1707 }, | 1707 }, |
1708 ], | 1708 ], |
| 1709 'conditions': [ |
| 1710 ['branding=="Chrome"', { |
| 1711 'copies': [ |
| 1712 { |
| 1713 # This location is for the Windows and Linux builds. For |
| 1714 # Windows, the chrome.release file ensures that these files are |
| 1715 # copied into the installer. Note that we have a separate |
| 1716 # section in chrome_dll.gyp to copy these files for Mac, as it |
| 1717 # needs to be dropped inside the framework. |
| 1718 'destination': '<(PRODUCT_DIR)/default_apps', |
| 1719 'files': ['<@(default_apps_list)'] |
| 1720 }, |
| 1721 ], |
| 1722 }], |
| 1723 ], |
1709 }], # targets | 1724 }], # targets |
1710 }], # OS != "mac" | 1725 }], # OS != "mac" |
1711 ], # 'conditions' | 1726 ], # 'conditions' |
1712 } | 1727 } |
OLD | NEW |