| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chromecast/build/tests/cast_test.gni") | 10 import("//chromecast/build/tests/cast_test.gni") |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 net_unittests_filter = { | 211 net_unittests_filter = { |
| 212 test_name = "net_unittests" | 212 test_name = "net_unittests" |
| 213 if (using_sanitizer) { | 213 if (using_sanitizer) { |
| 214 # TODO(mbjorge): net_unittests do not complete when run with sanitizers, | 214 # TODO(mbjorge): net_unittests do not complete when run with sanitizers, |
| 215 # (in particular, TSAN and UBSAN), resulting in build machines getting stu
ck | 215 # (in particular, TSAN and UBSAN), resulting in build machines getting stu
ck |
| 216 # for many hours. Disable them for now, since these are getting run on | 216 # for many hours. Disable them for now, since these are getting run on |
| 217 # Chromium bots anyway. (internal b/31279943) | 217 # Chromium bots anyway. (internal b/31279943) |
| 218 gtest_excludes = [ "*" ] | 218 gtest_excludes = [ "*" ] |
| 219 } else if (target_os == "linux" && !is_cast_desktop_build) { | 219 } else if (target_os == "linux" && !is_cast_desktop_build) { |
| 220 # Run net_unittests first to avoid random failures due to slow python star
tup | 220 # Run net_unittests first to avoid random failures due to slow python star
tup |
| 221 # KeygenHandlerTest.SmokeTest and KeygenHandlerTest.ConcurrencyTest fail d
ue to | |
| 222 # readonly certdb (b/8153161) | |
| 223 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas
e | 221 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas
e |
| 224 # timeout to 90s from 45s to allow it to pass (b/19821476) | 222 # timeout to 90s from 45s to allow it to pass (b/19821476) |
| 225 # ProxyScriptFetcherImplTest.HttpMimeType is flaking (b/19848784) | 223 # ProxyScriptFetcherImplTest.HttpMimeType is flaking (b/19848784) |
| 226 # Running a batch of net_unittests has high overhead. Run tests in batches
of 50 to reduce number of batches (b/23156294). | 224 # Running a batch of net_unittests has high overhead. Run tests in batches
of 50 to reduce number of batches (b/23156294). |
| 227 gtest_excludes = [ | 225 gtest_excludes = [ "ProxyScriptFetcherImplTest.HttpMimeType" ] |
| 228 "KeygenHandlerTest.SmokeTest", | |
| 229 "KeygenHandlerTest.ConcurrencyTest", | |
| 230 "ProxyScriptFetcherImplTest.HttpMimeType", | |
| 231 ] | |
| 232 args = [ | 226 args = [ |
| 233 "--test-launcher-timeout=90000", | 227 "--test-launcher-timeout=90000", |
| 234 "--test-launcher-batch-limit=50", | 228 "--test-launcher-batch-limit=50", |
| 235 ] | 229 ] |
| 236 } else if (is_cast_desktop_build || target_os == "android") { | 230 } else if (is_cast_desktop_build || target_os == "android") { |
| 237 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas
e | 231 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas
e |
| 238 # timeout to 90s from 45s to allow it to pass (b/19821476) (b/29415636). | 232 # timeout to 90s from 45s to allow it to pass (b/19821476) (b/29415636). |
| 239 # CTLogVerifierTest.VerifiesValidConsistencyProofsFromReferenceGenerator | 233 # CTLogVerifierTest.VerifiesValidConsistencyProofsFromReferenceGenerator |
| 240 # times out occasionally, paricularly on the CQ bots; disable to reduce | 234 # times out occasionally, paricularly on the CQ bots; disable to reduce |
| 241 # CQ flakiness (crbug/598406) (b/29415636). | 235 # CQ flakiness (crbug/598406) (b/29415636). |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 450 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
| 457 | 451 |
| 458 deps = [ | 452 deps = [ |
| 459 ":cast_shell_apk_assets", | 453 ":cast_shell_apk_assets", |
| 460 "//base:base_java", | 454 "//base:base_java", |
| 461 "//chromecast/android:libcast_shell_android", | 455 "//chromecast/android:libcast_shell_android", |
| 462 "//chromecast/browser/android:cast_shell_java", | 456 "//chromecast/browser/android:cast_shell_java", |
| 463 ] | 457 ] |
| 464 } | 458 } |
| 465 } | 459 } |
| OLD | NEW |