Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. 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 # GN version: //media/cast:test_support | 8 # GN version: //media/cast:test_support |
| 9 'target_name': 'cast_test_utility', | 9 'target_name': 'cast_test_utility', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '<(DEPTH)/', | 12 '<(DEPTH)/', |
| 13 ], | 13 ], |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 'cast_net', | 15 'cast_net', |
| 16 'cast_receiver', | 16 'cast_receiver', |
| 17 '<(DEPTH)/testing/gtest.gyp:gtest', | 17 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 18 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 18 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 19 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', | 19 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', |
| 20 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar', | 20 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar', |
| 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 'test/loopback_transport.cc', | |
| 25 'test/loopback_transport.h', | |
| 26 'test/fake_media_source.cc', | 24 'test/fake_media_source.cc', |
| 27 'test/fake_media_source.h', | 25 'test/fake_media_source.h', |
| 28 'test/fake_single_thread_task_runner.cc', | 26 'test/fake_single_thread_task_runner.cc', |
| 29 'test/fake_single_thread_task_runner.h', | 27 'test/fake_single_thread_task_runner.h', |
| 28 'test/loopback_transport.cc', | |
| 29 'test/loopback_transport.h', | |
| 30 'test/skewed_single_thread_task_runner.cc', | 30 'test/skewed_single_thread_task_runner.cc', |
| 31 'test/skewed_single_thread_task_runner.h', | 31 'test/skewed_single_thread_task_runner.h', |
| 32 'test/skewed_tick_clock.cc', | 32 'test/skewed_tick_clock.cc', |
| 33 'test/skewed_tick_clock.h', | 33 'test/skewed_tick_clock.h', |
| 34 'test/utility/audio_utility.cc', | 34 'test/utility/audio_utility.cc', |
| 35 'test/utility/audio_utility.h', | 35 'test/utility/audio_utility.h', |
| 36 'test/utility/barcode.cc', | 36 'test/utility/barcode.cc', |
| 37 'test/utility/barcode.h', | 37 'test/utility/barcode.h', |
| 38 'test/utility/default_config.cc', | 38 'test/utility/default_config.cc', |
| 39 'test/utility/default_config.h', | 39 'test/utility/default_config.h', |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 356 '<(DEPTH)/base/base.gyp:test_support_base', | 356 '<(DEPTH)/base/base.gyp:test_support_base', |
| 357 '<(DEPTH)/testing/gmock.gyp:gmock', | 357 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 358 '<(DEPTH)/testing/gtest.gyp:gtest', | 358 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 359 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 359 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 360 ], | 360 ], |
| 361 'sources': [ | 361 'sources': [ |
| 362 'sender/h264_vt_encoder_unittest.cc', | 362 'sender/h264_vt_encoder_unittest.cc', |
| 363 ], | 363 ], |
| 364 }], # targets | 364 }], # targets |
| 365 }], # OS=="ios" or OS=="mac" | 365 }], # OS=="ios" or OS=="mac" |
| 366 ['test_isolation_mode != "noop"', { | |
| 367 'targets': [ | |
| 368 { | |
| 369 'target_name': 'cast_unittests_run', | |
| 370 'type': 'none', | |
| 371 'dependencies': [ | |
| 372 'cast_unittests', | |
| 373 ], | |
| 374 'includes': [ | |
| 375 '../../build/isolate.gypi', | |
| 376 ], | |
|
M-A Ruel
2015/02/25 22:44:25
alignment?
scottmg
2015/02/25 22:48:51
Done.
| |
| 377 'sources': [ | |
| 378 'cast_unittests.isolate', | |
| 379 ], | |
| 380 }, | |
| 381 ], | |
| 382 }], | |
| 366 ], # conditions | 383 ], # conditions |
| 367 } | 384 } |
| OLD | NEW |