| 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 'includes': [ | |
| 7 'codecs/vp8/vp8_encoder.gypi', | |
| 8 ], | |
| 9 'targets': [ | |
| 10 { | |
| 11 'target_name': 'video_sender', | |
| 12 'type': 'static_library', | |
| 13 'include_dirs': [ | |
| 14 '<(DEPTH)/', | |
| 15 ], | |
| 16 'sources': [ | |
| 17 'external_video_encoder.h', | |
| 18 'external_video_encoder.cc', | |
| 19 'fake_software_video_encoder.h', | |
| 20 'fake_software_video_encoder.cc', | |
| 21 'software_video_encoder.h', | |
| 22 'video_encoder.h', | |
| 23 'video_encoder_impl.h', | |
| 24 'video_encoder_impl.cc', | |
| 25 'video_sender.h', | |
| 26 'video_sender.cc', | |
| 27 ], # source | |
| 28 'dependencies': [ | |
| 29 '<(DEPTH)/media/cast/rtcp/rtcp.gyp:*', | |
| 30 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', | |
| 31 '<(DEPTH)/media/media.gyp:media', | |
| 32 '<(DEPTH)/media/media.gyp:shared_memory_support', | |
| 33 'congestion_control', | |
| 34 'cast_vp8_encoder', | |
| 35 ], | |
| 36 }, | |
| 37 ], | |
| 38 } | |
| OLD | NEW |