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 'codecs/vp8/vp8_encoder.gypi', | 7 'codecs/vp8/vp8_encoder.gypi', |
8 ], | 8 ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'video_sender', | 11 'target_name': 'video_sender', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'include_dirs': [ | 13 'include_dirs': [ |
14 '<(DEPTH)/', | 14 '<(DEPTH)/', |
15 ], | 15 ], |
16 'sources': [ | 16 'sources': [ |
17 'external_video_encoder.h', | 17 'external_video_encoder.h', |
18 'external_video_encoder.cc', | 18 'external_video_encoder.cc', |
19 'video_encoder.h', | 19 'video_encoder.h', |
20 'video_encoder_impl.h', | 20 'video_encoder_impl.h', |
21 'video_encoder_impl.cc', | 21 'video_encoder_impl.cc', |
22 'video_sender.h', | 22 'video_sender.h', |
23 'video_sender.cc', | 23 'video_sender.cc', |
24 ], # source | 24 ], # source |
25 'dependencies': [ | 25 'dependencies': [ |
26 '<(DEPTH)/crypto/crypto.gyp:crypto', | |
27 '<(DEPTH)/media/cast/rtcp/rtcp.gyp:*', | 26 '<(DEPTH)/media/cast/rtcp/rtcp.gyp:*', |
28 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', | 27 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', |
29 '<(DEPTH)/media/media.gyp:media', | 28 '<(DEPTH)/media/media.gyp:media', |
30 '<(DEPTH)/media/media.gyp:shared_memory_support', | 29 '<(DEPTH)/media/media.gyp:shared_memory_support', |
31 'congestion_control', | 30 'congestion_control', |
32 'cast_vp8_encoder', | 31 'cast_vp8_encoder', |
33 ], | 32 ], |
34 }, | 33 }, |
35 ], | 34 ], |
36 } | 35 } |
OLD | NEW |