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 28 matching lines...) Expand all Loading... |
39 '../url/url.gyp:url_unittests', | 39 '../url/url.gyp:url_unittests', |
40 ], | 40 ], |
41 'variables': { | 41 'variables': { |
42 'filters': [ | 42 'filters': [ |
43 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty eglib
c incompatibility | 43 # Disable OutOfMemoryDeathTest.ViaSharedLibraries due to gTrusty eglib
c incompatibility |
44 # See: crbug/428211 | 44 # See: crbug/428211 |
45 'base_unittests --gtest_filter=-OutOfMemoryDeathTest.ViaSharedLibrarie
s', | 45 'base_unittests --gtest_filter=-OutOfMemoryDeathTest.ViaSharedLibrarie
s', |
46 ], | 46 ], |
47 }, | 47 }, |
48 'conditions': [ | 48 'conditions': [ |
| 49 ['disable_display==0', { |
| 50 'dependencies': [ |
| 51 '../gpu/gpu.gyp:gpu_unittests', |
| 52 ], |
| 53 }], |
| 54 ], |
| 55 'conditions': [ |
49 ['OS!="android"', { | 56 ['OS!="android"', { |
50 'dependencies': [ | 57 'dependencies': [ |
51 'cast_shell_browser_test', | 58 'cast_shell_browser_test', |
52 ], | 59 ], |
53 'variables': { | 60 'variables': { |
54 'filters': [ | 61 'filters': [ |
55 'cast_shell_browser_test --no-sandbox', | 62 'cast_shell_browser_test --no-sandbox', |
56 ], | 63 ], |
57 }, | 64 }, |
58 }], | 65 }], |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 'HAS_OUT_OF_PROC_TEST_RUNNER', | 197 'HAS_OUT_OF_PROC_TEST_RUNNER', |
191 ], | 198 ], |
192 'sources': [ | 199 'sources': [ |
193 'browser/test/chromecast_shell_browser_test.cc', | 200 'browser/test/chromecast_shell_browser_test.cc', |
194 ], | 201 ], |
195 }, | 202 }, |
196 ], # end of targets | 203 ], # end of targets |
197 }], | 204 }], |
198 ], # end of conditions | 205 ], # end of conditions |
199 } | 206 } |
OLD | NEW |