| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 # Place some targets in gypi files to reduce contention on this file. | 122 # Place some targets in gypi files to reduce contention on this file. |
| 123 # By using an include, we keep everything in a single xcodeproj file. | 123 # By using an include, we keep everything in a single xcodeproj file. |
| 124 # Note on Win64 targets: targets that end with win64 be used | 124 # Note on Win64 targets: targets that end with win64 be used |
| 125 # on 64-bit Windows only. Targets that end with nacl_win64 should be used | 125 # on 64-bit Windows only. Targets that end with nacl_win64 should be used |
| 126 # by Native Client only. | 126 # by Native Client only. |
| 127 'app/policy/policy_templates.gypi', | 127 'app/policy/policy_templates.gypi', |
| 128 'chrome_browser.gypi', | 128 'chrome_browser.gypi', |
| 129 'chrome_common.gypi', | 129 'chrome_common.gypi', |
| 130 'chrome_dll.gypi', | 130 'chrome_dll.gypi', |
| 131 'chrome_exe.gypi', | 131 'chrome_exe.gypi', |
| 132 'syzygy.gypi', |
| 132 'chrome_installer.gypi', | 133 'chrome_installer.gypi', |
| 133 'chrome_installer_util.gypi', | 134 'chrome_installer_util.gypi', |
| 134 'chrome_renderer.gypi', | 135 'chrome_renderer.gypi', |
| 135 'chrome_tests.gypi', | 136 'chrome_tests.gypi', |
| 136 'common_constants.gypi', | 137 'common_constants.gypi', |
| 137 'nacl.gypi', | 138 'nacl.gypi', |
| 138 ], | 139 ], |
| 139 'targets': [ | 140 'targets': [ |
| 140 { | 141 { |
| 141 # TODO(mark): It would be better if each static library that needed | 142 # TODO(mark): It would be better if each static library that needed |
| (...skipping 1543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1685 'destination': '<(PRODUCT_DIR)', | 1686 'destination': '<(PRODUCT_DIR)', |
| 1686 'files': [ | 1687 'files': [ |
| 1687 '<(INTERMEDIATE_DIR)/repack/chrome.pak' | 1688 '<(INTERMEDIATE_DIR)/repack/chrome.pak' |
| 1688 ], | 1689 ], |
| 1689 }, | 1690 }, |
| 1690 ], | 1691 ], |
| 1691 }], # targets | 1692 }], # targets |
| 1692 }], # os_posix == 1 and OS != "mac" | 1693 }], # os_posix == 1 and OS != "mac" |
| 1693 ], # 'conditions' | 1694 ], # 'conditions' |
| 1694 } | 1695 } |
| OLD | NEW |