| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1141 'conditions': [ | 1141 'conditions': [ |
| 1142 ['mac_breakpad==1', { | 1142 ['mac_breakpad==1', { |
| 1143 'variables': { | 1143 'variables': { |
| 1144 # A real .dSYM is needed for dump_syms to operate on. | 1144 # A real .dSYM is needed for dump_syms to operate on. |
| 1145 'mac_real_dsym': 1, | 1145 'mac_real_dsym': 1, |
| 1146 }, | 1146 }, |
| 1147 }], | 1147 }], |
| 1148 ], | 1148 ], |
| 1149 }, # target helper_app | 1149 }, # target helper_app |
| 1150 { | 1150 { |
| 1151 # This produces the app mode loader, but not as a bundle. Chromium |
| 1152 # itself is responsible for producing bundles. |
| 1153 'target_name': 'app_mode_app', |
| 1154 'type': 'executable', |
| 1155 'product_name': '<(mac_product_name) App Mode Loader', |
| 1156 'sources': [ |
| 1157 'app/app_mode_loader_mac.mm', |
| 1158 'common/app_mode_common_mac.h', |
| 1159 'common/app_mode_common_mac.mm', |
| 1160 ], |
| 1161 'include_dirs': [ |
| 1162 '..', |
| 1163 ], |
| 1164 'link_settings': { |
| 1165 'libraries': [ |
| 1166 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 1167 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 1168 ], |
| 1169 }, |
| 1170 }, # target app_mode_app |
| 1171 { |
| 1151 # Convenience target to build a disk image. | 1172 # Convenience target to build a disk image. |
| 1152 'target_name': 'build_app_dmg', | 1173 'target_name': 'build_app_dmg', |
| 1153 # Don't place this in the 'all' list; most won't want it. | 1174 # Don't place this in the 'all' list; most won't want it. |
| 1154 # In GYP, booleans are 0/1, not True/False. | 1175 # In GYP, booleans are 0/1, not True/False. |
| 1155 'suppress_wildcard': 1, | 1176 'suppress_wildcard': 1, |
| 1156 'type': 'none', | 1177 'type': 'none', |
| 1157 'dependencies': [ | 1178 'dependencies': [ |
| 1158 'chrome', | 1179 'chrome', |
| 1159 ], | 1180 ], |
| 1160 'variables': { | 1181 'variables': { |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 }], # targets | 1707 }], # targets |
| 1687 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1708 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1688 ], # 'conditions' | 1709 ], # 'conditions' |
| 1689 } | 1710 } |
| 1690 | 1711 |
| 1691 # Local Variables: | 1712 # Local Variables: |
| 1692 # tab-width:2 | 1713 # tab-width:2 |
| 1693 # indent-tabs-mode:nil | 1714 # indent-tabs-mode:nil |
| 1694 # End: | 1715 # End: |
| 1695 # vim: set expandtab tabstop=2 shiftwidth=2: | 1716 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |