diff options
Diffstat (limited to 'chromecast')
-rw-r--r-- | chromecast/BUILD.gn | 4 | ||||
-rw-r--r-- | chromecast/chromecast_tests.gypi | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/chromecast/BUILD.gn b/chromecast/BUILD.gn index 1733a59..5fac3c6f 100644 --- a/chromecast/BUILD.gn +++ b/chromecast/BUILD.gn @@ -120,9 +120,7 @@ cast_test_group("cast_tests") { # --test-launcher-jobs=1 => so internal code can bind to port filters += [ "cast_shell_browser_test --no-sandbox --enable-local-file-accesses --enable-cma-media-pipeline --ozone-platform=cast --test-launcher-jobs=1" ] - # TODO(slan): Reenable this test for Desktop x86 when CQ supports it. - # (b/26429268) - if (use_alsa && !is_cast_desktop_build) { + if (use_alsa) { tests += [ "//chromecast/media/cma/backend/alsa:alsa_cma_backend_unittests" ] } diff --git a/chromecast/chromecast_tests.gypi b/chromecast/chromecast_tests.gypi index bc7b9ec..4bd94b8 100644 --- a/chromecast/chromecast_tests.gypi +++ b/chromecast/chromecast_tests.gypi @@ -189,9 +189,7 @@ ], }, 'conditions': [ - # TODO(slan): Reenable this test for Desktop x86 when CQ supports it. - # (b/26429268) - ['use_alsa==1 and is_cast_desktop_build==0', { + ['use_alsa==1', { 'dependencies': [ 'media/media.gyp:alsa_cma_backend_unittests', ], |