Index: test/ios/watch/watch.gyp |
diff --git a/test/ios/watch/watch.gyp b/test/ios/watch/watch.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..872f182a76ed3b370b1322b602948364550667c2 |
--- /dev/null |
+++ b/test/ios/watch/watch.gyp |
@@ -0,0 +1,104 @@ |
+# Copyright (c) 2014 Google Inc. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+{ |
+ 'make_global_settings': [ |
+ ['CC', '/usr/bin/clang'], |
+ ['CXX', '/usr/bin/clang++'], |
+ ], |
+ 'target_defaults': { |
+ 'xcode_settings': { |
+ 'OTHER_CFLAGS': [ |
+ '-fobjc-abi-version=2', |
+ ], |
+ 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', |
+ 'SDKROOT': 'iphoneos', |
+ 'IPHONEOS_DEPLOYMENT_TARGET': '8.2', |
+ 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer', |
+ } |
+ }, |
+ 'targets': [ |
+ { |
+ 'target_name': 'WatchContainer', |
+ 'product_name': 'WatchContainer', |
+ 'type': 'executable', |
+ 'mac_bundle': 1, |
+ 'mac_bundle_resources': [ |
+ 'WatchContainer/Base.lproj/Main.storyboard', |
+ ], |
+ 'sources': [ |
+ 'WatchContainer/AppDelegate.h', |
+ 'WatchContainer/AppDelegate.m', |
+ 'WatchContainer/ViewController.h', |
+ 'WatchContainer/ViewController.m', |
+ 'WatchContainer/main.m', |
+ ], |
+ 'copies': [ |
+ { |
+ 'destination': '<(PRODUCT_DIR)/WatchContainer.app/PlugIns', |
+ 'files': [ |
+ '<(PRODUCT_DIR)/WatchKitExtension.appex', |
+ ]}], |
+ 'dependencies': [ |
+ 'WatchKitExtension' |
+ ], |
+ 'link_settings': { |
+ 'libraries': [ |
+ '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
+ '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
+ ], |
+ }, |
+ 'xcode_settings': { |
+ 'INFOPLIST_FILE': 'WatchContainer/Info.plist', |
+ }, |
+ }, |
+ { |
+ 'target_name': 'WatchKitExtension', |
+ 'product_name': 'WatchKitExtension', |
+ 'type': 'executable', |
+ 'mac_bundle': 1, |
+ 'ios_watchkit_extension': 1, |
+ 'sources': [ |
+ 'WatchKitExtension/InterfaceController.h', |
+ 'WatchKitExtension/InterfaceController.m', |
+ ], |
+ 'mac_bundle_resources': [ |
+ 'WatchKitExtension/Images.xcassets', |
+ '<(PRODUCT_DIR)/WatchApp.app', |
justincohen
2014/12/03 00:31:04
I think ninja is failing because there's no explic
dmpatierno
2014/12/03 23:09:48
I can get the test to pass with ninja now, but I'v
justincohen
2014/12/04 17:21:36
It works fine for me if I run from within Xcode, a
|
+ ], |
+ 'dependencies': [ |
+ 'WatchApp' |
+ ], |
+ 'link_settings': { |
+ 'libraries': [ |
justincohen
2014/12/03 00:31:04
Doesn't this need Foundation.framework too?
dmpatierno
2014/12/03 23:09:48
The simple reference app I made does not include t
|
+ '$(SDKROOT)/System/Library/Frameworks/WatchKit.framework', |
justincohen
2014/12/03 00:31:04
Any idea why this shows up as a red (file not foun
dmpatierno
2014/12/03 23:09:48
I noticed this too. Everything compiles, runs, and
|
+ ], |
+ }, |
+ 'xcode_settings': { |
+ 'INFOPLIST_FILE': 'WatchKitExtension/Info.plist', |
+ 'SKIP_INSTALL': 'YES', |
+ 'COPY_PHASE_STRIP': 'NO', |
+ }, |
+ }, |
+ { |
+ 'target_name': 'WatchApp', |
+ 'product_name': 'WatchApp', |
+ 'type': 'executable', |
+ 'mac_bundle': 1, |
+ 'ios_watch_app': 1, |
+ 'mac_bundle_resources': [ |
+ 'WatchApp/Images.xcassets', |
+ 'WatchApp/Interface.storyboard', |
+ ], |
+ 'xcode_settings': { |
+ 'INFOPLIST_FILE': 'WatchApp/Info.plist', |
+ 'SKIP_INSTALL': 'YES', |
+ 'COPY_PHASE_STRIP': 'NO', |
+ 'TARGETED_DEVICE_FAMILY': '4', |
+ 'TARGETED_DEVICE_FAMILY[sdk=iphonesimulator*]': '1,4', |
+ }, |
+ }, |
+ ], |
+} |
+ |