Add explicit |forceOnlineSignin| to user pod status
[chromium-blink-merge.git] / media / cast / cast_sender.gyp
blob7b4def6863fd8bd8c87c9d39cfcb5e5f6d7eb4b4
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.
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       ],
18       'sources': [
19         'cast_sender.h',
20         'cast_sender_impl.cc',
21         'cast_sender_impl.h',
22       ], # source
23       'dependencies': [
24         '<(DEPTH)/crypto/crypto.gyp:crypto',
25         '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport',
26         'audio_sender',
27         'congestion_control',
28         'rtcp/rtcp.gyp:cast_rtcp',
29         'video_sender',
30       ], # dependencies
31     },
32   ],