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 'variables': { | 6 'variables': { |
7 'chromium_code': 1 | 7 'chromium_code': 1 |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'dependencies': [ | 115 'dependencies': [ |
116 'cast_shell_browser_test', | 116 'cast_shell_browser_test', |
117 'media/media.gyp:cast_media_unittests', | 117 'media/media.gyp:cast_media_unittests', |
118 ], | 118 ], |
119 'variables': { | 119 'variables': { |
120 'filters': [ | 120 'filters': [ |
121 'cast_shell_browser_test --no-sandbox --disable-gpu', | 121 'cast_shell_browser_test --no-sandbox --disable-gpu', |
122 ], | 122 ], |
123 }, | 123 }, |
124 }], | 124 }], |
| 125 ['disable_display==1', { |
| 126 'variables': { |
| 127 'filters': [ |
| 128 # These are not supported by the backend right now. b/21737919 |
| 129 'cast_media_unittests --gtest_filter=-AudioVideoPipelineDeviceTest
.VorbisPlayback:AudioVideoPipelineDeviceTest.WebmPlayback', |
| 130 ], |
| 131 } |
| 132 }], |
125 ], | 133 ], |
126 'includes': ['build/tests/test_list.gypi'], | 134 'includes': ['build/tests/test_list.gypi'], |
127 }, | 135 }, |
128 # Builds all tests and the output lists of build/run targets for those tests
. | 136 # Builds all tests and the output lists of build/run targets for those tests
. |
129 # Note: producing a predetermined list of dependent inputs on which to | 137 # Note: producing a predetermined list of dependent inputs on which to |
130 # regenerate this output is difficult with GYP. This file is not | 138 # regenerate this output is difficult with GYP. This file is not |
131 # guaranteed to be regenerated outside of a clean build. | 139 # guaranteed to be regenerated outside of a clean build. |
132 { | 140 { |
133 'target_name': 'cast_test_lists', | 141 'target_name': 'cast_test_lists', |
134 'type': 'none', | 142 'type': 'none', |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 'HAS_OUT_OF_PROC_TEST_RUNNER', | 266 'HAS_OUT_OF_PROC_TEST_RUNNER', |
259 ], | 267 ], |
260 'sources': [ | 268 'sources': [ |
261 'browser/test/chromecast_shell_browser_test.cc', | 269 'browser/test/chromecast_shell_browser_test.cc', |
262 ], | 270 ], |
263 }, | 271 }, |
264 ], # end of targets | 272 ], # end of targets |
265 }], | 273 }], |
266 ], # end of conditions | 274 ], # end of conditions |
267 } | 275 } |
OLD | NEW |