| OLD | NEW |
| (Empty) |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 'targets': [ | |
| 10 { | |
| 11 'target_name': 'cast_test_utility', | |
| 12 'type': 'static_library', | |
| 13 'include_dirs': [ | |
| 14 '<(DEPTH)/', | |
| 15 ], | |
| 16 'dependencies': [ | |
| 17 '../../cast_receiver.gyp:cast_receiver', | |
| 18 '../../transport/cast_transport.gyp:cast_transport', | |
| 19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | |
| 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | |
| 21 '<(DEPTH)/testing/gtest.gyp:gtest', | |
| 22 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', | |
| 23 | |
| 24 ], | |
| 25 'sources': [ | |
| 26 '<(DEPTH)/media/cast/test/fake_single_thread_task_runner.cc', | |
| 27 '<(DEPTH)/media/cast/test/fake_single_thread_task_runner.h', | |
| 28 'audio_utility.cc', | |
| 29 'audio_utility.h', | |
| 30 'barcode.cc', | |
| 31 'barcode.h', | |
| 32 'default_config.cc', | |
| 33 'default_config.h', | |
| 34 'in_process_receiver.cc', | |
| 35 'in_process_receiver.h', | |
| 36 'input_builder.cc', | |
| 37 'input_builder.h', | |
| 38 'standalone_cast_environment.cc', | |
| 39 'standalone_cast_environment.h', | |
| 40 'video_utility.cc', | |
| 41 'video_utility.h', | |
| 42 'udp_proxy.cc', | |
| 43 'udp_proxy.h', | |
| 44 ], # source | |
| 45 }, | |
| 46 { | |
| 47 'target_name': 'generate_barcode_video', | |
| 48 'type': 'executable', | |
| 49 'include_dirs': [ | |
| 50 '<(DEPTH)/', | |
| 51 ], | |
| 52 'dependencies': [ | |
| 53 '<(DEPTH)/media/media.gyp:media', | |
| 54 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', | |
| 55 ], | |
| 56 'sources': [ | |
| 57 '<(DEPTH)/media/cast/test/utility/generate_barcode_video.cc', | |
| 58 ], | |
| 59 }, | |
| 60 { | |
| 61 'target_name': 'generate_timecode_audio', | |
| 62 'type': 'executable', | |
| 63 'include_dirs': [ | |
| 64 '<(DEPTH)/', | |
| 65 ], | |
| 66 'dependencies': [ | |
| 67 '<(DEPTH)/media/cast/cast_config.gyp:cast_config', | |
| 68 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', | |
| 69 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', | |
| 70 '<(DEPTH)/media/media.gyp:media', | |
| 71 ], | |
| 72 'sources': [ | |
| 73 '<(DEPTH)/media/cast/test/utility/generate_timecode_audio.cc', | |
| 74 ], | |
| 75 }, | |
| 76 { | |
| 77 'target_name': 'udp_proxy', | |
| 78 'type': 'executable', | |
| 79 'include_dirs': [ | |
| 80 '<(DEPTH)/', | |
| 81 ], | |
| 82 'dependencies': [ | |
| 83 '<(DEPTH)/media/media.gyp:media', | |
| 84 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', | |
| 85 ], | |
| 86 'sources': [ | |
| 87 '<(DEPTH)/media/cast/test/utility/udp_proxy_main.cc', | |
| 88 ], | |
| 89 }, | |
| 90 ], | |
| 91 } | |
| OLD | NEW |