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

Side by Side Diff: webrtc/webrtc_examples.gyp

Issue 1710053004: Add looping sound button to AppRTCDemo (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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/examples/objc/AppRTCDemo/ios/ARDMainView.m ('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',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'relayserver', 14 'target_name': 'relayserver',
15 'type': 'executable', 15 'type': 'executable',
16 'dependencies': [ 16 'dependencies': [
17 '<(webrtc_root)/base/base.gyp:rtc_base', 17 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
18 '<(webrtc_root)/pc/pc.gyp:rtc_pc', 18 '<(webrtc_root)/pc/pc.gyp:rtc_pc',
19 ], 19 ],
20 'sources': [ 20 'sources': [
21 'examples/relayserver/relayserver_main.cc', 21 'examples/relayserver/relayserver_main.cc',
22 ], 22 ],
23 }, # target relayserver 23 }, # target relayserver
24 { 24 {
25 'target_name': 'stunserver', 25 'target_name': 'stunserver',
26 'type': 'executable', 26 'type': 'executable',
27 'dependencies': [ 27 'dependencies': [
28 '<(webrtc_root)/base/base.gyp:rtc_base', 28 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
29 '<(webrtc_root)/pc/pc.gyp:rtc_pc', 29 '<(webrtc_root)/pc/pc.gyp:rtc_pc',
30 ], 30 ],
31 'sources': [ 31 'sources': [
32 'examples/stunserver/stunserver_main.cc', 32 'examples/stunserver/stunserver_main.cc',
33 ], 33 ],
34 }, # target stunserver 34 }, # target stunserver
35 { 35 {
36 'target_name': 'turnserver', 36 'target_name': 'turnserver',
37 'type': 'executable', 37 'type': 'executable',
38 'dependencies': [ 38 'dependencies': [
39 '<(webrtc_root)/base/base.gyp:rtc_base', 39 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
40 '<(webrtc_root)/pc/pc.gyp:rtc_pc', 40 '<(webrtc_root)/pc/pc.gyp:rtc_pc',
41 ], 41 ],
42 'sources': [ 42 'sources': [
43 'examples/turnserver/turnserver_main.cc', 43 'examples/turnserver/turnserver_main.cc',
44 ], 44 ],
45 }, # target turnserver 45 }, # target turnserver
46 { 46 {
47 'target_name': 'peerconnection_server', 47 'target_name': 'peerconnection_server',
48 'type': 'executable', 48 'type': 'executable',
49 'sources': [ 49 'sources': [
50 'examples/peerconnection/server/data_socket.cc', 50 'examples/peerconnection/server/data_socket.cc',
51 'examples/peerconnection/server/data_socket.h', 51 'examples/peerconnection/server/data_socket.h',
52 'examples/peerconnection/server/main.cc', 52 'examples/peerconnection/server/main.cc',
53 'examples/peerconnection/server/peer_channel.cc', 53 'examples/peerconnection/server/peer_channel.cc',
54 'examples/peerconnection/server/peer_channel.h', 54 'examples/peerconnection/server/peer_channel.h',
55 'examples/peerconnection/server/utils.cc', 55 'examples/peerconnection/server/utils.cc',
56 'examples/peerconnection/server/utils.h', 56 'examples/peerconnection/server/utils.h',
57 ], 57 ],
58 'dependencies': [ 58 'dependencies': [
59 '<(webrtc_root)/base/base.gyp:rtc_base', 59 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
60 '<(webrtc_root)/common.gyp:webrtc_common', 60 '<(webrtc_root)/common.gyp:webrtc_common',
61 ], 61 ],
62 # TODO(ronghuawu): crbug.com/167187 fix size_t to int truncations. 62 # TODO(ronghuawu): crbug.com/167187 fix size_t to int truncations.
63 'msvs_disabled_warnings': [ 4309, ], 63 'msvs_disabled_warnings': [ 4309, ],
64 }, # target peerconnection_server 64 }, # target peerconnection_server
65 ], 65 ],
66 'conditions': [ 66 'conditions': [
67 ['OS=="linux" or OS=="win"', { 67 ['OS=="linux" or OS=="win"', {
68 'targets': [ 68 'targets': [
69 { 69 {
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 'examples/objc/AppRTCDemo/ios/resources/iPhone5@2x.png', 282 'examples/objc/AppRTCDemo/ios/resources/iPhone5@2x.png',
283 'examples/objc/AppRTCDemo/ios/resources/iPhone6@2x.png', 283 'examples/objc/AppRTCDemo/ios/resources/iPhone6@2x.png',
284 'examples/objc/AppRTCDemo/ios/resources/iPhone6p@3x.png', 284 'examples/objc/AppRTCDemo/ios/resources/iPhone6p@3x.png',
285 'examples/objc/AppRTCDemo/ios/resources/Roboto-Regular.ttf', 285 'examples/objc/AppRTCDemo/ios/resources/Roboto-Regular.ttf',
286 'examples/objc/AppRTCDemo/ios/resources/ic_call_end_black_24dp.p ng', 286 'examples/objc/AppRTCDemo/ios/resources/ic_call_end_black_24dp.p ng',
287 'examples/objc/AppRTCDemo/ios/resources/ic_call_end_black_24dp@2 x.png', 287 'examples/objc/AppRTCDemo/ios/resources/ic_call_end_black_24dp@2 x.png',
288 'examples/objc/AppRTCDemo/ios/resources/ic_clear_black_24dp.png' , 288 'examples/objc/AppRTCDemo/ios/resources/ic_clear_black_24dp.png' ,
289 'examples/objc/AppRTCDemo/ios/resources/ic_clear_black_24dp@2x.p ng', 289 'examples/objc/AppRTCDemo/ios/resources/ic_clear_black_24dp@2x.p ng',
290 'examples/objc/AppRTCDemo/ios/resources/ic_switch_video_black_24 dp.png', 290 'examples/objc/AppRTCDemo/ios/resources/ic_switch_video_black_24 dp.png',
291 'examples/objc/AppRTCDemo/ios/resources/ic_switch_video_black_24 dp@2x.png', 291 'examples/objc/AppRTCDemo/ios/resources/ic_switch_video_black_24 dp@2x.png',
292 'examples/objc/AppRTCDemo/ios/resources/outgoing_ring.mp3',
Chuck 2016/02/19 14:41:20 I don't see this file in the CL.
292 'examples/objc/Icon.png', 293 'examples/objc/Icon.png',
293 ], 294 ],
294 'sources': [ 295 'sources': [
295 'examples/objc/AppRTCDemo/ios/ARDAppDelegate.h', 296 'examples/objc/AppRTCDemo/ios/ARDAppDelegate.h',
296 'examples/objc/AppRTCDemo/ios/ARDAppDelegate.m', 297 'examples/objc/AppRTCDemo/ios/ARDAppDelegate.m',
297 'examples/objc/AppRTCDemo/ios/ARDMainView.h', 298 'examples/objc/AppRTCDemo/ios/ARDMainView.h',
298 'examples/objc/AppRTCDemo/ios/ARDMainView.m', 299 'examples/objc/AppRTCDemo/ios/ARDMainView.m',
299 'examples/objc/AppRTCDemo/ios/ARDMainViewController.h', 300 'examples/objc/AppRTCDemo/ios/ARDMainViewController.h',
300 'examples/objc/AppRTCDemo/ios/ARDMainViewController.m', 301 'examples/objc/AppRTCDemo/ios/ARDMainViewController.m',
301 'examples/objc/AppRTCDemo/ios/ARDStatsView.h', 302 'examples/objc/AppRTCDemo/ios/ARDStatsView.h',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 'apk_name': 'AppRTCDemoTest', 442 'apk_name': 'AppRTCDemoTest',
442 'java_in_dir': 'examples/androidtests', 443 'java_in_dir': 'examples/androidtests',
443 'is_test_apk': 1, 444 'is_test_apk': 1,
444 }, 445 },
445 'includes': [ '../build/java_apk.gypi' ], 446 'includes': [ '../build/java_apk.gypi' ],
446 }, 447 },
447 ], # targets 448 ], # targets
448 }], # OS=="android" 449 }], # OS=="android"
449 ], 450 ],
450 } 451 }
OLDNEW
« no previous file with comments | « webrtc/examples/objc/AppRTCDemo/ios/ARDMainView.m ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698