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 'audio_sender/audio_sender.gypi', 8 'congestion_control/congestion_control.gypi', 9 'video_sender/video_sender.gypi', 10 ], 11 'targets': [ 12 { 13 'target_name': 'cast_sender', 14 'type': 'static_library', 15 'include_dirs': [ 16 '<(DEPTH)/', 17 '<(DEPTH)/third_party/', 18 '<(DEPTH)/third_party/webrtc/', 19 ], 20 'sources': [ 21 'cast_sender.h', 22 'cast_sender_impl.cc', 23 'cast_sender_impl.h', 24 ], # source 25 'dependencies': [ 26 '<(DEPTH)/crypto/crypto.gyp:crypto', 27 'audio_sender', 28 'congestion_control', 29 'net/pacing/paced_sender.gyp:cast_paced_sender', 30 'net/rtp_sender/rtp_sender.gyp:cast_rtp_sender', 31 'rtcp/rtcp.gyp:cast_rtcp', 32 'video_sender', 33 ], # dependencies 34 }, 35 ], 36} 37