blob: 32fc662875129ba1f63131a73c980fd4f310b513 [file] [log] [blame]
henrike@webrtc.orge80a9342013-07-08 21:19:57 +00001# Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
2#
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{
9 'conditions': [
10 ['OS=="android"', {
kjellander@webrtc.orge1413732013-08-27 12:10:09 +000011 # When doing Android builds, the WebRTC code is put in third_party/webrtc
12 # of a Chromium checkout, this is one level above the standalone build.
henrike@webrtc.orge80a9342013-07-08 21:19:57 +000013 'variables': {
14 'isolate_dependency_untracked': [
henrike@webrtc.org14c966c2013-07-25 22:44:04 +000015 '../../../data/',
kjellander@webrtc.orge1413732013-08-27 12:10:09 +000016 '../../../resources/',
henrike@webrtc.orge80a9342013-07-08 21:19:57 +000017 ],
18 },
19 }],
kjellander@webrtc.org33654222013-08-22 07:57:00 +000020 ['OS=="linux" or OS=="mac" or OS=="win"', {
21 'variables': {
22 'command': [
23 '../../testing/test_env.py',
24 '../../tools/swarm_client/googletest/run_test_cases.py',
25 '<(PRODUCT_DIR)/modules_unittests<(EXECUTABLE_SUFFIX)',
26 ],
27 'isolate_dependency_tracked': [
kjellander@webrtc.org33654222013-08-22 07:57:00 +000028 '../../DEPS',
kjellander@webrtc.org7a36cb42013-11-05 14:28:57 +000029 '../../data/audio_processing/output_data_float.pb',
kjellander@webrtc.org3f9288f2013-10-04 18:20:38 +000030 '../../data/voice_engine/audio_tiny48.wav',
31 '../../resources/audio_coding/neteq4_network_stats.dat',
32 '../../resources/audio_coding/neteq4_rtcp_stats.dat',
33 '../../resources/audio_coding/neteq4_universal_ref.pcm',
kjellander@webrtc.org33654222013-08-22 07:57:00 +000034 '../../resources/audio_coding/neteq_network_stats.dat',
35 '../../resources/audio_coding/neteq_rtcp_stats.dat',
36 '../../resources/audio_coding/neteq_universal_new.rtp',
37 '../../resources/audio_coding/neteq_universal_ref.pcm',
38 '../../resources/audio_coding/testfile32kHz.pcm',
39 '../../resources/deflicker_before_cif_short.yuv',
40 '../../resources/far16_stereo.pcm',
41 '../../resources/far32_stereo.pcm',
42 '../../resources/far8_stereo.pcm',
43 '../../resources/foremanColorEnhanced_cif_short.yuv',
44 '../../resources/foreman_cif.yuv',
45 '../../resources/foreman_cif_short.yuv',
46 '../../resources/near16_stereo.pcm',
47 '../../resources/near32_stereo.pcm',
48 '../../resources/near8_stereo.pcm',
solenberg@webrtc.org812dd112013-12-03 15:11:14 +000049 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke1_0_AST.bin',
50 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke1_0_TOF.bin',
51 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke1_1_AST.bin',
52 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke1_1_TOF.bin',
53 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke2_0_AST.bin',
54 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke2_0_TOF.bin',
55 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke2_1_AST.bin',
56 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke2_1_TOF.bin',
57 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingDelay1_0_AST.bin',
58 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingDelay1_0_TOF.bin',
59 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingLoss1_0_AST.bin',
60 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingLoss1_0_TOF.bin',
61 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_Multi1_1_AST.bin',
62 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_Multi1_1_TOF.bin',
63 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_0_AST.bin',
64 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_0_TOF.bin',
65 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_1_AST.bin',
66 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_1_TOF.bin',
67 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyDelay_0_AST.bin',
68 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyDelay_0_TOF.bin',
69 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyLoss_0_AST.bin',
70 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyLoss_0_TOF.bin',
71 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_UnlimitedSpeed_0_AST.bin',
72 '../../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_UnlimitedSpeed_0_TOF.bin',
kjellander@webrtc.org33654222013-08-22 07:57:00 +000073 '../../resources/video_coding/frame-ethernet-ii.pcap',
74 '../../resources/video_coding/frame-loopback.pcap',
75 '../../resources/video_coding/pltype103.rtp',
76 '../../resources/video_coding/ssrcs-2.pcap',
77 '../../resources/video_coding/ssrcs-3.pcap',
78 '../../testing/test_env.py',
kjellander@webrtc.org33654222013-08-22 07:57:00 +000079 '<(PRODUCT_DIR)/modules_unittests<(EXECUTABLE_SUFFIX)',
80 ],
kjellander@webrtc.org3f9288f2013-10-04 18:20:38 +000081 'isolate_dependency_untracked': [
82 '../../tools/swarm_client/',
83 ],
kjellander@webrtc.org33654222013-08-22 07:57:00 +000084 },
85 }],
henrike@webrtc.orge80a9342013-07-08 21:19:57 +000086 ],
kjellander@webrtc.org33654222013-08-22 07:57:00 +000087}