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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 ], # targets | 143 ], # targets |
144 }], # OS=="linux" or OS=="win" | 144 }], # OS=="linux" or OS=="win" |
145 | 145 |
146 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { | 146 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
147 'targets': [ | 147 'targets': [ |
148 { | 148 { |
149 'target_name': 'apprtc_common', | 149 'target_name': 'apprtc_common', |
150 'type': 'static_library', | 150 'type': 'static_library', |
151 'dependencies': [ | 151 'dependencies': [ |
152 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa
ult', | 152 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa
ult', |
153 '../talk/libjingle.gyp:libjingle_peerconnection_objc', | 153 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj
c', |
154 ], | 154 ], |
155 'sources': [ | 155 'sources': [ |
156 'examples/objc/AppRTCDemo/common/ARDUtilities.h', | 156 'examples/objc/AppRTCDemo/common/ARDUtilities.h', |
157 'examples/objc/AppRTCDemo/common/ARDUtilities.m', | 157 'examples/objc/AppRTCDemo/common/ARDUtilities.m', |
158 ], | 158 ], |
159 'include_dirs': [ | 159 'include_dirs': [ |
160 'examples/objc/AppRTCDemo/common', | 160 'examples/objc/AppRTCDemo/common', |
161 ], | 161 ], |
162 'direct_dependent_settings': { | 162 'direct_dependent_settings': { |
163 'include_dirs': [ | 163 'include_dirs': [ |
(...skipping 13 matching lines...) Expand all Loading... |
177 '-framework QuartzCore', | 177 '-framework QuartzCore', |
178 ], | 178 ], |
179 }, | 179 }, |
180 }, | 180 }, |
181 }, | 181 }, |
182 { | 182 { |
183 'target_name': 'apprtc_signaling', | 183 'target_name': 'apprtc_signaling', |
184 'type': 'static_library', | 184 'type': 'static_library', |
185 'dependencies': [ | 185 'dependencies': [ |
186 'apprtc_common', | 186 'apprtc_common', |
187 '../talk/libjingle.gyp:libjingle_peerconnection_objc', | 187 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj
c', |
188 'socketrocket', | 188 'socketrocket', |
189 ], | 189 ], |
190 'sources': [ | 190 'sources': [ |
191 'examples/objc/AppRTCDemo/ARDAppClient.h', | 191 'examples/objc/AppRTCDemo/ARDAppClient.h', |
192 'examples/objc/AppRTCDemo/ARDAppClient.m', | 192 'examples/objc/AppRTCDemo/ARDAppClient.m', |
193 'examples/objc/AppRTCDemo/ARDAppClient+Internal.h', | 193 'examples/objc/AppRTCDemo/ARDAppClient+Internal.h', |
194 'examples/objc/AppRTCDemo/ARDAppEngineClient.h', | 194 'examples/objc/AppRTCDemo/ARDAppEngineClient.h', |
195 'examples/objc/AppRTCDemo/ARDAppEngineClient.m', | 195 'examples/objc/AppRTCDemo/ARDAppEngineClient.m', |
196 'examples/objc/AppRTCDemo/ARDBitrateTracker.h', | 196 'examples/objc/AppRTCDemo/ARDBitrateTracker.h', |
197 'examples/objc/AppRTCDemo/ARDBitrateTracker.m', | 197 'examples/objc/AppRTCDemo/ARDBitrateTracker.m', |
(...skipping 27 matching lines...) Expand all Loading... |
225 ], | 225 ], |
226 'include_dirs': [ | 226 'include_dirs': [ |
227 'examples/objc/AppRTCDemo', | 227 'examples/objc/AppRTCDemo', |
228 ], | 228 ], |
229 'direct_dependent_settings': { | 229 'direct_dependent_settings': { |
230 'include_dirs': [ | 230 'include_dirs': [ |
231 'examples/objc/AppRTCDemo', | 231 'examples/objc/AppRTCDemo', |
232 ], | 232 ], |
233 }, | 233 }, |
234 'export_dependent_settings': [ | 234 'export_dependent_settings': [ |
235 '../talk/libjingle.gyp:libjingle_peerconnection_objc', | 235 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj
c', |
236 ], | 236 ], |
237 'conditions': [ | 237 'conditions': [ |
238 ['OS=="mac"', { | 238 ['OS=="mac"', { |
239 'xcode_settings': { | 239 'xcode_settings': { |
240 'MACOSX_DEPLOYMENT_TARGET' : '10.8', | 240 'MACOSX_DEPLOYMENT_TARGET' : '10.8', |
241 }, | 241 }, |
242 }], | 242 }], |
243 ], | 243 ], |
244 }, | 244 }, |
245 { | 245 { |
(...skipping 164 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 |