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

Unified Diff: webrtc/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: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/api/BUILD.gn » ('j') | webrtc/modules/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/BUILD.gn
diff --git a/webrtc/BUILD.gn b/webrtc/BUILD.gn
index 94ce0120b61e73b84d076c385625bc51fcc17862..04128aff6747db88a350c4a5beed348c559c483b 100644
--- a/webrtc/BUILD.gn
+++ b/webrtc/BUILD.gn
@@ -602,6 +602,10 @@ if (rtc_include_tests) {
# https://developer.apple.com/library/mac/qa/qa1490/_index.html
ldflags = [ "-ObjC" ]
}
+
+ if (is_android) {
+ shard_timeout = 900
kjellander_webrtc 2016/08/15 06:55:08 Please put this at line 581 instead.
sakal 2016/08/15 07:44:54 Done.
+ }
}
test("xmllite_xmpp_unittests") {
@@ -665,6 +669,10 @@ if (rtc_include_tests) {
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
configs -= [ "//build/config/clang:find_bad_constructs" ]
}
+
+ if (is_android) {
+ shard_timeout = 900
kjellander_webrtc 2016/08/15 06:55:08 Hmm, this test was added in https://codereview.web
sakal 2016/08/15 07:44:54 Acknowledged.
+ }
}
source_set("video_quality_test") {
@@ -731,6 +739,9 @@ if (rtc_include_tests) {
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
configs -= [ "//build/config/clang:find_bad_constructs" ]
}
+ if (is_android) {
+ shard_timeout = 2700
kjellander_webrtc 2016/08/15 06:55:08 Please move to line 736.
sakal 2016/08/15 07:44:54 Done.
+ }
}
test("webrtc_nonparallel_tests") {
@@ -771,5 +782,8 @@ if (rtc_include_tests) {
# See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
configs -= [ "//build/config/clang:find_bad_constructs" ]
}
+ if (is_android) {
+ shard_timeout = 900
kjellander_webrtc 2016/08/15 06:55:08 Please move to line 772.
sakal 2016/08/15 07:44:54 Done.
+ }
}
}
« no previous file with comments | « no previous file | webrtc/api/BUILD.gn » ('j') | webrtc/modules/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698