Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(344)

Unified Diff: ios/web/ios_web_shell.gyp

Issue 1902373003: Add support for ios_web_shell xctest for devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Info.plist -> Module-Info.plist Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/third_party/ochamcrest/ochamcrest.gyp ('k') | ios/web/ios_web_shell_exe.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/ios_web_shell.gyp
diff --git a/ios/web/ios_web_shell.gyp b/ios/web/ios_web_shell.gyp
index 86b577f26bb8662c18431abdac3f988155fd6b4e..244c1ceb29ab64a11803b2d8c9d3462b473e0a3d 100644
--- a/ios/web/ios_web_shell.gyp
+++ b/ios/web/ios_web_shell.gyp
@@ -10,78 +10,9 @@
{
# GN version: //ios/web/shell:ios_web_shell
'target_name': 'ios_web_shell',
- 'type': 'executable',
- 'mac_bundle': 1,
- 'include_dirs': [
- '../..',
- ],
- 'dependencies': [
- 'ios_web.gyp:ios_web',
- 'ios_web.gyp:ios_web_app',
- '../../base/base.gyp:base',
- '../../net/net.gyp:net',
- '../../net/net.gyp:net_extras',
- '../../ui/base/ui_base.gyp:ui_base',
- ],
- 'export_dependent_settings': [
- 'ios_web.gyp:ios_web',
- 'ios_web.gyp:ios_web_app',
- '../../base/base.gyp:base',
- '../../net/net.gyp:net',
- '../../ui/base/ui_base.gyp:ui_base',
- ],
- 'xcode_settings': {
- 'INFOPLIST_FILE': 'shell/Info.plist',
- 'STRIPFLAGS': '-S',
- # For XCTests a test bundle is injected into the application. Some
- # symbols are required by the tests, and should be included in
- # the file 'ios_web_shell_exported_symbols_list'. The use of
- # -exported_symbols_list ensures that the symbols in this file are
- # exposed. GCC_SYMBOLS_PRIVATE_EXTERN must also be set to 'NO', to
- # ensure symbols aren't hidden and not able to be exposed with
- # -exported_symbols_list. For more information see 'man ld'.
- 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
- 'OTHER_LDFLAGS': [
- '-Xlinker -objc_abi_version',
- '-Xlinker 2',
- '-exported_symbols_list',
- '../../ios/web/ios_web_shell_exported_symbols_list',
- ]
- },
- 'sources': [
- 'shell/app_delegate.h',
- 'shell/app_delegate.mm',
- 'shell/shell_browser_state.h',
- 'shell/shell_browser_state.mm',
- 'shell/shell_main_delegate.h',
- 'shell/shell_main_delegate.mm',
- 'shell/shell_network_delegate.cc',
- 'shell/shell_network_delegate.h',
- 'shell/shell_url_request_context_getter.h',
- 'shell/shell_url_request_context_getter.mm',
- 'shell/shell_web_client.h',
- 'shell/shell_web_client.mm',
- 'shell/shell_web_main_parts.h',
- 'shell/shell_web_main_parts.mm',
- 'shell/view_controller.h',
- 'shell/view_controller.mm',
- 'shell/web_exe_main.mm',
- ],
- 'link_settings': {
- 'libraries': [
- '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
- '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
- '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
- '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
- ],
- 'mac_bundle_resources': [
- 'shell/Default.png',
- 'shell/MainView.xib',
- 'shell/textfield_background@2x.png',
- 'shell/toolbar_back@2x.png',
- 'shell/toolbar_forward@2x.png',
- ],
- },
+ 'includes': [
+ 'ios_web_shell_exe.gypi',
+ ]
},
],
}
« no previous file with comments | « ios/third_party/ochamcrest/ochamcrest.gyp ('k') | ios/web/ios_web_shell_exe.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698