| OLD | NEW |
| 1 # Copyright (c) 2014 Google Inc. All Rights Reserved. | 1 # Copyright (c) 2014 Google Inc. 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'cast_tests', | 8 'target_name': 'cast_tests', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 '../ipc/ipc.gyp:ipc_tests', | 31 '../ipc/ipc.gyp:ipc_tests', |
| 32 '../jingle/jingle.gyp:jingle_unittests', | 32 '../jingle/jingle.gyp:jingle_unittests', |
| 33 '../media/media.gyp:media_unittests', | 33 '../media/media.gyp:media_unittests', |
| 34 '../net/net.gyp:net_unittests', | 34 '../net/net.gyp:net_unittests', |
| 35 '../sandbox/sandbox.gyp:sandbox_linux_unittests', | 35 '../sandbox/sandbox.gyp:sandbox_linux_unittests', |
| 36 '../sql/sql.gyp:sql_unittests', | 36 '../sql/sql.gyp:sql_unittests', |
| 37 '../sync/sync.gyp:sync_unit_tests', | 37 '../sync/sync.gyp:sync_unit_tests', |
| 38 '../ui/base/ui_base_tests.gyp:ui_base_unittests', | 38 '../ui/base/ui_base_tests.gyp:ui_base_unittests', |
| 39 '../url/url.gyp:url_unittests', | 39 '../url/url.gyp:url_unittests', |
| 40 ], | 40 ], |
| 41 'variables': { | |
| 42 'filters': [ | |
| 43 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty eglib
c incompatibility | |
| 44 # See: crbug/428211 | |
| 45 'base_unittests --gtest_filter=-OutOfMemoryDeathTest.ViaSharedLibrarie
s', | |
| 46 ], | |
| 47 }, | |
| 48 'conditions': [ | 41 'conditions': [ |
| 42 ['target_arch=="arm" and OS!="android"', { |
| 43 'variables': { |
| 44 'filters': [ |
| 45 # Run net_unittests first to avoid random failures due to slow pyt
hon startup |
| 46 # KeygenHandlerTest.SmokeTest and KeygenHandlerTest.ConcurrencyTes
t fail due to |
| 47 # readonly certdb (b/8153161) |
| 48 # Disable EndToEndTests/EndToEndTest (b/19100148) |
| 49 'net_unittests --gtest_filter=-KeygenHandlerTest.SmokeTest:KeygenHa
ndlerTest.ConcurrencyTest:EndToEndTests/EndToEndTest.*', |
| 50 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty e
glibc incompatibility (crbug/428211) |
| 51 # Disable ProcessMetricsTest.GetNumberOfThreads (b/15610509) |
| 52 # Disable ProcessUtilTest.* (need to define OS_ANDROID) |
| 53 # Disable StackContainer.BufferAlignment (don't support 16-byte al
ignment) |
| 54 # Disable SystemMetrics2Test.GetSystemMemoryInfo (buffers>0 can't
be guaranteed) |
| 55 'base_unittests --gtest_filter=-OutOfMemoryDeathTest.ViaSharedLibr
aries:ProcessMetricsTest.GetNumberOfThreads:ProcessUtilTest.*:StackContainer.Buf
ferAlignment:SystemMetrics2Test.GetSystemMemoryInfo', |
| 56 # DesktopCaptureDeviceTest.*: No capture device on Eureka |
| 57 # Disable PepperGamepadHostTest.WaitForReply (pepper not supported
on Eureka) |
| 58 # Disable GpuDataManagerImplPrivateTest.SetGLStrings and |
| 59 # RenderWidgetHostTest.Background because we disable the blacklist
to enable WebGL (b/16142554) |
| 60 'content_unittests --gtest_filter=-DOMStorageDatabaseTest.TestCanO
penAndReadWebCoreDatabase:DesktopCaptureDeviceTest.Capture:GamepadProviderTest.P
ollingAccess:GpuDataManagerImplPrivateTest.SetGLStrings:PepperGamepadHostTest.Wa
itForReply:RenderWidgetHostTest.Background', |
| 61 # Disable VP9 related tests (b/18593324) |
| 62 # PipelineIntegrationTest.BasicPlayback_MediaSource_VP9_WebM |
| 63 # PipelineIntegrationTest.BasicPlayback_VideoOnly_VP9_WebM |
| 64 # PipelineIntegrationTest.BasicPlayback_VP9* |
| 65 # PipelineIntegrationTest.P444_VP9_WebM |
| 66 # Disable VP8A tests (b/18593324) |
| 67 # PipelineIntegrationTest.BasicPlayback_VP8A* |
| 68 # Disable OpusAudioDecoderTest/AudioDecoderTest.ProduceAudioSample
s/0 (unit |
| 69 # test fails when Opus decoder uses fixed-point) |
| 70 # Due to b/16456550, disable the following four test cases: |
| 71 # AudioOutputControllerTest.PlayDivertSwitchDeviceRevertClose |
| 72 # AudioOutputControllerTest.PlaySwitchDeviceClose |
| 73 # AudioStreamHandlerTest.Play |
| 74 # SoundsManagerTest.Play |
| 75 # Disable AudioStreamHandlerTest.ConsecutivePlayRequests (b/165392
93) |
| 76 'media_unittests --gtest_filter=-AudioOutputControllerTest.PlayDiv
ertSwitchDeviceRevertClose:AudioOutputControllerTest.PlaySwitchDeviceClose:Audio
StreamHandlerTest.Play:AudioStreamHandlerTest.ConsecutivePlayRequests:PipelineIn
tegrationTest.BasicPlayback_MediaSource_VP9_WebM:PipelineIntegrationTest.BasicPl
ayback_VideoOnly_VP9_WebM:PipelineIntegrationTest.BasicPlayback_VP9*:PipelineInt
egrationTest.P444_VP9_WebM:PipelineIntegrationTest.BasicPlayback_VP8A*:OpusAudio
DecoderTest/AudioDecoderTest.ProduceAudioSamples/0:SoundsManagerTest.Play', |
| 77 'sync_unit_tests --gtest_filter=-SyncHttpBridgeTest.*', |
| 78 # DoAppendUTF8Invalid fails because of dcheck_always_on flag in En
g builds |
| 79 'url_unittests --gtest_filter=-URLCanonTest.DoAppendUTF8Invalid', |
| 80 ], |
| 81 }, |
| 82 }, { # else "x86" or "android" |
| 83 'variables': { |
| 84 'filters': [ |
| 85 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty e
glibc incompatibility |
| 86 # See: crbug/428211 |
| 87 'base_unittests --gtest_filter=-OutOfMemoryDeathTest.ViaSharedLibr
aries', |
| 88 # Disable PipelineIntegrationTest.BasicPlayback_MediaSource_VP9_We
bM (not supported) |
| 89 'media_unittests --gtest_filter=-PipelineIntegrationTest.BasicPlay
back_MediaSource_VP9_WebM', |
| 90 ], |
| 91 } |
| 92 }], |
| 49 ['disable_display==0', { | 93 ['disable_display==0', { |
| 50 'dependencies': [ | 94 'dependencies': [ |
| 51 '../gpu/gpu.gyp:gpu_unittests', | 95 '../gpu/gpu.gyp:gpu_unittests', |
| 52 ], | 96 ], |
| 53 }], | 97 }], |
| 54 ['OS!="android"', { | 98 ['OS!="android"', { |
| 55 'dependencies': [ | 99 'dependencies': [ |
| 56 'cast_shell_browser_test', | 100 'cast_shell_browser_test', |
| 57 ], | 101 ], |
| 58 'variables': { | 102 'variables': { |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 'HAS_OUT_OF_PROC_TEST_RUNNER', | 240 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 197 ], | 241 ], |
| 198 'sources': [ | 242 'sources': [ |
| 199 'browser/test/chromecast_shell_browser_test.cc', | 243 'browser/test/chromecast_shell_browser_test.cc', |
| 200 ], | 244 ], |
| 201 }, | 245 }, |
| 202 ], # end of targets | 246 ], # end of targets |
| 203 }], | 247 }], |
| 204 ], # end of conditions | 248 ], # end of conditions |
| 205 } | 249 } |
| OLD | NEW |