| Index: chrome/chrome.gyp
|
| diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
|
| index d05dd8a16e3807ffd72218a81cb95493c2ae6d77..0087c6a025590d4006b71117a05d097822f1c127 100644
|
| --- a/chrome/chrome.gyp
|
| +++ b/chrome/chrome.gyp
|
| @@ -1148,6 +1148,27 @@
|
| ],
|
| }, # target helper_app
|
| {
|
| + # This produces the app mode loader, but not as a bundle. Chromium
|
| + # itself is responsible for producing bundles.
|
| + 'target_name': 'app_mode_app',
|
| + 'type': 'executable',
|
| + 'product_name': '<(mac_product_name) App Mode Loader',
|
| + 'sources': [
|
| + 'app/app_mode_loader_mac.mm',
|
| + 'common/app_mode_common_mac.h',
|
| + 'common/app_mode_common_mac.mm',
|
| + ],
|
| + 'include_dirs': [
|
| + '..',
|
| + ],
|
| + 'link_settings': {
|
| + 'libraries': [
|
| + '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
|
| + '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
|
| + ],
|
| + },
|
| + }, # target app_mode_app
|
| + {
|
| # Convenience target to build a disk image.
|
| 'target_name': 'build_app_dmg',
|
| # Don't place this in the 'all' list; most won't want it.
|
|
|