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

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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 net_unittests_filter = { 198 net_unittests_filter = {
199 test_name = "net_unittests" 199 test_name = "net_unittests"
200 if (using_sanitizer) { 200 if (using_sanitizer) {
201 # TODO(mbjorge): net_unittests do not complete when run with sanitizers, 201 # TODO(mbjorge): net_unittests do not complete when run with sanitizers,
202 # (in particular, TSAN and UBSAN), resulting in build machines getting stu ck 202 # (in particular, TSAN and UBSAN), resulting in build machines getting stu ck
203 # for many hours. Disable them for now, since these are getting run on 203 # for many hours. Disable them for now, since these are getting run on
204 # Chromium bots anyway. (internal b/31279943) 204 # Chromium bots anyway. (internal b/31279943)
205 gtest_excludes = [ "*" ] 205 gtest_excludes = [ "*" ]
206 } else if (target_os == "linux" && !is_cast_desktop_build) { 206 } else if (target_os == "linux" && !is_cast_desktop_build) {
207 # Run net_unittests first to avoid random failures due to slow python star tup 207 # Run net_unittests first to avoid random failures due to slow python star tup
208 # KeygenHandlerTest.SmokeTest and KeygenHandlerTest.ConcurrencyTest fail d ue to
209 # readonly certdb (b/8153161)
210 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas e 208 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas e
211 # timeout to 90s from 45s to allow it to pass (b/19821476) 209 # timeout to 90s from 45s to allow it to pass (b/19821476)
212 # ProxyScriptFetcherImplTest.HttpMimeType is flaking (b/19848784) 210 # ProxyScriptFetcherImplTest.HttpMimeType is flaking (b/19848784)
213 # Running a batch of net_unittests has high overhead. Run tests in batches of 25 to reduce number of batches (b/23156294). 211 # Running a batch of net_unittests has high overhead. Run tests in batches of 25 to reduce number of batches (b/23156294).
214 gtest_excludes = [ 212 gtest_excludes = [ "ProxyScriptFetcherImplTest.HttpMimeType" ]
215 "KeygenHandlerTest.SmokeTest",
216 "KeygenHandlerTest.ConcurrencyTest",
217 "ProxyScriptFetcherImplTest.HttpMimeType",
218 ]
219 args = [ 213 args = [
220 "--test-launcher-timeout=90000", 214 "--test-launcher-timeout=90000",
221 "--test-launcher-batch-limit=25", 215 "--test-launcher-batch-limit=25",
222 ] 216 ]
223 } else if (is_cast_desktop_build || target_os == "android") { 217 } else if (is_cast_desktop_build || target_os == "android") {
224 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas e 218 # URLRequestTestHTTP.GetTest_ManyCookies takes roughly 55s to run. Increas e
225 # timeout to 90s from 45s to allow it to pass (b/19821476) (b/29415636). 219 # timeout to 90s from 45s to allow it to pass (b/19821476) (b/29415636).
226 # CTLogVerifierTest.VerifiesValidConsistencyProofsFromReferenceGenerator 220 # CTLogVerifierTest.VerifiesValidConsistencyProofsFromReferenceGenerator
227 # times out occasionally, paricularly on the CQ bots; disable to reduce 221 # times out occasionally, paricularly on the CQ bots; disable to reduce
228 # CQ flakiness (crbug/598406) (b/29415636). 222 # CQ flakiness (crbug/598406) (b/29415636).
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 apk_name = "CastShell" 439 apk_name = "CastShell"
446 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" 440 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml"
447 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" 441 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest"
448 deps = [ 442 deps = [
449 ":cast_shell_apk_assets", 443 ":cast_shell_apk_assets",
450 "//chromecast/android:libcast_shell_android", 444 "//chromecast/android:libcast_shell_android",
451 "//chromecast/browser/android:cast_shell_java", 445 "//chromecast/browser/android:cast_shell_java",
452 ] 446 ]
453 } 447 }
454 } 448 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698