| 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 'variables': { | 6 'variables': { |
| 7 'include_cast_utility_apps%': 0, | 7 'include_cast_utility_apps%': 0, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'cast_test_utility', | 11 'target_name': 'cast_test_utility', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'include_dirs': [ | 13 'include_dirs': [ |
| 14 '<(DEPTH)/', | 14 '<(DEPTH)/', |
| 15 ], | 15 ], |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 'cast_receiver', | 17 'cast_receiver', |
| 18 'cast_transport', | 18 'cast_transport', |
| 19 '<(DEPTH)/testing/gtest.gyp:gtest', | 19 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 20 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', | 20 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', |
| 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 'test/fake_single_thread_task_runner.cc', | 24 'test/fake_single_thread_task_runner.cc', |
| 25 'test/fake_single_thread_task_runner.h', | 25 'test/fake_single_thread_task_runner.h', |
| 26 'test/skewed_single_thread_task_runner.cc', |
| 27 'test/skewed_single_thread_task_runner.h', |
| 28 'test/skewed_tick_clock.cc', |
| 29 'test/skewed_tick_clock.h', |
| 26 'test/utility/audio_utility.cc', | 30 'test/utility/audio_utility.cc', |
| 27 'test/utility/audio_utility.h', | 31 'test/utility/audio_utility.h', |
| 28 'test/utility/barcode.cc', | 32 'test/utility/barcode.cc', |
| 29 'test/utility/barcode.h', | 33 'test/utility/barcode.h', |
| 30 'test/utility/default_config.cc', | 34 'test/utility/default_config.cc', |
| 31 'test/utility/default_config.h', | 35 'test/utility/default_config.h', |
| 32 'test/utility/in_process_receiver.cc', | 36 'test/utility/in_process_receiver.cc', |
| 33 'test/utility/in_process_receiver.h', | 37 'test/utility/in_process_receiver.h', |
| 34 'test/utility/input_builder.cc', | 38 'test/utility/input_builder.cc', |
| 35 'test/utility/input_builder.h', | 39 'test/utility/input_builder.h', |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 '<(DEPTH)/media/media.gyp:media', | 226 '<(DEPTH)/media/media.gyp:media', |
| 223 ], | 227 ], |
| 224 'sources': [ | 228 'sources': [ |
| 225 'test/utility/udp_proxy_main.cc', | 229 'test/utility/udp_proxy_main.cc', |
| 226 ], | 230 ], |
| 227 }, | 231 }, |
| 228 ], # targets | 232 ], # targets |
| 229 }], | 233 }], |
| 230 ], # conditions | 234 ], # conditions |
| 231 } | 235 } |
| OLD | NEW |