| 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 'target_name': 'cast_test_utility', | 8 'target_name': 'cast_test_utility', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| 11 '<(DEPTH)/', | 11 '<(DEPTH)/', |
| 12 ], | 12 ], |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 'cast_receiver', | 14 'cast_receiver', |
| 15 'cast_transport', | 15 'cast_transport', |
| 16 '<(DEPTH)/testing/gtest.gyp:gtest', | 16 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 17 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', | 17 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', |
| 18 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 18 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 19 ], | 19 ], |
| 20 'sources': [ | 20 'sources': [ |
| 21 'test/fake_single_thread_task_runner.cc', | 21 'test/fake_single_thread_task_runner.cc', |
| 22 'test/fake_single_thread_task_runner.h', | 22 'test/fake_single_thread_task_runner.h', |
| 23 'test/skewed_single_thread_task_runner.cc', |
| 24 'test/skewed_single_thread_task_runner.h', |
| 25 'test/skewed_tick_clock.cc', |
| 26 'test/skewed_tick_clock.h', |
| 23 'test/utility/audio_utility.cc', | 27 'test/utility/audio_utility.cc', |
| 24 'test/utility/audio_utility.h', | 28 'test/utility/audio_utility.h', |
| 25 'test/utility/barcode.cc', | 29 'test/utility/barcode.cc', |
| 26 'test/utility/barcode.h', | 30 'test/utility/barcode.h', |
| 27 'test/utility/default_config.cc', | 31 'test/utility/default_config.cc', |
| 28 'test/utility/default_config.h', | 32 'test/utility/default_config.h', |
| 29 'test/utility/in_process_receiver.cc', | 33 'test/utility/in_process_receiver.cc', |
| 30 'test/utility/in_process_receiver.h', | 34 'test/utility/in_process_receiver.h', |
| 31 'test/utility/input_builder.cc', | 35 'test/utility/input_builder.cc', |
| 32 'test/utility/input_builder.h', | 36 'test/utility/input_builder.h', |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 'cast_test_utility', | 232 'cast_test_utility', |
| 229 '<(DEPTH)/base/base.gyp:base', | 233 '<(DEPTH)/base/base.gyp:base', |
| 230 '<(DEPTH)/media/media.gyp:media', | 234 '<(DEPTH)/media/media.gyp:media', |
| 231 ], | 235 ], |
| 232 'sources': [ | 236 'sources': [ |
| 233 'test/utility/udp_proxy_main.cc', | 237 'test/utility/udp_proxy_main.cc', |
| 234 ], | 238 ], |
| 235 } | 239 } |
| 236 ], # targets | 240 ], # targets |
| 237 } | 241 } |
| OLD | NEW |