| 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 'includes': [ | |
| 10 'audio_sender/audio_sender.gypi', | |
| 11 'congestion_control/congestion_control.gypi', | |
| 12 'video_sender/video_sender.gypi', | |
| 13 ], | |
| 14 'targets': [ | |
| 15 { | |
| 16 'target_name': 'cast_sender', | |
| 17 'type': 'static_library', | |
| 18 'include_dirs': [ | |
| 19 '<(DEPTH)/', | |
| 20 ], | |
| 21 'sources': [ | |
| 22 'cast_sender.h', | |
| 23 'cast_sender_impl.cc', | |
| 24 'cast_sender_impl.h', | |
| 25 ], # source | |
| 26 'dependencies': [ | |
| 27 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', | |
| 28 'audio_sender', | |
| 29 'congestion_control', | |
| 30 'rtcp/rtcp.gyp:cast_rtcp', | |
| 31 'video_sender', | |
| 32 ], # dependencies | |
| 33 }, | |
| 34 ], | |
| 35 } | |
| OLD | NEW |