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

Side by Side Diff: webrtc/webrtc_examples.gyp

Issue 1692243003: Move RTCFileLogger to webrtc/base/objc. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix path Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « webrtc/base/objc/RTCFileLogger.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The WebRTC Project Authors. All rights reserved. 1 # Copyright (c) 2012 The WebRTC Project Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 { 8 {
9 'includes': [ 9 'includes': [
10 '../talk/build/common.gypi', 10 '../talk/build/common.gypi',
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 '-framework QuartzCore', 192 '-framework QuartzCore',
193 ], 193 ],
194 }, 194 },
195 }, 195 },
196 }, 196 },
197 { 197 {
198 'target_name': 'apprtc_signaling', 198 'target_name': 'apprtc_signaling',
199 'type': 'static_library', 199 'type': 'static_library',
200 'dependencies': [ 200 'dependencies': [
201 'apprtc_common', 201 'apprtc_common',
202 'base/base.gyp:rtc_base_objc',
202 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj c', 203 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj c',
203 'socketrocket', 204 'socketrocket',
204 ], 205 ],
205 'sources': [ 206 'sources': [
206 'examples/objc/AppRTCDemo/ARDAppClient.h', 207 'examples/objc/AppRTCDemo/ARDAppClient.h',
207 'examples/objc/AppRTCDemo/ARDAppClient.m', 208 'examples/objc/AppRTCDemo/ARDAppClient.m',
208 'examples/objc/AppRTCDemo/ARDAppClient+Internal.h', 209 'examples/objc/AppRTCDemo/ARDAppClient+Internal.h',
209 'examples/objc/AppRTCDemo/ARDAppEngineClient.h', 210 'examples/objc/AppRTCDemo/ARDAppEngineClient.h',
210 'examples/objc/AppRTCDemo/ARDAppEngineClient.m', 211 'examples/objc/AppRTCDemo/ARDAppEngineClient.m',
211 'examples/objc/AppRTCDemo/ARDBitrateTracker.h', 212 'examples/objc/AppRTCDemo/ARDBitrateTracker.h',
(...skipping 28 matching lines...) Expand all
240 ], 241 ],
241 'include_dirs': [ 242 'include_dirs': [
242 'examples/objc/AppRTCDemo', 243 'examples/objc/AppRTCDemo',
243 ], 244 ],
244 'direct_dependent_settings': { 245 'direct_dependent_settings': {
245 'include_dirs': [ 246 'include_dirs': [
246 'examples/objc/AppRTCDemo', 247 'examples/objc/AppRTCDemo',
247 ], 248 ],
248 }, 249 },
249 'export_dependent_settings': [ 250 'export_dependent_settings': [
251 'base/base.gyp:rtc_base_objc',
250 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj c', 252 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj c',
251 ], 253 ],
252 'conditions': [ 254 'conditions': [
253 ['OS=="ios"', { 255 ['OS=="ios"', {
254 'xcode_settings': { 256 'xcode_settings': {
255 'WARNING_CFLAGS': [ 257 'WARNING_CFLAGS': [
256 # Suppress compiler warnings about deprecated that triggered 258 # Suppress compiler warnings about deprecated that triggered
257 # when moving from ios_deployment_target 7.0 to 9.0. 259 # when moving from ios_deployment_target 7.0 to 9.0.
258 # See webrtc:5549 for more details. 260 # See webrtc:5549 for more details.
259 '-Wno-deprecated-declarations', 261 '-Wno-deprecated-declarations',
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 'apk_name': 'AppRTCDemoTest', 444 'apk_name': 'AppRTCDemoTest',
443 'java_in_dir': 'examples/androidtests', 445 'java_in_dir': 'examples/androidtests',
444 'is_test_apk': 1, 446 'is_test_apk': 1,
445 }, 447 },
446 'includes': [ '../build/java_apk.gypi' ], 448 'includes': [ '../build/java_apk.gypi' ],
447 }, 449 },
448 ], # targets 450 ], # targets
449 }], # OS=="android" 451 }], # OS=="android"
450 ], 452 ],
451 } 453 }
OLDNEW
« no previous file with comments | « webrtc/base/objc/RTCFileLogger.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698