xians@google.com | d3185fe | 2011-09-12 12:24:39 +0000 | [diff] [blame] | 1 | # Copyright (c) 2011 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 | { |
| 10 | 'includes': [ |
andrew@webrtc.org | 3ce62fc | 2011-10-06 01:03:18 +0000 | [diff] [blame] | 11 | '../build/common.gypi', |
xians@google.com | d3185fe | 2011-09-12 12:24:39 +0000 | [diff] [blame] | 12 | ], |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 13 | 'targets': [ |
| 14 | { |
| 15 | 'target_name': 'voice_engine', |
| 16 | 'type': 'static_library', |
| 17 | 'dependencies': [ |
kwiberg@webrtc.org | ac2d27d | 2015-02-26 13:59:22 +0000 | [diff] [blame] | 18 | '<(webrtc_root)/common.gyp:webrtc_common', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 19 | '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 20 | '<(webrtc_root)/modules/modules.gyp:audio_coding_module', |
| 21 | '<(webrtc_root)/modules/modules.gyp:audio_conference_mixer', |
| 22 | '<(webrtc_root)/modules/modules.gyp:audio_device', |
| 23 | '<(webrtc_root)/modules/modules.gyp:audio_processing', |
minyue@webrtc.org | c1a40a7 | 2014-05-28 09:52:06 +0000 | [diff] [blame] | 24 | '<(webrtc_root)/modules/modules.gyp:bitrate_controller', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 25 | '<(webrtc_root)/modules/modules.gyp:media_file', |
| 26 | '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', |
| 27 | '<(webrtc_root)/modules/modules.gyp:webrtc_utility', |
andresp@webrtc.org | 86e1e48 | 2015-01-14 09:30:52 +0000 | [diff] [blame] | 28 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
ivoc | b04965c | 2015-09-09 00:09:43 -0700 | [diff] [blame] | 29 | '<(webrtc_root)/webrtc.gyp:rtc_event_log', |
andrew@webrtc.org | 3ce62fc | 2011-10-06 01:03:18 +0000 | [diff] [blame] | 30 | ], |
minyue | 3cea256 | 2015-11-10 03:49:26 -0800 | [diff] [blame^] | 31 | 'export_dependent_settings': [ |
| 32 | '<(webrtc_root)/modules/modules.gyp:audio_coding_module', |
| 33 | ], |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 34 | 'sources': [ |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 35 | 'include/voe_audio_processing.h', |
| 36 | 'include/voe_base.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 37 | 'include/voe_codec.h', |
| 38 | 'include/voe_dtmf.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 39 | 'include/voe_errors.h', |
| 40 | 'include/voe_external_media.h', |
| 41 | 'include/voe_file.h', |
| 42 | 'include/voe_hardware.h', |
| 43 | 'include/voe_neteq_stats.h', |
| 44 | 'include/voe_network.h', |
| 45 | 'include/voe_rtp_rtcp.h', |
| 46 | 'include/voe_video_sync.h', |
| 47 | 'include/voe_volume_control.h', |
| 48 | 'channel.cc', |
| 49 | 'channel.h', |
| 50 | 'channel_manager.cc', |
| 51 | 'channel_manager.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 52 | 'dtmf_inband.cc', |
| 53 | 'dtmf_inband.h', |
| 54 | 'dtmf_inband_queue.cc', |
| 55 | 'dtmf_inband_queue.h', |
| 56 | 'level_indicator.cc', |
| 57 | 'level_indicator.h', |
| 58 | 'monitor_module.cc', |
| 59 | 'monitor_module.h', |
minyue@webrtc.org | 74aaf29 | 2014-07-16 21:28:26 +0000 | [diff] [blame] | 60 | 'network_predictor.cc', |
| 61 | 'network_predictor.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 62 | 'output_mixer.cc', |
| 63 | 'output_mixer.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 64 | 'shared_data.cc', |
| 65 | 'shared_data.h', |
| 66 | 'statistics.cc', |
| 67 | 'statistics.h', |
| 68 | 'transmit_mixer.cc', |
| 69 | 'transmit_mixer.h', |
| 70 | 'utility.cc', |
| 71 | 'utility.h', |
| 72 | 'voe_audio_processing_impl.cc', |
| 73 | 'voe_audio_processing_impl.h', |
| 74 | 'voe_base_impl.cc', |
| 75 | 'voe_base_impl.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 76 | 'voe_codec_impl.cc', |
| 77 | 'voe_codec_impl.h', |
| 78 | 'voe_dtmf_impl.cc', |
| 79 | 'voe_dtmf_impl.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 80 | 'voe_external_media_impl.cc', |
| 81 | 'voe_external_media_impl.h', |
| 82 | 'voe_file_impl.cc', |
| 83 | 'voe_file_impl.h', |
| 84 | 'voe_hardware_impl.cc', |
| 85 | 'voe_hardware_impl.h', |
| 86 | 'voe_neteq_stats_impl.cc', |
| 87 | 'voe_neteq_stats_impl.h', |
| 88 | 'voe_network_impl.cc', |
| 89 | 'voe_network_impl.h', |
| 90 | 'voe_rtp_rtcp_impl.cc', |
| 91 | 'voe_rtp_rtcp_impl.h', |
| 92 | 'voe_video_sync_impl.cc', |
| 93 | 'voe_video_sync_impl.h', |
| 94 | 'voe_volume_control_impl.cc', |
| 95 | 'voe_volume_control_impl.h', |
| 96 | 'voice_engine_defines.h', |
| 97 | 'voice_engine_impl.cc', |
| 98 | 'voice_engine_impl.h', |
| 99 | ], |
| 100 | }, |
andrew@webrtc.org | 3ce62fc | 2011-10-06 01:03:18 +0000 | [diff] [blame] | 101 | ], |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 102 | 'conditions': [ |
| 103 | ['OS=="win"', { |
| 104 | 'defines': ['WEBRTC_DRIFT_COMPENSATION_SUPPORTED',], |
| 105 | }], |
| 106 | ['include_tests==1', { |
| 107 | 'targets': [ |
| 108 | { |
| 109 | 'target_name': 'voice_engine_unittests', |
henrike@webrtc.org | 89c6740 | 2013-08-02 16:53:47 +0000 | [diff] [blame] | 110 | 'type': '<(gtest_target_type)', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 111 | 'dependencies': [ |
| 112 | 'voice_engine', |
Jelena Marusic | 06b08af | 2015-04-21 11:39:57 +0200 | [diff] [blame] | 113 | '<(DEPTH)/testing/gmock.gyp:gmock', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 114 | '<(DEPTH)/testing/gtest.gyp:gtest', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 115 | # The rest are to satisfy the unittests' include chain. |
| 116 | # This would be unnecessary if we used qualified includes. |
| 117 | '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 118 | '<(webrtc_root)/modules/modules.gyp:audio_device', |
| 119 | '<(webrtc_root)/modules/modules.gyp:audio_processing', |
| 120 | '<(webrtc_root)/modules/modules.gyp:audio_coding_module', |
| 121 | '<(webrtc_root)/modules/modules.gyp:audio_conference_mixer', |
| 122 | '<(webrtc_root)/modules/modules.gyp:media_file', |
| 123 | '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', |
| 124 | '<(webrtc_root)/modules/modules.gyp:webrtc_utility', |
andresp@webrtc.org | 86e1e48 | 2015-01-14 09:30:52 +0000 | [diff] [blame] | 125 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
kjellander@webrtc.org | 6c35e0b | 2013-06-11 08:29:17 +0000 | [diff] [blame] | 126 | '<(webrtc_root)/test/test.gyp:test_support_main', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 127 | ], |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 128 | 'sources': [ |
| 129 | 'channel_unittest.cc', |
minyue@webrtc.org | 74aaf29 | 2014-07-16 21:28:26 +0000 | [diff] [blame] | 130 | 'network_predictor_unittest.cc', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 131 | 'transmit_mixer_unittest.cc', |
andrew@webrtc.org | a78a41f | 2014-04-08 23:09:28 +0000 | [diff] [blame] | 132 | 'utility_unittest.cc', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 133 | 'voe_audio_processing_unittest.cc', |
| 134 | 'voe_base_unittest.cc', |
| 135 | 'voe_codec_unittest.cc', |
Jelena Marusic | 46bd31b | 2015-04-30 10:57:10 +0200 | [diff] [blame] | 136 | 'voe_network_unittest.cc', |
| 137 | 'voice_engine_fixture.cc', |
| 138 | 'voice_engine_fixture.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 139 | ], |
henrike@webrtc.org | 89c6740 | 2013-08-02 16:53:47 +0000 | [diff] [blame] | 140 | 'conditions': [ |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 +0000 | [diff] [blame] | 141 | ['OS=="android"', { |
henrike@webrtc.org | 89c6740 | 2013-08-02 16:53:47 +0000 | [diff] [blame] | 142 | 'dependencies': [ |
| 143 | '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
| 144 | ], |
| 145 | }], |
| 146 | ], |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 147 | }, |
| 148 | { |
| 149 | 'target_name': 'voe_auto_test', |
| 150 | 'type': 'executable', |
| 151 | 'dependencies': [ |
| 152 | 'voice_engine', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 153 | '<(DEPTH)/testing/gmock.gyp:gmock', |
kjellander@webrtc.org | 6c35e0b | 2013-06-11 08:29:17 +0000 | [diff] [blame] | 154 | '<(DEPTH)/testing/gtest.gyp:gtest', |
fischman@webrtc.org | dde7d4c | 2013-08-15 23:31:30 +0000 | [diff] [blame] | 155 | '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
andresp@webrtc.org | 86e1e48 | 2015-01-14 09:30:52 +0000 | [diff] [blame] | 156 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
| 157 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default', |
kjellander@webrtc.org | 6c35e0b | 2013-06-11 08:29:17 +0000 | [diff] [blame] | 158 | '<(webrtc_root)/test/test.gyp:channel_transport', |
| 159 | '<(webrtc_root)/test/test.gyp:test_support', |
minyue | 3cea256 | 2015-11-10 03:49:26 -0800 | [diff] [blame^] | 160 | '<(webrtc_root)/test/webrtc_test_common.gyp:webrtc_test_common', |
ivoc | b04965c | 2015-09-09 00:09:43 -0700 | [diff] [blame] | 161 | '<(webrtc_root)/webrtc.gyp:rtc_event_log', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 162 | ], |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 163 | 'sources': [ |
| 164 | 'test/auto_test/automated_mode.cc', |
| 165 | 'test/auto_test/extended/agc_config_test.cc', |
| 166 | 'test/auto_test/extended/ec_metrics_test.cc', |
Minyue | afef4bf | 2015-05-27 00:21:18 +0200 | [diff] [blame] | 167 | 'test/auto_test/fakes/conference_transport.cc', |
| 168 | 'test/auto_test/fakes/conference_transport.h', |
minyue | 03bb7c7 | 2015-08-14 07:33:56 -0700 | [diff] [blame] | 169 | 'test/auto_test/fakes/loudest_filter.cc', |
| 170 | 'test/auto_test/fakes/loudest_filter.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 171 | 'test/auto_test/fixtures/after_initialization_fixture.cc', |
| 172 | 'test/auto_test/fixtures/after_initialization_fixture.h', |
| 173 | 'test/auto_test/fixtures/after_streaming_fixture.cc', |
| 174 | 'test/auto_test/fixtures/after_streaming_fixture.h', |
| 175 | 'test/auto_test/fixtures/before_initialization_fixture.cc', |
| 176 | 'test/auto_test/fixtures/before_initialization_fixture.h', |
solenberg@webrtc.org | 57e0602 | 2014-05-16 11:27:09 +0000 | [diff] [blame] | 177 | 'test/auto_test/fixtures/before_streaming_fixture.cc', |
| 178 | 'test/auto_test/fixtures/before_streaming_fixture.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 179 | 'test/auto_test/standard/audio_processing_test.cc', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 180 | 'test/auto_test/standard/codec_before_streaming_test.cc', |
| 181 | 'test/auto_test/standard/codec_test.cc', |
| 182 | 'test/auto_test/standard/dtmf_test.cc', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 183 | 'test/auto_test/standard/external_media_test.cc', |
| 184 | 'test/auto_test/standard/file_before_streaming_test.cc', |
| 185 | 'test/auto_test/standard/file_test.cc', |
| 186 | 'test/auto_test/standard/hardware_before_initializing_test.cc', |
| 187 | 'test/auto_test/standard/hardware_before_streaming_test.cc', |
| 188 | 'test/auto_test/standard/hardware_test.cc', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 189 | 'test/auto_test/standard/mixing_test.cc', |
| 190 | 'test/auto_test/standard/neteq_stats_test.cc', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 191 | 'test/auto_test/standard/rtp_rtcp_before_streaming_test.cc', |
wu@webrtc.org | ebdb0e3 | 2014-03-06 23:49:08 +0000 | [diff] [blame] | 192 | 'test/auto_test/standard/rtp_rtcp_extensions.cc', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 193 | 'test/auto_test/standard/rtp_rtcp_test.cc', |
| 194 | 'test/auto_test/standard/voe_base_misc_test.cc', |
| 195 | 'test/auto_test/standard/video_sync_test.cc', |
| 196 | 'test/auto_test/standard/volume_test.cc', |
| 197 | 'test/auto_test/resource_manager.cc', |
Minyue | afef4bf | 2015-05-27 00:21:18 +0200 | [diff] [blame] | 198 | 'test/auto_test/voe_conference_test.cc', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 199 | 'test/auto_test/voe_cpu_test.cc', |
| 200 | 'test/auto_test/voe_cpu_test.h', |
minyue | 3cea256 | 2015-11-10 03:49:26 -0800 | [diff] [blame^] | 201 | 'test/auto_test/voe_output_test.cc', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 202 | 'test/auto_test/voe_standard_test.cc', |
| 203 | 'test/auto_test/voe_standard_test.h', |
| 204 | 'test/auto_test/voe_stress_test.cc', |
| 205 | 'test/auto_test/voe_stress_test.h', |
| 206 | 'test/auto_test/voe_test_defines.h', |
| 207 | 'test/auto_test/voe_test_interface.h', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 208 | ], |
| 209 | 'conditions': [ |
| 210 | ['OS=="android"', { |
| 211 | # some tests are not supported on android yet, exclude these tests. |
| 212 | 'sources!': [ |
| 213 | 'test/auto_test/standard/hardware_before_streaming_test.cc', |
| 214 | ], |
| 215 | }], |
ivoc | b04965c | 2015-09-09 00:09:43 -0700 | [diff] [blame] | 216 | ['enable_protobuf==1', { |
| 217 | 'defines': [ |
| 218 | 'ENABLE_RTC_EVENT_LOG', |
| 219 | ], |
| 220 | }], |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 221 | ], |
| 222 | # Disable warnings to enable Win64 build, issue 1323. |
| 223 | 'msvs_disabled_warnings': [ |
| 224 | 4267, # size_t to int truncation. |
| 225 | ], |
| 226 | }, |
| 227 | { |
| 228 | # command line test that should work on linux/mac/win |
| 229 | 'target_name': 'voe_cmd_test', |
| 230 | 'type': 'executable', |
| 231 | 'dependencies': [ |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 232 | 'voice_engine', |
kjellander@webrtc.org | 6c35e0b | 2013-06-11 08:29:17 +0000 | [diff] [blame] | 233 | '<(DEPTH)/testing/gtest.gyp:gtest', |
minyue@webrtc.org | cc92e00 | 2013-09-30 08:43:50 +0000 | [diff] [blame] | 234 | '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
andresp@webrtc.org | 86e1e48 | 2015-01-14 09:30:52 +0000 | [diff] [blame] | 235 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
| 236 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default', |
kjellander@webrtc.org | 6c35e0b | 2013-06-11 08:29:17 +0000 | [diff] [blame] | 237 | '<(webrtc_root)/test/test.gyp:channel_transport', |
| 238 | '<(webrtc_root)/test/test.gyp:test_support', |
ivoc | b04965c | 2015-09-09 00:09:43 -0700 | [diff] [blame] | 239 | '<(webrtc_root)/webrtc.gyp:rtc_event_log', |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 240 | ], |
| 241 | 'sources': [ |
| 242 | 'test/cmd_test/voe_cmd_test.cc', |
| 243 | ], |
| 244 | }, |
| 245 | ], # targets |
| 246 | 'conditions': [ |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 +0000 | [diff] [blame] | 247 | ['OS=="android"', { |
henrike@webrtc.org | 89c6740 | 2013-08-02 16:53:47 +0000 | [diff] [blame] | 248 | 'targets': [ |
| 249 | { |
kjellander@webrtc.org | 0372b93 | 2014-09-03 14:34:46 +0000 | [diff] [blame] | 250 | 'target_name': 'voice_engine_unittests_apk_target', |
henrike@webrtc.org | 89c6740 | 2013-08-02 16:53:47 +0000 | [diff] [blame] | 251 | 'type': 'none', |
| 252 | 'dependencies': [ |
kjellander@webrtc.org | 0372b93 | 2014-09-03 14:34:46 +0000 | [diff] [blame] | 253 | '<(apk_tests_path):voice_engine_unittests_apk', |
henrike@webrtc.org | 89c6740 | 2013-08-02 16:53:47 +0000 | [diff] [blame] | 254 | ], |
| 255 | }, |
| 256 | ], |
| 257 | }], |
kjellander@webrtc.org | 3365422 | 2013-08-22 07:57:00 +0000 | [diff] [blame] | 258 | ['test_isolation_mode != "noop"', { |
| 259 | 'targets': [ |
| 260 | { |
| 261 | 'target_name': 'voice_engine_unittests_run', |
| 262 | 'type': 'none', |
| 263 | 'dependencies': [ |
kjellander@webrtc.org | 3365422 | 2013-08-22 07:57:00 +0000 | [diff] [blame] | 264 | 'voice_engine_unittests', |
| 265 | ], |
| 266 | 'includes': [ |
kjellander@webrtc.org | 2a97317 | 2013-10-02 19:31:16 +0000 | [diff] [blame] | 267 | '../build/isolate.gypi', |
kjellander@webrtc.org | 3365422 | 2013-08-22 07:57:00 +0000 | [diff] [blame] | 268 | ], |
| 269 | 'sources': [ |
| 270 | 'voice_engine_unittests.isolate', |
| 271 | ], |
| 272 | }, |
| 273 | { |
| 274 | 'target_name': 'voe_auto_test_run', |
| 275 | 'type': 'none', |
| 276 | 'dependencies': [ |
kjellander@webrtc.org | 3365422 | 2013-08-22 07:57:00 +0000 | [diff] [blame] | 277 | 'voe_auto_test', |
| 278 | ], |
| 279 | 'includes': [ |
kjellander@webrtc.org | 2a97317 | 2013-10-02 19:31:16 +0000 | [diff] [blame] | 280 | '../build/isolate.gypi', |
kjellander@webrtc.org | 3365422 | 2013-08-22 07:57:00 +0000 | [diff] [blame] | 281 | ], |
| 282 | 'sources': [ |
| 283 | 'voe_auto_test.isolate', |
| 284 | ], |
| 285 | }, |
| 286 | ], |
| 287 | }], |
andrew@webrtc.org | f791b1c | 2013-05-29 00:38:02 +0000 | [diff] [blame] | 288 | ], # conditions |
| 289 | }], # include_tests |
| 290 | ], # conditions |
xians@google.com | d3185fe | 2011-09-12 12:24:39 +0000 | [diff] [blame] | 291 | } |