| 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 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1078 ], | 1078 ], |
| 1079 }, # target helper_app | 1079 }, # target helper_app |
| 1080 { | 1080 { |
| 1081 # This produces the app mode loader, but not as a bundle. Chromium | 1081 # This produces the app mode loader, but not as a bundle. Chromium |
| 1082 # itself is responsible for producing bundles. | 1082 # itself is responsible for producing bundles. |
| 1083 'target_name': 'app_mode_app', | 1083 'target_name': 'app_mode_app', |
| 1084 'type': 'executable', | 1084 'type': 'executable', |
| 1085 'product_name': '<(mac_product_name) App Mode Loader', | 1085 'product_name': '<(mac_product_name) App Mode Loader', |
| 1086 'sources': [ | 1086 'sources': [ |
| 1087 'app/app_mode_loader_mac.mm', | 1087 'app/app_mode_loader_mac.mm', |
| 1088 'common/app_mode_common_mac.h', | 1088 'common/mac/app_mode_common.h', |
| 1089 'common/app_mode_common_mac.mm', | 1089 'common/mac/app_mode_common.mm', |
| 1090 ], | 1090 ], |
| 1091 'include_dirs': [ | 1091 'include_dirs': [ |
| 1092 '..', | 1092 '..', |
| 1093 ], | 1093 ], |
| 1094 'link_settings': { | 1094 'link_settings': { |
| 1095 'libraries': [ | 1095 'libraries': [ |
| 1096 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 1096 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 1097 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 1097 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 1098 ], | 1098 ], |
| 1099 }, | 1099 }, |
| (...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1726 'destination': '<(PRODUCT_DIR)', | 1726 'destination': '<(PRODUCT_DIR)', |
| 1727 'files': [ | 1727 'files': [ |
| 1728 '<(INTERMEDIATE_DIR)/repack/chrome.pak' | 1728 '<(INTERMEDIATE_DIR)/repack/chrome.pak' |
| 1729 ], | 1729 ], |
| 1730 }, | 1730 }, |
| 1731 ], | 1731 ], |
| 1732 }], # targets | 1732 }], # targets |
| 1733 }], # OS != "mac" | 1733 }], # OS != "mac" |
| 1734 ], # 'conditions' | 1734 ], # 'conditions' |
| 1735 } | 1735 } |
| OLD | NEW |