| 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 27 matching lines...) Expand all Loading... |
| 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 'conditions': [ | 41 'conditions': [ |
| 42 ['target_arch=="arm" and OS!="android"', { | 42 ['target_arch=="arm" and OS!="android"', { |
| 43 'variables': { | 43 'variables': { |
| 44 'filters': [ | 44 'filters': [ |
| 45 # Run net_unittests first to avoid random failures due to slow pyt
hon startup | 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 | 46 # KeygenHandlerTest.SmokeTest and KeygenHandlerTest.ConcurrencyTes
t fail due to |
| 47 # readonly certdb (b/8153161) | 47 # readonly certdb (b/8153161) |
| 48 # Disable EndToEndTests/EndToEndTest (b/19100148) | 48 'net_unittests --gtest_filter=-KeygenHandlerTest.SmokeTest:KeygenHa
ndlerTest.ConcurrencyTest', |
| 49 'net_unittests --gtest_filter=-KeygenHandlerTest.SmokeTest:KeygenHa
ndlerTest.ConcurrencyTest:EndToEndTests/EndToEndTest.*', | |
| 50 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty e
glibc incompatibility (crbug/428211) | 49 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty e
glibc incompatibility (crbug/428211) |
| 51 # Disable ProcessMetricsTest.GetNumberOfThreads (b/15610509) | 50 # Disable ProcessMetricsTest.GetNumberOfThreads (b/15610509) |
| 52 # Disable ProcessUtilTest.* (need to define OS_ANDROID) | 51 # Disable ProcessUtilTest.* (need to define OS_ANDROID) |
| 53 # Disable StackContainer.BufferAlignment (don't support 16-byte al
ignment) | 52 # Disable StackContainer.BufferAlignment (don't support 16-byte al
ignment) |
| 54 # Disable SystemMetrics2Test.GetSystemMemoryInfo (buffers>0 can't
be guaranteed) | 53 # 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', | 54 'base_unittests --gtest_filter=-OutOfMemoryDeathTest.ViaSharedLibr
aries:ProcessMetricsTest.GetNumberOfThreads:ProcessUtilTest.*:StackContainer.Buf
ferAlignment:SystemMetrics2Test.GetSystemMemoryInfo', |
| 56 # DesktopCaptureDeviceTest.*: No capture device on Eureka | 55 # DesktopCaptureDeviceTest.*: No capture device on Eureka |
| 57 # Disable PepperGamepadHostTest.WaitForReply (pepper not supported
on Eureka) | 56 # Disable PepperGamepadHostTest.WaitForReply (pepper not supported
on Eureka) |
| 58 # Disable GpuDataManagerImplPrivateTest.SetGLStrings and | 57 # Disable GpuDataManagerImplPrivateTest.SetGLStrings and |
| 59 # RenderWidgetHostTest.Background because we disable the blacklist
to enable WebGL (b/16142554) | 58 # RenderWidgetHostTest.Background because we disable the blacklist
to enable WebGL (b/16142554) |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 'HAS_OUT_OF_PROC_TEST_RUNNER', | 239 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 241 ], | 240 ], |
| 242 'sources': [ | 241 'sources': [ |
| 243 'browser/test/chromecast_shell_browser_test.cc', | 242 'browser/test/chromecast_shell_browser_test.cc', |
| 244 ], | 243 ], |
| 245 }, | 244 }, |
| 246 ], # end of targets | 245 ], # end of targets |
| 247 }], | 246 }], |
| 248 ], # end of conditions | 247 ], # end of conditions |
| 249 } | 248 } |
| OLD | NEW |