| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'ios_web_shell', | 11 'target_name': 'ios_web_shell', |
| 12 'type': 'executable', | 12 'type': 'executable', |
| 13 'mac_bundle': 1, | 13 'mac_bundle': 1, |
| 14 'include_dirs': [ | 14 'include_dirs': [ |
| 15 '../..', | 15 '../..', |
| 16 ], | 16 ], |
| 17 'dependencies': [ | 17 'dependencies': [ |
| 18 'ios_web.gyp:ios_web', | 18 'ios_web.gyp:ios_web', |
| 19 'ios_web.gyp:ios_web_app', | 19 'ios_web.gyp:ios_web_app', |
| 20 '../../base/base.gyp:base', | 20 '../../base/base.gyp:base', |
| 21 '../../net/net.gyp:net', | 21 '../../net/net.gyp:net', |
| 22 '../../net/net.gyp:net_extras', |
| 22 '../../ui/base/ui_base.gyp:ui_base', | 23 '../../ui/base/ui_base.gyp:ui_base', |
| 23 ], | 24 ], |
| 24 'xcode_settings': { | 25 'xcode_settings': { |
| 25 'INFOPLIST_FILE': 'shell/Info.plist', | 26 'INFOPLIST_FILE': 'shell/Info.plist', |
| 26 'OTHER_LDFLAGS': [ | 27 'OTHER_LDFLAGS': [ |
| 27 '-Xlinker -objc_abi_version -Xlinker 2' | 28 '-Xlinker -objc_abi_version -Xlinker 2' |
| 28 ] | 29 ] |
| 29 }, | 30 }, |
| 30 'sources': [ | 31 'sources': [ |
| 31 'shell/app_delegate.h', | 32 'shell/app_delegate.h', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 57 'libraries': [ | 58 'libraries': [ |
| 58 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', | 59 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', |
| 59 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 60 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 60 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 61 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 61 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 62 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 62 ], | 63 ], |
| 63 }, | 64 }, |
| 64 }, | 65 }, |
| 65 ], | 66 ], |
| 66 } | 67 } |
| OLD | NEW |