GN: Add targets for AppRTCDemo on Mac+iOS

BUG=webrtc:6022
NOTRY=True

Review-Url: https://codereview.webrtc.org/2211413003
Cr-Commit-Position: refs/heads/master@{#13666}
This commit is contained in:
tkchin
2016-08-07 21:37:45 -07:00
committed by Commit bot
parent 968c9ccfe8
commit 2ddfdba989
7 changed files with 273 additions and 13 deletions

View File

@ -19,7 +19,6 @@ static CGFloat const kRoomTextButtonSize = 40;
static CGFloat const kRoomTextFieldHeight = 40;
static CGFloat const kRoomTextFieldMargin = 8;
static CGFloat const kCallControlMargin = 8;
static CGFloat const kAppLabelHeight = 20;
// Helper view that contains a text field and a clear button.
@interface ARDRoomTextField : UIView <UITextFieldDelegate>

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#import <Cocoa/Cocoa.h>
#import <AppKit/AppKit.h>
@interface APPRTCViewController : NSViewController

View File

@ -47,12 +47,14 @@ static NSUInteger const kLogViewHeight = 280;
NSTextField* _roomLabel;
NSTextField* _roomField;
NSTextView* _logView;
RTCNSGLVideoView* _localVideoView;
RTCNSGLVideoView* _remoteVideoView;
CGSize _localVideoSize;
CGSize _remoteVideoSize;
}
@synthesize delegate = _delegate;
@synthesize localVideoView = _localVideoView;
@synthesize remoteVideoView = _remoteVideoView;
+ (BOOL)requiresConstraintBasedLayout {
return YES;
}

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#import <Cocoa/Cocoa.h>
#import <AppKit/AppKit.h>
#import "APPRTCAppDelegate.h"