| OLD | NEW |
| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 # Also disable TimeFormattingTest on audio-only builds, since we don't | 132 # Also disable TimeFormattingTest on audio-only builds, since we don't |
| 133 # include the necessary info in icudtl.dat. | 133 # include the necessary info in icudtl.dat. |
| 134 gtest_excludes += [ "TimeFormattingTest.*" ] | 134 gtest_excludes += [ "TimeFormattingTest.*" ] |
| 135 } | 135 } |
| 136 } | 136 } |
| 137 } | 137 } |
| 138 filters += [ base_unittests_filter ] | 138 filters += [ base_unittests_filter ] |
| 139 | 139 |
| 140 content_unittests_filter = { | 140 content_unittests_filter = { |
| 141 test_name = "content_unittests" | 141 test_name = "content_unittests" |
| 142 gtest_excludes = [] |
| 142 if (target_os == "linux" && !is_cast_desktop_build) { | 143 if (target_os == "linux" && !is_cast_desktop_build) { |
| 143 # DesktopCaptureDeviceTest.*: No capture device on Eureka | 144 # DesktopCaptureDeviceTest.*: No capture device on Eureka |
| 144 # Disable PepperGamepadHostTest.WaitForReply (pepper not supported on Eure
ka) | 145 # Disable PepperGamepadHostTest.WaitForReply (pepper not supported on Eure
ka) |
| 145 # Disable GpuDataManagerImplPrivateTest.SetGLStrings and | 146 # Disable GpuDataManagerImplPrivateTest.SetGLStrings and |
| 146 # RenderWidgetHostTest.Background because we disable the blacklist to enab
le WebGL (b/16142554) | 147 # RenderWidgetHostTest.Background because we disable the blacklist to enab
le WebGL (b/16142554) |
| 147 gtest_excludes = [ | 148 gtest_excludes += [ |
| 148 "DOMStorageDatabaseTest.TestCanOpenAndReadWebCoreDatabase", | 149 "DOMStorageDatabaseTest.TestCanOpenAndReadWebCoreDatabase", |
| 149 "DesktopCaptureDeviceTest.Capture", | 150 "DesktopCaptureDeviceTest.Capture", |
| 150 "GamepadProviderTest.PollingAccess", | 151 "GamepadProviderTest.PollingAccess", |
| 151 "GpuDataManagerImplPrivateTest.SetGLStrings", | 152 "GpuDataManagerImplPrivateTest.SetGLStrings", |
| 152 "PepperGamepadHostTest.WaitForReply", | 153 "PepperGamepadHostTest.WaitForReply", |
| 153 "RenderWidgetHostTest.Background", | 154 "RenderWidgetHostTest.Background", |
| 154 ] | 155 ] |
| 155 } | 156 } |
| 157 if (is_cast_audio_only) { |
| 158 # No way to display URL's on audio only cast devices. |
| 159 gtest_excludes += [ "NavigationEntryTest.NavigationEntryURLs" ] |
| 160 } |
| 156 } | 161 } |
| 157 filters += [ content_unittests_filter ] | 162 filters += [ content_unittests_filter ] |
| 158 | 163 |
| 159 media_unittests_filter = { | 164 media_unittests_filter = { |
| 160 test_name = "media_unittests" | 165 test_name = "media_unittests" |
| 161 if (target_os == "linux" && !is_cast_desktop_build) { | 166 if (target_os == "linux" && !is_cast_desktop_build) { |
| 162 # Disable VP9 related tests (b/18593324) | 167 # Disable VP9 related tests (b/18593324) |
| 163 # PipelineIntegrationTest.BasicPlayback_MediaSource_VP9_WebM | 168 # PipelineIntegrationTest.BasicPlayback_MediaSource_VP9_WebM |
| 164 # PipelineIntegrationTest.BasicPlayback_VideoOnly_VP9_WebM | 169 # PipelineIntegrationTest.BasicPlayback_VideoOnly_VP9_WebM |
| 165 # PipelineIntegrationTest.BasicPlayback_VP9* | 170 # PipelineIntegrationTest.BasicPlayback_VP9* |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 apk_name = "CastShell" | 450 apk_name = "CastShell" |
| 446 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" | 451 android_manifest = "$root_gen_dir/cast_shell_manifest/AndroidManifest.xml" |
| 447 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" | 452 android_manifest_dep = "//chromecast/browser/android:cast_shell_manifest" |
| 448 deps = [ | 453 deps = [ |
| 449 ":cast_shell_apk_assets", | 454 ":cast_shell_apk_assets", |
| 450 "//chromecast/android:libcast_shell_android", | 455 "//chromecast/android:libcast_shell_android", |
| 451 "//chromecast/browser/android:cast_shell_java", | 456 "//chromecast/browser/android:cast_shell_java", |
| 452 ] | 457 ] |
| 453 } | 458 } |
| 454 } | 459 } |
| OLD | NEW |