OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'includes': [ | 6 'includes': [ |
7 'audio_receiver/audio_receiver.gypi', | 7 'audio_receiver/audio_receiver.gypi', |
8 'video_receiver/video_receiver.gypi', | 8 'video_receiver/video_receiver.gypi', |
9 ], | 9 ], |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'cast_receiver', | 12 'target_name': 'cast_receiver', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'include_dirs': [ | 14 'include_dirs': [ |
15 '<(DEPTH)/', | 15 '<(DEPTH)/', |
16 '<(DEPTH)/third_party/', | 16 '<(DEPTH)/third_party/', |
17 '<(DEPTH)/third_party/webrtc/', | 17 '<(DEPTH)/third_party/webrtc/', |
18 ], | 18 ], |
19 'sources': [ | 19 'sources': [ |
20 'cast_receiver.h', | 20 'cast_receiver.h', |
21 'cast_receiver_impl.cc', | 21 'cast_receiver_impl.cc', |
22 'cast_receiver_impl.h', | 22 'cast_receiver_impl.h', |
23 ], # source | 23 ], # source |
24 'dependencies': [ | 24 'dependencies': [ |
25 'rtp_receiver/rtp_receiver.gyp:*', | 25 '<(DEPTH)/crypto/crypto.gyp:crypto', |
26 'cast_audio_receiver', | 26 'cast_audio_receiver', |
27 'cast_video_receiver', | 27 'cast_video_receiver', |
28 'framer/framer.gyp:cast_framer', | 28 'rtp_receiver/rtp_receiver.gyp:cast_rtp_receiver', |
29 'pacing/paced_sender.gyp:cast_paced_sender', | |
30 ], | 29 ], |
31 }, | 30 }, |
32 ], | 31 ], |
33 } | 32 } |
OLD | NEW |