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

Side by Side Diff: chromecast/BUILD.gn

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 net_unittests_filter = { 203 net_unittests_filter = {
204 test_name = "net_unittests" 204 test_name = "net_unittests"
205 if (using_sanitizer) { 205 if (using_sanitizer) {
206 # TODO(mbjorge): net_unittests do not complete when run with sanitizers, 206 # TODO(mbjorge): net_unittests do not complete when run with sanitizers,
207 # (in particular, TSAN and UBSAN), resulting in build machines getting stu ck 207 # (in particular, TSAN and UBSAN), resulting in build machines getting stu ck
208 # for many hours. Disable them for now, since these are getting run on 208 # for many hours. Disable them for now, since these are getting run on
209 # Chromium bots anyway. (internal b/31279943) 209 # Chromium bots anyway. (internal b/31279943)
210 gtest_excludes = [ "*" ] 210 gtest_excludes = [ "*" ]
211 } else if (target_os == "linux" && !is_cast_desktop_build) { 211 } else if (target_os == "linux" && !is_cast_desktop_build) {
212 # Run net_unittests first to avoid random failures due to slow python star tup 212 # Run net_unittests first to avoid random failures due to slow python star tup
213 # KeygenHandlerTest.SmokeTest and KeygenHandlerTest.ConcurrencyTest fail d ue to
214 # readonly certdb (b/8153161)
215 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas e 213 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas e
216 # timeout to 90s from 45s to allow it to pass (b/19821476) 214 # timeout to 90s from 45s to allow it to pass (b/19821476)
217 # ProxyScriptFetcherImplTest.HttpMimeType is flaking (b/19848784) 215 # ProxyScriptFetcherImplTest.HttpMimeType is flaking (b/19848784)
218 # Running a batch of net_unittests has high overhead. Run tests in batches of 50 to reduce number of batches (b/23156294). 216 # Running a batch of net_unittests has high overhead. Run tests in batches of 50 to reduce number of batches (b/23156294).
219 gtest_excludes = [ 217 gtest_excludes = [
220 "KeygenHandlerTest.SmokeTest",
221 "KeygenHandlerTest.ConcurrencyTest",
222 "ProxyScriptFetcherImplTest.HttpMimeType", 218 "ProxyScriptFetcherImplTest.HttpMimeType",
223 ] 219 ]
224 args = [ 220 args = [
225 "--test-launcher-timeout=90000", 221 "--test-launcher-timeout=90000",
226 "--test-launcher-batch-limit=50", 222 "--test-launcher-batch-limit=50",
227 ] 223 ]
228 } else if (is_cast_desktop_build || target_os == "android") { 224 } else if (is_cast_desktop_build || target_os == "android") {
229 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas e 225 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas e
230 # timeout to 90s from 45s to allow it to pass (b/19821476) (b/29415636). 226 # timeout to 90s from 45s to allow it to pass (b/19821476) (b/29415636).
231 # CTLogVerifierTest.VerifiesValidConsistencyProofsFromReferenceGenerator 227 # CTLogVerifierTest.VerifiesValidConsistencyProofsFromReferenceGenerator
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] 450 shared_libraries = [ "//chromecast/android:libcast_shell_android" ]
455 451
456 deps = [ 452 deps = [
457 ":cast_shell_apk_assets", 453 ":cast_shell_apk_assets",
458 "//base:base_java", 454 "//base:base_java",
459 "//chromecast/android:libcast_shell_android", 455 "//chromecast/android:libcast_shell_android",
460 "//chromecast/browser/android:cast_shell_java", 456 "//chromecast/browser/android:cast_shell_java",
461 ] 457 ]
462 } 458 }
463 } 459 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698