| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 ], | 162 ], |
| 163 } | 163 } |
| 164 }], | 164 }], |
| 165 ['disable_display==0', { | 165 ['disable_display==0', { |
| 166 'dependencies': [ | 166 'dependencies': [ |
| 167 '../gpu/gpu.gyp:gpu_unittests', | 167 '../gpu/gpu.gyp:gpu_unittests', |
| 168 ], | 168 ], |
| 169 }], | 169 }], |
| 170 ['OS!="android"', { | 170 ['OS!="android"', { |
| 171 'dependencies': [ | 171 'dependencies': [ |
| 172 'cast_renderer_media_unittests', |
| 172 'cast_shell_unittests', | 173 'cast_shell_unittests', |
| 173 'cast_shell_browser_test', | 174 'cast_shell_browser_test', |
| 174 'media/media.gyp:cast_media_unittests', | 175 'media/media.gyp:cast_media_unittests', |
| 175 ], | 176 ], |
| 176 'variables': { | 177 'variables': { |
| 177 'filters': [ | 178 'filters': [ |
| 178 'cast_shell_browser_test --no-sandbox --disable-gpu', | 179 'cast_shell_browser_test --no-sandbox --disable-gpu', |
| 179 ], | 180 ], |
| 180 }, | 181 }, |
| 181 }], | 182 }], |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 '-t', '<(test_inputs_dir)', | 303 '-t', '<(test_inputs_dir)', |
| 303 '-o', '<@(_outputs)', | 304 '-o', '<@(_outputs)', |
| 304 'pack_run', | 305 'pack_run', |
| 305 ], | 306 ], |
| 306 } | 307 } |
| 307 ], | 308 ], |
| 308 }, | 309 }, |
| 309 ], # end of targets | 310 ], # end of targets |
| 310 }, { # OS!="android" | 311 }, { # OS!="android" |
| 311 'targets': [ | 312 'targets': [ |
| 313 { |
| 314 'target_name': 'cast_renderer_media_unittests', |
| 315 'type': '<(gtest_target_type)', |
| 316 'dependencies': [ |
| 317 'cast_shell_media', |
| 318 '../base/base.gyp:run_all_unittests', |
| 319 '../testing/gmock.gyp:gmock', |
| 320 '../testing/gtest.gyp:gtest', |
| 321 ], |
| 322 'sources': [ |
| 323 'renderer/media/demuxer_stream_adapter_unittest.cc', |
| 324 'renderer/media/demuxer_stream_for_test.cc', |
| 325 'renderer/media/demuxer_stream_for_test.h', |
| 326 'renderer/media/multi_demuxer_stream_adapter_unittest.cc', |
| 327 ], |
| 328 }, # end of cast_renderer_media_unittests |
| 312 # GN target: //chromecast/browser:test_support | 329 # GN target: //chromecast/browser:test_support |
| 313 { | 330 { |
| 314 'target_name': 'cast_shell_test_support', | 331 'target_name': 'cast_shell_test_support', |
| 315 'type': '<(component)', | 332 'type': '<(component)', |
| 316 'defines': [ | 333 'defines': [ |
| 317 'HAS_OUT_OF_PROC_TEST_RUNNER', | 334 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 318 ], | 335 ], |
| 319 'dependencies': [ | 336 'dependencies': [ |
| 320 'cast_shell_core', | 337 'cast_shell_core', |
| 321 '../content/content_shell_and_tests.gyp:content_browser_test_support
', | 338 '../content/content_shell_and_tests.gyp:content_browser_test_support
', |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 '-a', '<(test_additional_options)', | 414 '-a', '<(test_additional_options)', |
| 398 'pack_run', | 415 'pack_run', |
| 399 ], | 416 ], |
| 400 } | 417 } |
| 401 ], | 418 ], |
| 402 }, | 419 }, |
| 403 ], # end of targets | 420 ], # end of targets |
| 404 }], | 421 }], |
| 405 ], # end of conditions | 422 ], # end of conditions |
| 406 } | 423 } |
| OLD | NEW |