| 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 ]
|
|
|
|
|