| 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 }, |
| 41 'conditions': [ | 48 'conditions': [ |
| 42 ['OS!="android"', { | 49 ['OS!="android"', { |
| 43 'dependencies': [ | 50 'dependencies': [ |
| 44 'cast_shell_browser_test', | 51 'cast_shell_browser_test', |
| 45 ], | 52 ], |
| 53 'variables': { |
| 54 'filters': [ |
| 55 'cast_shell_browser_test --no-sandbox', |
| 56 ], |
| 57 }, |
| 46 }], | 58 }], |
| 47 ], | 59 ], |
| 48 'includes': ['build/tests/test_list.gypi'], | 60 'includes': ['build/tests/test_list.gypi'], |
| 49 }, | 61 }, |
| 50 # Builds all tests and the output lists of build/run targets for those tests
. | 62 # Builds all tests and the output lists of build/run targets for those tests
. |
| 51 # Note: producing a predetermined list of dependent inputs on which to | 63 # Note: producing a predetermined list of dependent inputs on which to |
| 52 # regenerate this output is difficult with GYP. This file is not | 64 # regenerate this output is difficult with GYP. This file is not |
| 53 # guaranteed to be regenerated outside of a clean build. | 65 # guaranteed to be regenerated outside of a clean build. |
| 54 { | 66 { |
| 55 'target_name': 'cast_test_lists', | 67 'target_name': 'cast_test_lists', |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 'HAS_OUT_OF_PROC_TEST_RUNNER', | 190 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 179 ], | 191 ], |
| 180 'sources': [ | 192 'sources': [ |
| 181 'browser/test/chromecast_shell_browser_test.cc', | 193 'browser/test/chromecast_shell_browser_test.cc', |
| 182 ], | 194 ], |
| 183 }, | 195 }, |
| 184 ], # end of targets | 196 ], # end of targets |
| 185 }], | 197 }], |
| 186 ], # end of conditions | 198 ], # end of conditions |
| 187 } | 199 } |
| OLD | NEW |