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

Side by Side Diff: chromecast/BUILD.gn

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Review feedback Created 4 years 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
OLDNEW
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
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 = [
228 "KeygenHandlerTest.SmokeTest",
229 "KeygenHandlerTest.ConcurrencyTest",
230 "ProxyScriptFetcherImplTest.HttpMimeType", 226 "ProxyScriptFetcherImplTest.HttpMimeType",
231 ] 227 ]
232 args = [ 228 args = [
233 "--test-launcher-timeout=90000", 229 "--test-launcher-timeout=90000",
234 "--test-launcher-batch-limit=50", 230 "--test-launcher-batch-limit=50",
235 ] 231 ]
236 } else if (is_cast_desktop_build || target_os == "android") { 232 } else if (is_cast_desktop_build || target_os == "android") {
237 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas e 233 # 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). 234 # timeout to 90s from 45s to allow it to pass (b/19821476) (b/29415636).
239 # CTLogVerifierTest.VerifiesValidConsistencyProofsFromReferenceGenerator 235 # CTLogVerifierTest.VerifiesValidConsistencyProofsFromReferenceGenerator
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] 458 shared_libraries = [ "//chromecast/android:libcast_shell_android" ]
463 459
464 deps = [ 460 deps = [
465 ":cast_shell_apk_assets", 461 ":cast_shell_apk_assets",
466 "//base:base_java", 462 "//base:base_java",
467 "//chromecast/android:libcast_shell_android", 463 "//chromecast/android:libcast_shell_android",
468 "//chromecast/browser/android:cast_shell_java", 464 "//chromecast/browser/android:cast_shell_java",
469 ] 465 ]
470 } 466 }
471 } 467 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698