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

Unified Diff: chromecast/BUILD.gn

Issue 2563833002: [C4A] Remove NavigationEntryTest.NavigationEntryURLs test on audio builds. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/BUILD.gn
diff --git a/chromecast/BUILD.gn b/chromecast/BUILD.gn
index 9a454506d96b78ce609ef4b29825f6ec98cfc7d4..e07c52bf77562c45f6824ca05e41cbac55917aeb 100644
--- a/chromecast/BUILD.gn
+++ b/chromecast/BUILD.gn
@@ -139,12 +139,13 @@ cast_test_group("cast_tests") {
content_unittests_filter = {
test_name = "content_unittests"
+ gtest_excludes = []
if (target_os == "linux" && !is_cast_desktop_build) {
# DesktopCaptureDeviceTest.*: No capture device on Eureka
# Disable PepperGamepadHostTest.WaitForReply (pepper not supported on Eureka)
# Disable GpuDataManagerImplPrivateTest.SetGLStrings and
# RenderWidgetHostTest.Background because we disable the blacklist to enable WebGL (b/16142554)
- gtest_excludes = [
+ gtest_excludes += [
"DOMStorageDatabaseTest.TestCanOpenAndReadWebCoreDatabase",
"DesktopCaptureDeviceTest.Capture",
"GamepadProviderTest.PollingAccess",
@@ -153,6 +154,10 @@ cast_test_group("cast_tests") {
"RenderWidgetHostTest.Background",
]
}
+ if (is_cast_audio_only) {
+ # No way to display URL's on audio only cast devices.
+ gtest_excludes += [ "NavigationEntryTest.NavigationEntryURLs" ]
+ }
}
filters += [ content_unittests_filter ]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698