From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../gyp/test/ios/framework/iOSFramework/Info.plist | 26 ++++++++++++++++++++++ .../gyp/test/ios/framework/iOSFramework/Thing.h | 10 +++++++++ .../gyp/test/ios/framework/iOSFramework/Thing.m | 22 ++++++++++++++++++ .../test/ios/framework/iOSFramework/iOSFramework.h | 9 ++++++++ 4 files changed, 67 insertions(+) create mode 100644 media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Info.plist create mode 100644 media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Thing.h create mode 100644 media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Thing.m create mode 100644 media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/iOSFramework.h (limited to 'media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework') diff --git a/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Info.plist b/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Info.plist new file mode 100644 index 000000000..d3de8eefb --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Thing.h b/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Thing.h new file mode 100644 index 000000000..a34e908fc --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Thing.h @@ -0,0 +1,10 @@ +#import +#import + +@interface Thing : NSObject + ++ (instancetype)thing; + +- (void)sayHello; + +@end diff --git a/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Thing.m b/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Thing.m new file mode 100644 index 000000000..5b2b54925 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/Thing.m @@ -0,0 +1,22 @@ +#import "Thing.h" + +@interface Thing () + +@end + +@implementation Thing + ++ (instancetype)thing { + static Thing* thing = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + thing = [[[self class] alloc] init]; + }); + return thing; +} + +- (void)sayHello { + NSLog(@"Hello World"); +} + +@end diff --git a/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/iOSFramework.h b/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/iOSFramework.h new file mode 100644 index 000000000..e86b524d1 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/ios/framework/iOSFramework/iOSFramework.h @@ -0,0 +1,9 @@ +#import + +//! Project version number for iOSFramework. +FOUNDATION_EXPORT double iOSFrameworkVersionNumber; + +//! Project version string for iOSFramework. +FOUNDATION_EXPORT const unsigned char iOSFrameworkVersionString[]; + +#import -- cgit v1.2.3