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 # GN version: //ios/web/shell:ios_web_shell | 11 # GN version: //ios/web/shell:ios_web_shell |
12 'target_name': 'ios_web_shell', | 12 'target_name': 'ios_web_shell', |
13 'type': 'executable', | 13 'type': 'executable', |
14 'mac_bundle': 1, | 14 'mac_bundle': 1, |
15 'include_dirs': [ | 15 'include_dirs': [ |
16 '../..', | 16 '../..', |
17 ], | 17 ], |
18 'dependencies': [ | 18 'dependencies': [ |
19 'ios_web_shell_lib', | 19 'ios_web_shell_lib', |
20 ], | 20 ], |
21 'xcode_settings': { | 21 'xcode_settings': { |
22 'INFOPLIST_FILE': 'shell/Info.plist', | 22 'INFOPLIST_FILE': 'shell/Info.plist', |
| 23 'STRIPFLAGS': '-S', |
23 'OTHER_LDFLAGS': [ | 24 'OTHER_LDFLAGS': [ |
24 '-Xlinker -objc_abi_version -Xlinker 2' | 25 '-Xlinker -objc_abi_version', |
| 26 '-Xlinker 2', |
| 27 '-exported_symbols_list', |
| 28 '../../ios/web/ios_web_shell_exported_symbols_list' |
25 ] | 29 ] |
26 }, | 30 }, |
27 'sources': [ | 31 'sources': [ |
28 'shell/web_exe_main.mm', | 32 'shell/web_exe_main.mm', |
29 ], | 33 ], |
30 }, | 34 }, |
31 { | 35 { |
32 # GN version: //ios/web/shell:shell | 36 # GN version: //ios/web/shell:shell |
33 'target_name': 'ios_web_shell_lib', | 37 'target_name': 'ios_web_shell_lib', |
34 'type': 'static_library', | 38 'type': 'static_library', |
(...skipping 26 matching lines...) Expand all Loading... |
61 'shell/shell_network_delegate.h', | 65 'shell/shell_network_delegate.h', |
62 'shell/shell_url_request_context_getter.h', | 66 'shell/shell_url_request_context_getter.h', |
63 'shell/shell_url_request_context_getter.mm', | 67 'shell/shell_url_request_context_getter.mm', |
64 'shell/shell_web_client.h', | 68 'shell/shell_web_client.h', |
65 'shell/shell_web_client.mm', | 69 'shell/shell_web_client.mm', |
66 'shell/shell_web_main_parts.h', | 70 'shell/shell_web_main_parts.h', |
67 'shell/shell_web_main_parts.mm', | 71 'shell/shell_web_main_parts.mm', |
68 'shell/view_controller.h', | 72 'shell/view_controller.h', |
69 'shell/view_controller.mm', | 73 'shell/view_controller.mm', |
70 ], | 74 ], |
| 75 'xcode_settings': { |
| 76 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', |
| 77 }, |
71 'link_settings': { | 78 'link_settings': { |
72 'libraries': [ | 79 'libraries': [ |
73 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', | 80 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', |
74 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 81 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
75 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 82 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
76 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 83 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
77 ], | 84 ], |
78 'mac_bundle_resources': [ | 85 'mac_bundle_resources': [ |
79 'shell/Default.png', | 86 'shell/Default.png', |
80 'shell/MainView.xib', | 87 'shell/MainView.xib', |
81 'shell/textfield_background@2x.png', | 88 'shell/textfield_background@2x.png', |
82 'shell/toolbar_back@2x.png', | 89 'shell/toolbar_back@2x.png', |
83 'shell/toolbar_forward@2x.png', | 90 'shell/toolbar_forward@2x.png', |
84 ], | 91 ], |
85 }, | 92 }, |
86 }, | 93 }, |
87 ], | 94 ], |
88 } | 95 } |
OLD | NEW |