Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: webrtc/voice_engine/BUILD.gn

Issue 2231413002: GN: Update tests to have the correct shard timeout value on Android. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixes according to comments. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/tools/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « webrtc/tools/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698