summaryrefslogtreecommitdiff
path: root/media/cast/cast_receiver.gyp
blob: 30f40df0c17b31cfe29262da12e231b1f19ad369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'includes': [
     'audio_receiver/audio_receiver.gypi',
     'video_receiver/video_receiver.gypi',
  ],
  'targets': [
    {
      'target_name': 'cast_receiver',
      'type': 'static_library',
      'include_dirs': [
        '<(DEPTH)/',
        '<(DEPTH)/third_party/',
        '<(DEPTH)/third_party/webrtc/',
      ],
      'sources': [
        'cast_receiver.h',
        'cast_receiver_impl.cc',
        'cast_receiver_impl.h',
      ], # source
      'dependencies': [
        'rtp_receiver/rtp_receiver.gyp:*',
        'cast_audio_receiver',
        'cast_video_receiver',
        'framer/framer.gyp:cast_framer',
        'pacing/paced_sender.gyp:cast_paced_sender',
      ],
    },
  ],
}