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

Unified Diff: talk/libjingle_examples.gyp

Issue 1217473011: AppRTCDemo file logging. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Rebase Created 5 years, 5 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: talk/libjingle_examples.gyp
diff --git a/talk/libjingle_examples.gyp b/talk/libjingle_examples.gyp
index 5cd31b6d108642458b6fe24e0520634b56976e7d..3401411314108600a57ee0866d79e13861438796 100755
--- a/talk/libjingle_examples.gyp
+++ b/talk/libjingle_examples.gyp
@@ -152,9 +152,36 @@
['OS=="ios" or (OS=="mac" and target_arch!="ia32" and mac_sdk>="10.8")', {
'targets': [
- { 'target_name': 'apprtc_signaling',
+ {
+ 'target_name': 'apprtc_common',
+ 'type': 'static_library',
+ 'sources': [
+ 'examples/objc/AppRTCDemo/common/ARDLogging.h',
+ 'examples/objc/AppRTCDemo/common/ARDLogging.mm',
+ 'examples/objc/AppRTCDemo/common/ARDUtilities.h',
+ 'examples/objc/AppRTCDemo/common/ARDUtilities.m',
+ ],
+ 'include_dirs': [
+ 'examples/objc/AppRTCDemo/common',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ 'examples/objc/AppRTCDemo/common',
+ ],
+ },
+ 'conditions': [
+ ['OS=="mac"', {
+ 'xcode_settings': {
+ 'MACOSX_DEPLOYMENT_TARGET' : '10.8',
+ },
+ }],
+ ],
+ },
+ {
+ 'target_name': 'apprtc_signaling',
'type': 'static_library',
'dependencies': [
+ 'apprtc_common',
'libjingle.gyp:libjingle_peerconnection_objc',
'socketrocket',
],
@@ -179,8 +206,6 @@
'examples/objc/AppRTCDemo/ARDSignalingMessage.h',
'examples/objc/AppRTCDemo/ARDSignalingMessage.m',
'examples/objc/AppRTCDemo/ARDTURNClient.h',
- 'examples/objc/AppRTCDemo/ARDUtilities.h',
- 'examples/objc/AppRTCDemo/ARDUtilities.m',
'examples/objc/AppRTCDemo/ARDWebSocketChannel.h',
'examples/objc/AppRTCDemo/ARDWebSocketChannel.m',
'examples/objc/AppRTCDemo/RTCICECandidate+JSON.h',
@@ -217,6 +242,7 @@
'product_name': 'AppRTCDemo',
'mac_bundle': 1,
'dependencies': [
+ 'apprtc_common',
'apprtc_signaling',
],
'conditions': [

Powered by Google App Engine
This is Rietveld 408576698