OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'type': 'executable', |
| 7 'mac_bundle': 1, |
| 8 'include_dirs': [ |
| 9 '../..', |
| 10 ], |
| 11 'dependencies': [ |
| 12 'ios_web.gyp:ios_web', |
| 13 'ios_web.gyp:ios_web_app', |
| 14 '../../base/base.gyp:base', |
| 15 '../../net/net.gyp:net', |
| 16 '../../net/net.gyp:net_extras', |
| 17 '../../ui/base/ui_base.gyp:ui_base', |
| 18 ], |
| 19 'export_dependent_settings': [ |
| 20 'ios_web.gyp:ios_web', |
| 21 'ios_web.gyp:ios_web_app', |
| 22 '../../base/base.gyp:base', |
| 23 '../../net/net.gyp:net', |
| 24 '../../ui/base/ui_base.gyp:ui_base', |
| 25 ], |
| 26 'xcode_settings': { |
| 27 'INFOPLIST_FILE': 'shell/Info.plist', |
| 28 }, |
| 29 'sources': [ |
| 30 'shell/app_delegate.h', |
| 31 'shell/app_delegate.mm', |
| 32 'shell/shell_browser_state.h', |
| 33 'shell/shell_browser_state.mm', |
| 34 'shell/shell_main_delegate.h', |
| 35 'shell/shell_main_delegate.mm', |
| 36 'shell/shell_network_delegate.cc', |
| 37 'shell/shell_network_delegate.h', |
| 38 'shell/shell_url_request_context_getter.h', |
| 39 'shell/shell_url_request_context_getter.mm', |
| 40 'shell/shell_web_client.h', |
| 41 'shell/shell_web_client.mm', |
| 42 'shell/shell_web_main_parts.h', |
| 43 'shell/shell_web_main_parts.mm', |
| 44 'shell/view_controller.h', |
| 45 'shell/view_controller.mm', |
| 46 'shell/web_exe_main.mm', |
| 47 ], |
| 48 'link_settings': { |
| 49 'libraries': [ |
| 50 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', |
| 51 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 52 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 53 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 54 ], |
| 55 'mac_bundle_resources': [ |
| 56 'shell/Default.png', |
| 57 'shell/MainView.xib', |
| 58 'shell/textfield_background@2x.png', |
| 59 'shell/toolbar_back@2x.png', |
| 60 'shell/toolbar_forward@2x.png', |
| 61 ], |
| 62 }, |
| 63 |
| 64 } |
OLD | NEW |