| 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 'includes': [ 'cast_testing_tools.gypi' ], | 6 'includes': [ 'cast_testing_tools.gypi' ], |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 # GN version: //media/cast:test_support | 9 # GN version: //media/cast:test_support |
| 10 'target_name': 'cast_test_utility', | 10 'target_name': 'cast_test_utility', |
| 11 'type': 'static_library', | 11 'type': 'static_library', |
| 12 'include_dirs': [ | 12 'include_dirs': [ |
| 13 '<(DEPTH)/', | 13 '<(DEPTH)/', |
| 14 ], | 14 ], |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 'cast_net', | 16 'cast_net', |
| 17 'cast_receiver', | 17 'cast_receiver', |
| 18 '<(DEPTH)/base/base.gyp:test_support_base', | 18 '<(DEPTH)/base/base.gyp:test_support_base', |
| 19 '<(DEPTH)/media/media.gyp:media_test_support', | 19 '<(DEPTH)/media/media.gyp:media_test_support', |
| 20 '<(DEPTH)/testing/gtest.gyp:gtest', | 20 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 21 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', | 21 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', |
| 22 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar', | 22 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar', |
| 23 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_test_support', | 23 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_test_support', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'test/fake_receiver_time_offset_estimator.cc', | 26 'test/fake_receiver_time_offset_estimator.cc', |
| 27 'test/fake_receiver_time_offset_estimator.h', | 27 'test/fake_receiver_time_offset_estimator.h', |
| 28 'test/fake_single_thread_task_runner.cc', | |
| 29 'test/fake_single_thread_task_runner.h', | |
| 30 'test/loopback_transport.cc', | 28 'test/loopback_transport.cc', |
| 31 'test/loopback_transport.h', | 29 'test/loopback_transport.h', |
| 32 'test/skewed_single_thread_task_runner.cc', | 30 'test/skewed_single_thread_task_runner.cc', |
| 33 'test/skewed_single_thread_task_runner.h', | 31 'test/skewed_single_thread_task_runner.h', |
| 34 'test/skewed_tick_clock.cc', | 32 'test/skewed_tick_clock.cc', |
| 35 'test/skewed_tick_clock.h', | 33 'test/skewed_tick_clock.h', |
| 36 'test/utility/audio_utility.cc', | 34 'test/utility/audio_utility.cc', |
| 37 'test/utility/audio_utility.h', | 35 'test/utility/audio_utility.h', |
| 38 'test/utility/barcode.cc', | 36 'test/utility/barcode.cc', |
| 39 'test/utility/barcode.h', | 37 'test/utility/barcode.h', |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck'
, | 208 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck'
, |
| 211 ], | 209 ], |
| 212 } | 210 } |
| 213 ], | 211 ], |
| 214 ], | 212 ], |
| 215 }, | 213 }, |
| 216 ], | 214 ], |
| 217 }], # test_isolation_mode != "noop" | 215 }], # test_isolation_mode != "noop" |
| 218 ], # conditions | 216 ], # conditions |
| 219 } | 217 } |
| OLD | NEW |