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

Unified Diff: remoting/remoting_ios.gypi

Issue 1763783002: Staging an example iOS project to be the dummy target for CRD iOS App. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated the example to use the opengl wrapper and minor cleanup. Created 4 years, 9 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
« remoting/client/opengl_wrapper.h ('K') | « remoting/client/opengl_wrapper.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/remoting_ios.gypi
diff --git a/remoting/remoting_ios.gypi b/remoting/remoting_ios.gypi
index 83f1d45d30f7f4f60d1c28bda003d1bedca5e901..d698643dbada29551098bebe2cb4aadff76354ea 100644
--- a/remoting/remoting_ios.gypi
+++ b/remoting/remoting_ios.gypi
@@ -26,6 +26,72 @@
'targets': [
{
+ 'target_name': 'remoting_client_ios_app',
+ 'type': 'executable',
+ 'mac_bundle': 1,
+ 'product_name': 'Chromium Remote Desktop',
Lambros 2016/03/16 00:22:12 Chromoting?
+ 'sources': [
+ 'client/ios/main.mm',
+ ],
+ 'xcode_settings': {
+ 'CLANG_ENABLE_OBJC_ARC': 'YES',
+ 'INFOPLIST_FILE': 'client/ios/remoting_ios-Info.plist',
+ 'BUNDLE_SHORT_VERSION': '<(version_short)',
+ 'BUNDLE_VERSION': '<(version_full)',
+ 'BUNDLE_IDENTIFIER': 'com.google.ChromiumRemoteDesktop',
Lambros 2016/03/16 00:22:12 Either Chromoting or Chrome Remote Desktop: If yo
nicholss 2016/03/16 16:40:39 I can't change it for iOS builds and be able to de
+ },
+ 'include_dirs': [
+ '<(DEPTH)',
Lambros 2016/03/16 00:22:12 <(DEPTH) could be replaced with '..', since this .
nicholss 2016/03/16 16:40:39 That works until you move things. I would prefer t
+ ],
+ 'mac_bundle_resources': [
+ ],
+ 'dependencies': [
+ 'remoting_client_ios_static',
+ ],
+ }, # end of target 'remoting_client_ios_app'
+
+ {
+ 'target_name': 'remoting_client_ios_static',
+ 'type': 'static_library',
+ 'sources': [
+ 'client/ios/app_delegate.h',
+ 'client/ios/app_delegate.mm',
+ 'client/ios/example_view_controller.h',
+ 'client/ios/example_view_controller.mm',
+ ],
+ 'xcode_settings': {
+ 'CLANG_ENABLE_OBJC_ARC': 'YES',
+ 'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++11',
+ },
+ 'include_dirs': [
+ '<(DEPTH)',
+ '<(DEPTH)/third_party',
+ ],
+ 'dependencies': [
+ 'remoting_base',
+ 'remoting_client',
+ 'remoting_protocol',
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/base/base.gyp:base_i18n',
+ '<(DEPTH)/base/base.gyp:base_static',
+ '<(DEPTH)/ui/base/ui_base.gyp:ui_base',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework',
+ '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
+ '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
+ '$(SDKROOT)/System/Library/Frameworks/CoreData.framework',
+ '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
+ '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
+ '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
+ '$(SDKROOT)/System/Library/Frameworks/GLKit.framework',
+ '$(SDKROOT)/System/Library/Frameworks/OpenGLES.framework',
+ ],
+ },
+ }, # end of target 'remoting_client_ios_static'
+
+ {
'target_name': 'remoting_ios_l10n',
'type': 'none',
'variables': {
« remoting/client/opengl_wrapper.h ('K') | « remoting/client/opengl_wrapper.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698