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

Unified Diff: webrtc/build/ios/webrtc/PodTest/PodTest/main.m

Issue 1829783003: Build dynamic framework with podspec for Objective-C API. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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
Index: webrtc/build/ios/webrtc/PodTest/PodTest/main.m
diff --git a/webrtc/build/ios/webrtc/PodTest/PodTest/main.m b/webrtc/build/ios/webrtc/PodTest/PodTest/main.m
new file mode 100644
index 0000000000000000000000000000000000000000..e1850cd08a2352a37095e7a3a981525f5d7203ba
--- /dev/null
+++ b/webrtc/build/ios/webrtc/PodTest/PodTest/main.m
@@ -0,0 +1,15 @@
+//
+// main.m
+// PodTest
+//
+// Copyright © 2016 Google Inc. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#import "AppDelegate.h"
+
+int main(int argc, char * argv[]) {
+ @autoreleasepool {
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698