OLD | NEW |
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', |
18 '../talk/libjingle.gyp:libjingle_p2p', | 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', |
29 '../talk/libjingle.gyp:libjingle_p2p', | 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', |
40 '../talk/libjingle.gyp:libjingle_p2p', | 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', |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 'apk_name': 'AppRTCDemoTest', | 410 'apk_name': 'AppRTCDemoTest', |
411 'java_in_dir': 'examples/androidtests', | 411 'java_in_dir': 'examples/androidtests', |
412 'is_test_apk': 1, | 412 'is_test_apk': 1, |
413 }, | 413 }, |
414 'includes': [ '../build/java_apk.gypi' ], | 414 'includes': [ '../build/java_apk.gypi' ], |
415 }, | 415 }, |
416 ], # targets | 416 ], # targets |
417 }], # OS=="android" | 417 }], # OS=="android" |
418 ], | 418 ], |
419 } | 419 } |
OLD | NEW |