OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 "//webrtc/modules/audio_processing", | 136 "//webrtc/modules/audio_processing", |
137 "//webrtc/modules/media_file", | 137 "//webrtc/modules/media_file", |
138 "//webrtc/modules/rtp_rtcp", | 138 "//webrtc/modules/rtp_rtcp", |
139 "//webrtc/modules/utility", | 139 "//webrtc/modules/utility", |
140 "//webrtc/system_wrappers", | 140 "//webrtc/system_wrappers", |
141 "//webrtc/test:test_support_main", | 141 "//webrtc/test:test_support_main", |
142 ] | 142 ] |
143 | 143 |
144 if (is_android) { | 144 if (is_android) { |
145 deps += [ "//testing/android/native_test:native_test_native_code" ] | 145 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 146 shard_timeout = 900 |
146 } | 147 } |
147 | 148 |
148 sources = [ | 149 sources = [ |
149 "channel_unittest.cc", | 150 "channel_unittest.cc", |
150 "network_predictor_unittest.cc", | 151 "network_predictor_unittest.cc", |
151 "transmit_mixer_unittest.cc", | 152 "transmit_mixer_unittest.cc", |
152 "utility_unittest.cc", | 153 "utility_unittest.cc", |
153 "voe_audio_processing_unittest.cc", | 154 "voe_audio_processing_unittest.cc", |
154 "voe_base_unittest.cc", | 155 "voe_base_unittest.cc", |
155 "voe_codec_unittest.cc", | 156 "voe_codec_unittest.cc", |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 } | 262 } |
262 | 263 |
263 if (is_clang) { | 264 if (is_clang) { |
264 # Suppress warnings from Chrome's Clang plugins. | 265 # Suppress warnings from Chrome's Clang plugins. |
265 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 266 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
266 configs -= [ "//build/config/clang:find_bad_constructs" ] | 267 configs -= [ "//build/config/clang:find_bad_constructs" ] |
267 } | 268 } |
268 } | 269 } |
269 } | 270 } |
270 } | 271 } |
OLD | NEW |