blob: cea496943757ab923761ad35f45dd20be2dd6214 [file] [log] [blame]
Peter Boströmfa566d62015-11-11 12:11:15 +00001# Copyright (c) 2012 The WebRTC Project Authors. All rights reserved.
henrike@webrtc.org451745e2013-12-12 16:55:37 +00002#
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
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8{
henrike@webrtc.org451745e2013-12-12 16:55:37 +00009 'conditions': [
Peter Boströmfa566d62015-11-11 12:11:15 +000010 ['OS=="linux" or OS=="win"', {
11 'targets': [
12 {
tkchinbad7b092016-03-11 20:45:16 -080013 'target_name': 'relayserver',
14 'type': 'executable',
15 'dependencies': [
16 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
17 '<(webrtc_root)/pc/pc.gyp:rtc_pc',
18 ],
19 'sources': [
20 'examples/relayserver/relayserver_main.cc',
21 ],
22 }, # target relayserver
23 {
24 'target_name': 'stunserver',
25 'type': 'executable',
26 'dependencies': [
27 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
28 '<(webrtc_root)/pc/pc.gyp:rtc_pc',
29 ],
30 'sources': [
31 'examples/stunserver/stunserver_main.cc',
32 ],
33 }, # target stunserver
34 {
35 'target_name': 'turnserver',
36 'type': 'executable',
37 'dependencies': [
38 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
39 '<(webrtc_root)/pc/pc.gyp:rtc_pc',
40 ],
41 'sources': [
42 'examples/turnserver/turnserver_main.cc',
43 ],
44 }, # target turnserver
45 {
46 'target_name': 'peerconnection_server',
47 'type': 'executable',
48 'sources': [
49 'examples/peerconnection/server/data_socket.cc',
50 'examples/peerconnection/server/data_socket.h',
51 'examples/peerconnection/server/main.cc',
52 'examples/peerconnection/server/peer_channel.cc',
53 'examples/peerconnection/server/peer_channel.h',
54 'examples/peerconnection/server/utils.cc',
55 'examples/peerconnection/server/utils.h',
56 ],
57 'dependencies': [
58 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
59 '<(webrtc_root)/common.gyp:webrtc_common',
60 '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
61 ],
62 # TODO(ronghuawu): crbug.com/167187 fix size_t to int truncations.
63 'msvs_disabled_warnings': [ 4309, ],
64 }, # target peerconnection_server
65 {
Peter Boströmfa566d62015-11-11 12:11:15 +000066 'target_name': 'peerconnection_client',
67 'type': 'executable',
68 'sources': [
69 'examples/peerconnection/client/conductor.cc',
70 'examples/peerconnection/client/conductor.h',
71 'examples/peerconnection/client/defaults.cc',
72 'examples/peerconnection/client/defaults.h',
73 'examples/peerconnection/client/peer_connection_client.cc',
74 'examples/peerconnection/client/peer_connection_client.h',
75 ],
76 'dependencies': [
Henrik Kjellander15583c12016-02-10 10:53:12 +010077 'api/api.gyp:libjingle_peerconnection',
Peter Boströmfa566d62015-11-11 12:11:15 +000078 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_default',
kjellander98bba392016-06-01 05:28:54 -070079 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default',
Peter Boströmfa566d62015-11-11 12:11:15 +000080 ],
81 'conditions': [
82 ['build_json==1', {
83 'dependencies': [
84 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp',
85 ],
86 }],
87 # TODO(ronghuawu): Move these files to a win/ directory then they
88 # can be excluded automatically.
89 ['OS=="win"', {
90 'sources': [
91 'examples/peerconnection/client/flagdefs.h',
92 'examples/peerconnection/client/main.cc',
93 'examples/peerconnection/client/main_wnd.cc',
94 'examples/peerconnection/client/main_wnd.h',
95 ],
96 'msvs_settings': {
97 'VCLinkerTool': {
98 'SubSystem': '2', # Windows
99 },
100 },
101 }], # OS=="win"
kjellander7cae30c2015-12-16 14:05:29 -0800102 ['OS=="win" and clang==1', {
103 'msvs_settings': {
104 'VCCLCompilerTool': {
105 'AdditionalOptions': [
106 # Disable warnings failing when compiling with Clang on Windows.
107 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
108 '-Wno-reorder',
109 '-Wno-unused-function',
110 ],
111 },
112 },
113 }], # OS=="win" and clang==1
Peter Boströmfa566d62015-11-11 12:11:15 +0000114 ['OS=="linux"', {
115 'sources': [
116 'examples/peerconnection/client/linux/main.cc',
117 'examples/peerconnection/client/linux/main_wnd.cc',
118 'examples/peerconnection/client/linux/main_wnd.h',
119 ],
120 'cflags': [
121 '<!@(pkg-config --cflags glib-2.0 gobject-2.0 gtk+-2.0)',
122 ],
123 'link_settings': {
124 'ldflags': [
125 '<!@(pkg-config --libs-only-L --libs-only-other glib-2.0'
126 ' gobject-2.0 gthread-2.0 gtk+-2.0)',
127 ],
128 'libraries': [
129 '<!@(pkg-config --libs-only-l glib-2.0 gobject-2.0'
130 ' gthread-2.0 gtk+-2.0)',
131 '-lX11',
132 '-lXcomposite',
133 '-lXext',
134 '-lXrender',
135 ],
136 },
137 }], # OS=="linux"
Henrik Kjellander235aaa72016-02-18 21:52:21 +0100138 ['OS=="linux" and target_arch=="ia32"', {
139 'cflags': [
140 '-Wno-sentinel',
141 ],
142 }], # OS=="linux" and target_arch=="ia32"
Peter Boströmfa566d62015-11-11 12:11:15 +0000143 ], # conditions
144 }, # target peerconnection_client
145 ], # targets
146 }], # OS=="linux" or OS=="win"
147
tkchin76356842015-12-02 16:42:18 -0800148 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
Peter Boströmfa566d62015-11-11 12:11:15 +0000149 'targets': [
150 {
151 'target_name': 'apprtc_common',
152 'type': 'static_library',
153 'dependencies': [
tkchin9eeb6242016-04-27 01:54:20 -0700154 '<(webrtc_root)/sdk/sdk.gyp:rtc_sdk_common_objc',
Peter Boströmfa566d62015-11-11 12:11:15 +0000155 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_default',
kjellander98bba392016-06-01 05:28:54 -0700156 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default',
Peter Boströmfa566d62015-11-11 12:11:15 +0000157 ],
158 'sources': [
magjed87ef6f72016-09-22 10:15:15 -0700159 'examples/objc/AppRTCDemo/common/ARDUtilities.h',
160 'examples/objc/AppRTCDemo/common/ARDUtilities.m',
Peter Boströmfa566d62015-11-11 12:11:15 +0000161 ],
162 'include_dirs': [
magjed87ef6f72016-09-22 10:15:15 -0700163 'examples/objc/AppRTCDemo/common',
Peter Boströmfa566d62015-11-11 12:11:15 +0000164 ],
165 'direct_dependent_settings': {
166 'include_dirs': [
magjed87ef6f72016-09-22 10:15:15 -0700167 'examples/objc/AppRTCDemo/common',
Peter Boströmfa566d62015-11-11 12:11:15 +0000168 ],
169 },
170 'conditions': [
kjellander@webrtc.org66a99282016-02-18 20:30:14 +0100171 ['OS=="ios"', {
172 'xcode_settings': {
173 'WARNING_CFLAGS': [
174 # Suppress compiler warnings about deprecated that triggered
175 # when moving from ios_deployment_target 7.0 to 9.0.
176 # See webrtc:5549 for more details.
177 '-Wno-deprecated-declarations',
178 ],
179 },
180 }],
Peter Boströmfa566d62015-11-11 12:11:15 +0000181 ['OS=="mac"', {
182 'xcode_settings': {
183 'MACOSX_DEPLOYMENT_TARGET' : '10.8',
184 },
185 }],
186 ],
hjon79858f82016-03-13 22:08:26 -0700187 'xcode_settings': {
188 'CLANG_ENABLE_OBJC_ARC': 'YES',
189 },
Peter Boströmfa566d62015-11-11 12:11:15 +0000190 'link_settings': {
191 'xcode_settings': {
192 'OTHER_LDFLAGS': [
193 '-framework QuartzCore',
194 ],
195 },
196 },
197 },
198 {
199 'target_name': 'apprtc_signaling',
200 'type': 'static_library',
201 'dependencies': [
tkchin9eeb6242016-04-27 01:54:20 -0700202 '<(webrtc_root)/sdk/sdk.gyp:rtc_sdk_peerconnection_objc',
Peter Boströmfa566d62015-11-11 12:11:15 +0000203 'apprtc_common',
Peter Boströmfa566d62015-11-11 12:11:15 +0000204 'socketrocket',
205 ],
206 'sources': [
magjed87ef6f72016-09-22 10:15:15 -0700207 'examples/objc/AppRTCDemo/ARDAppClient.h',
208 'examples/objc/AppRTCDemo/ARDAppClient.m',
209 'examples/objc/AppRTCDemo/ARDAppClient+Internal.h',
210 'examples/objc/AppRTCDemo/ARDAppEngineClient.h',
211 'examples/objc/AppRTCDemo/ARDAppEngineClient.m',
212 'examples/objc/AppRTCDemo/ARDBitrateTracker.h',
213 'examples/objc/AppRTCDemo/ARDBitrateTracker.m',
214 'examples/objc/AppRTCDemo/ARDCEODTURNClient.h',
215 'examples/objc/AppRTCDemo/ARDCEODTURNClient.m',
216 'examples/objc/AppRTCDemo/ARDJoinResponse.h',
217 'examples/objc/AppRTCDemo/ARDJoinResponse.m',
218 'examples/objc/AppRTCDemo/ARDJoinResponse+Internal.h',
219 'examples/objc/AppRTCDemo/ARDMessageResponse.h',
220 'examples/objc/AppRTCDemo/ARDMessageResponse.m',
221 'examples/objc/AppRTCDemo/ARDMessageResponse+Internal.h',
222 'examples/objc/AppRTCDemo/ARDRoomServerClient.h',
223 'examples/objc/AppRTCDemo/ARDSDPUtils.h',
224 'examples/objc/AppRTCDemo/ARDSDPUtils.m',
225 'examples/objc/AppRTCDemo/ARDSignalingChannel.h',
226 'examples/objc/AppRTCDemo/ARDSignalingMessage.h',
227 'examples/objc/AppRTCDemo/ARDSignalingMessage.m',
228 'examples/objc/AppRTCDemo/ARDStatsBuilder.h',
229 'examples/objc/AppRTCDemo/ARDStatsBuilder.m',
230 'examples/objc/AppRTCDemo/ARDTURNClient.h',
231 'examples/objc/AppRTCDemo/ARDWebSocketChannel.h',
232 'examples/objc/AppRTCDemo/ARDWebSocketChannel.m',
233 'examples/objc/AppRTCDemo/RTCIceCandidate+JSON.h',
234 'examples/objc/AppRTCDemo/RTCIceCandidate+JSON.m',
235 'examples/objc/AppRTCDemo/RTCIceServer+JSON.h',
236 'examples/objc/AppRTCDemo/RTCIceServer+JSON.m',
237 'examples/objc/AppRTCDemo/RTCMediaConstraints+JSON.h',
238 'examples/objc/AppRTCDemo/RTCMediaConstraints+JSON.m',
239 'examples/objc/AppRTCDemo/RTCSessionDescription+JSON.h',
240 'examples/objc/AppRTCDemo/RTCSessionDescription+JSON.m',
Peter Boströmfa566d62015-11-11 12:11:15 +0000241 ],
242 'include_dirs': [
magjed87ef6f72016-09-22 10:15:15 -0700243 'examples/objc/AppRTCDemo',
Peter Boströmfa566d62015-11-11 12:11:15 +0000244 ],
245 'direct_dependent_settings': {
246 'include_dirs': [
magjed87ef6f72016-09-22 10:15:15 -0700247 'examples/objc/AppRTCDemo',
Peter Boströmfa566d62015-11-11 12:11:15 +0000248 ],
249 },
250 'export_dependent_settings': [
tkchin9eeb6242016-04-27 01:54:20 -0700251 '<(webrtc_root)/sdk/sdk.gyp:rtc_sdk_peerconnection_objc',
Peter Boströmfa566d62015-11-11 12:11:15 +0000252 ],
253 'conditions': [
kjellander@webrtc.org66a99282016-02-18 20:30:14 +0100254 ['OS=="ios"', {
255 'xcode_settings': {
256 'WARNING_CFLAGS': [
257 # Suppress compiler warnings about deprecated that triggered
258 # when moving from ios_deployment_target 7.0 to 9.0.
259 # See webrtc:5549 for more details.
260 '-Wno-deprecated-declarations',
261 ],
262 },
263 }],
Peter Boströmfa566d62015-11-11 12:11:15 +0000264 ['OS=="mac"', {
265 'xcode_settings': {
266 'MACOSX_DEPLOYMENT_TARGET' : '10.8',
267 },
268 }],
269 ],
hjon79858f82016-03-13 22:08:26 -0700270 'xcode_settings': {
271 'CLANG_ENABLE_OBJC_ARC': 'YES',
272 },
Peter Boströmfa566d62015-11-11 12:11:15 +0000273 },
274 {
magjed87ef6f72016-09-22 10:15:15 -0700275 'target_name': 'AppRTCDemo',
Peter Boströmfa566d62015-11-11 12:11:15 +0000276 'type': 'executable',
magjed87ef6f72016-09-22 10:15:15 -0700277 'product_name': 'AppRTCDemo',
Peter Boströmfa566d62015-11-11 12:11:15 +0000278 'mac_bundle': 1,
279 'dependencies': [
280 'apprtc_common',
281 'apprtc_signaling',
282 ],
283 'conditions': [
284 ['OS=="ios"', {
285 'mac_bundle_resources': [
magjed87ef6f72016-09-22 10:15:15 -0700286 'examples/objc/AppRTCDemo/ios/resources/Roboto-Regular.ttf',
287 'examples/objc/AppRTCDemo/ios/resources/iPhone5@2x.png',
288 'examples/objc/AppRTCDemo/ios/resources/iPhone6@2x.png',
289 'examples/objc/AppRTCDemo/ios/resources/iPhone6p@3x.png',
290 'examples/objc/AppRTCDemo/ios/resources/ic_call_end_black_24dp.png',
291 'examples/objc/AppRTCDemo/ios/resources/ic_call_end_black_24dp@2x.png',
292 'examples/objc/AppRTCDemo/ios/resources/ic_clear_black_24dp.png',
293 'examples/objc/AppRTCDemo/ios/resources/ic_clear_black_24dp@2x.png',
294 'examples/objc/AppRTCDemo/ios/resources/ic_surround_sound_black_24dp.png',
295 'examples/objc/AppRTCDemo/ios/resources/ic_surround_sound_black_24dp@2x.png',
296 'examples/objc/AppRTCDemo/ios/resources/ic_switch_video_black_24dp.png',
297 'examples/objc/AppRTCDemo/ios/resources/ic_switch_video_black_24dp@2x.png',
298 'examples/objc/AppRTCDemo/ios/resources/mozart.mp3',
Peter Boströmfa566d62015-11-11 12:11:15 +0000299 'examples/objc/Icon.png',
300 ],
301 'sources': [
magjed87ef6f72016-09-22 10:15:15 -0700302 'examples/objc/AppRTCDemo/ios/ARDAppDelegate.h',
303 'examples/objc/AppRTCDemo/ios/ARDAppDelegate.m',
304 'examples/objc/AppRTCDemo/ios/ARDMainView.h',
305 'examples/objc/AppRTCDemo/ios/ARDMainView.m',
306 'examples/objc/AppRTCDemo/ios/ARDMainViewController.h',
307 'examples/objc/AppRTCDemo/ios/ARDMainViewController.m',
308 'examples/objc/AppRTCDemo/ios/ARDStatsView.h',
309 'examples/objc/AppRTCDemo/ios/ARDStatsView.m',
310 'examples/objc/AppRTCDemo/ios/ARDVideoCallView.h',
311 'examples/objc/AppRTCDemo/ios/ARDVideoCallView.m',
312 'examples/objc/AppRTCDemo/ios/ARDVideoCallViewController.h',
313 'examples/objc/AppRTCDemo/ios/ARDVideoCallViewController.m',
314 'examples/objc/AppRTCDemo/ios/AppRTCDemo-Prefix.pch',
315 'examples/objc/AppRTCDemo/ios/UIImage+ARDUtilities.h',
316 'examples/objc/AppRTCDemo/ios/UIImage+ARDUtilities.m',
317 'examples/objc/AppRTCDemo/ios/main.m',
Peter Boströmfa566d62015-11-11 12:11:15 +0000318 ],
319 'xcode_settings': {
magjed87ef6f72016-09-22 10:15:15 -0700320 'INFOPLIST_FILE': 'examples/objc/AppRTCDemo/ios/Info.plist',
kjellander@webrtc.org66a99282016-02-18 20:30:14 +0100321 'WARNING_CFLAGS': [
322 # Suppress compiler warnings about deprecated that triggered
323 # when moving from ios_deployment_target 7.0 to 9.0.
324 # See webrtc:5549 for more details.
325 '-Wno-deprecated-declarations',
326 ],
Peter Boströmfa566d62015-11-11 12:11:15 +0000327 },
328 }],
329 ['OS=="mac"', {
330 'sources': [
magjed87ef6f72016-09-22 10:15:15 -0700331 'examples/objc/AppRTCDemo/mac/APPRTCAppDelegate.h',
332 'examples/objc/AppRTCDemo/mac/APPRTCAppDelegate.m',
333 'examples/objc/AppRTCDemo/mac/APPRTCViewController.h',
334 'examples/objc/AppRTCDemo/mac/APPRTCViewController.m',
335 'examples/objc/AppRTCDemo/mac/main.m',
Peter Boströmfa566d62015-11-11 12:11:15 +0000336 ],
337 'xcode_settings': {
338 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
magjed87ef6f72016-09-22 10:15:15 -0700339 'INFOPLIST_FILE': 'examples/objc/AppRTCDemo/mac/Info.plist',
Peter Boströmfa566d62015-11-11 12:11:15 +0000340 'MACOSX_DEPLOYMENT_TARGET' : '10.8',
341 'OTHER_LDFLAGS': [
342 '-framework AVFoundation',
343 ],
344 },
345 }],
346 ['target_arch=="ia32"', {
347 'dependencies' : [
348 '<(DEPTH)/testing/iossim/iossim.gyp:iossim#host',
349 ],
350 }],
351 ],
hjon79858f82016-03-13 22:08:26 -0700352 'xcode_settings': {
353 'CLANG_ENABLE_OBJC_ARC': 'YES',
354 },
magjed87ef6f72016-09-22 10:15:15 -0700355 }, # target AppRTCDemo
Peter Boströmfa566d62015-11-11 12:11:15 +0000356 {
357 # TODO(tkchin): move this into the real third party location and
358 # have it mirrored on chrome infra.
359 'target_name': 'socketrocket',
360 'type': 'static_library',
361 'sources': [
magjed87ef6f72016-09-22 10:15:15 -0700362 'examples/objc/AppRTCDemo/third_party/SocketRocket/SRWebSocket.h',
363 'examples/objc/AppRTCDemo/third_party/SocketRocket/SRWebSocket.m',
Peter Boströmfa566d62015-11-11 12:11:15 +0000364 ],
365 'conditions': [
366 ['OS=="mac"', {
367 'xcode_settings': {
368 # SocketRocket autosynthesizes some properties. Disable the
369 # warning so we can compile successfully.
370 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
371 'MACOSX_DEPLOYMENT_TARGET' : '10.8',
372 # SRWebSocket.m uses code with partial availability.
373 # https://code.google.com/p/webrtc/issues/detail?id=4695
henrika27d8b612016-09-21 04:13:00 -0700374 'WARNING_CFLAGS!': [
375 '-Wpartial-availability',
376 # Hide the warning for SecRandomCopyBytes(), till we update
377 # to upstream.
378 # https://bugs.chromium.org/p/webrtc/issues/detail?id=6396
379 '-Wno-unused-result'],
Peter Boströmfa566d62015-11-11 12:11:15 +0000380 },
381 }],
382 ],
383 'direct_dependent_settings': {
384 'include_dirs': [
magjed87ef6f72016-09-22 10:15:15 -0700385 'examples/objc/AppRTCDemo/third_party/SocketRocket',
Peter Boströmfa566d62015-11-11 12:11:15 +0000386 ],
387 },
388 'xcode_settings': {
389 'CLANG_ENABLE_OBJC_ARC': 'YES',
390 'WARNING_CFLAGS': [
391 '-Wno-deprecated-declarations',
tkchin76356842015-12-02 16:42:18 -0800392 '-Wno-nonnull',
Peter Boströmfa566d62015-11-11 12:11:15 +0000393 ],
394 },
395 'link_settings': {
396 'xcode_settings': {
397 'OTHER_LDFLAGS': [
398 '-framework CFNetwork',
399 '-licucore',
400 ],
401 },
402 }
403 }, # target socketrocket
404 ], # targets
tkchin76356842015-12-02 16:42:18 -0800405 }], # OS=="ios" or (OS=="mac" and target_arch!="ia32")
Peter Boströmfa566d62015-11-11 12:11:15 +0000406
henrike@webrtc.org451745e2013-12-12 16:55:37 +0000407 ['OS=="android"', {
408 'targets': [
409 {
magjed87ef6f72016-09-22 10:15:15 -0700410 'target_name': 'AppRTCDemo',
henrike@webrtc.org451745e2013-12-12 16:55:37 +0000411 'type': 'none',
412 'dependencies': [
kjellander442e6ee2016-06-20 01:34:06 -0700413 'api/api_java.gyp:libjingle_peerconnection_java',
henrike@webrtc.org451745e2013-12-12 16:55:37 +0000414 ],
Peter Boströmfa566d62015-11-11 12:11:15 +0000415 'variables': {
magjed87ef6f72016-09-22 10:15:15 -0700416 'apk_name': 'AppRTCDemo',
Peter Boströmfa566d62015-11-11 12:11:15 +0000417 'java_in_dir': 'examples/androidapp',
418 'has_java_resources': 1,
419 'resource_dir': 'examples/androidapp/res',
420 'R_package': 'org.appspot.apprtc',
421 'R_package_relpath': 'org/appspot/apprtc',
422 'input_jars_paths': [
Sami Kalliomaki9c0c75b2016-06-29 14:55:00 +0200423 'examples/androidapp/third_party/autobanh/lib/autobanh.jar',
Peter Boströmfa566d62015-11-11 12:11:15 +0000424 ],
425 'library_dexed_jars_paths': [
Sami Kalliomaki9c0c75b2016-06-29 14:55:00 +0200426 'examples/androidapp/third_party/autobanh/lib/autobanh.jar',
Peter Boströmfa566d62015-11-11 12:11:15 +0000427 ],
428 'native_lib_target': 'libjingle_peerconnection_so',
429 'add_to_dependents_classpaths':1,
430 },
431 'includes': [ '../build/java_apk.gypi' ],
magjed87ef6f72016-09-22 10:15:15 -0700432 }, # target AppRTCDemo
Peter Boströmfa566d62015-11-11 12:11:15 +0000433
434 {
magjed87ef6f72016-09-22 10:15:15 -0700435 # AppRTCDemo creates a .jar as a side effect. Any java targets
Peter Boströmfa566d62015-11-11 12:11:15 +0000436 # that need that .jar in their classpath should depend on this target,
magjed87ef6f72016-09-22 10:15:15 -0700437 # AppRTCDemo_apk. Dependents of AppRTCDemo_apk receive its
Peter Boströmfa566d62015-11-11 12:11:15 +0000438 # jar path in the variable 'apk_output_jar_path'.
439 # This target should only be used by targets which instrument
magjed87ef6f72016-09-22 10:15:15 -0700440 # AppRTCDemo_apk.
441 'target_name': 'AppRTCDemo_apk',
Peter Boströmfa566d62015-11-11 12:11:15 +0000442 'type': 'none',
443 'dependencies': [
magjed87ef6f72016-09-22 10:15:15 -0700444 'AppRTCDemo',
Peter Boströmfa566d62015-11-11 12:11:15 +0000445 ],
446 'includes': [ '../build/apk_fake_jar.gypi' ],
magjed87ef6f72016-09-22 10:15:15 -0700447 }, # target AppRTCDemo_apk
Peter Boströmfa566d62015-11-11 12:11:15 +0000448
449 {
magjed87ef6f72016-09-22 10:15:15 -0700450 'target_name': 'AppRTCDemoTest',
Peter Boströmfa566d62015-11-11 12:11:15 +0000451 'type': 'none',
452 'dependencies': [
magjed87ef6f72016-09-22 10:15:15 -0700453 'AppRTCDemo_apk',
Peter Boströmfa566d62015-11-11 12:11:15 +0000454 ],
455 'variables': {
magjed87ef6f72016-09-22 10:15:15 -0700456 'apk_name': 'AppRTCDemoTest',
Peter Boströmfa566d62015-11-11 12:11:15 +0000457 'java_in_dir': 'examples/androidtests',
458 'is_test_apk': 1,
agrievebabf8ee2016-04-08 06:54:23 -0700459 'test_type': 'instrumentation',
460 'test_runner_path': '<(DEPTH)/webrtc/build/android/test_runner.py',
Peter Boströmfa566d62015-11-11 12:11:15 +0000461 },
agrievebabf8ee2016-04-08 06:54:23 -0700462 'includes': [
463 '../build/java_apk.gypi',
464 '../build/android/test_runner.gypi',
465 ],
henrike@webrtc.org451745e2013-12-12 16:55:37 +0000466 },
Peter Boströmfa566d62015-11-11 12:11:15 +0000467 ], # targets
468 }], # OS=="android"
henrike@webrtc.org451745e2013-12-12 16:55:37 +0000469 ],
470}