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

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: Correct comment label. 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
« no previous file with comments | « 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..d8c28e6487202cf5786fc1fab0244dd215e5504e 100644
--- a/remoting/remoting_ios.gypi
+++ b/remoting/remoting_ios.gypi
@@ -6,6 +6,7 @@
'conditions': [
['OS=="ios"', {
'variables': {
+ 'bundle_identifier' : 'org.chromium.ChromotingDemo',
'remoting_ios_locales': [
'ar', 'ca', 'cs', 'da', 'de', 'el', 'en', 'en-GB', 'es', 'es-MX',
'fi', 'fr', 'he', 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'ko', 'ms',
@@ -26,6 +27,72 @@
'targets': [
{
+ 'target_name': 'remoting_client_ios_demo',
+ 'type': 'executable',
+ 'mac_bundle': 1,
+ 'product_name': 'Chromoting Demo',
+ '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': '<(bundle_identifier)',
+ },
+ 'include_dirs': [
+ '<(DEPTH)',
+ ],
+ 'mac_bundle_resources': [
+ ],
+ 'dependencies': [
+ 'remoting_client_ios_static',
+ ],
+ }, # end of target 'remoting_client_ios_demo'
+
+ {
+ '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': {
« no previous file with comments | « remoting/client/opengl_wrapper.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698