OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 'build/common.gypi', | 10 'build/common.gypi', |
11 'audio/webrtc_audio.gypi', | 11 'audio/webrtc_audio.gypi', |
12 'call/webrtc_call.gypi', | 12 'call/webrtc_call.gypi', |
13 'video/webrtc_video.gypi', | 13 'video/webrtc_video.gypi', |
14 ], | 14 ], |
15 'targets': [ | 15 'targets': [ |
16 { | 16 { |
17 'target_name': 'webrtc', | 17 'target_name': 'webrtc', |
18 'type': 'static_library', | 18 'type': 'static_library', |
19 'sources': [ | 19 'sources': [ |
20 'call.h', | 20 'call.h', |
21 'config.h', | 21 'config.h', |
22 'transport.h', | |
23 'video_receive_stream.h', | 22 'video_receive_stream.h', |
24 'video_send_stream.h', | 23 'video_send_stream.h', |
25 | 24 |
26 '<@(webrtc_audio_sources)', | 25 '<@(webrtc_audio_sources)', |
27 '<@(webrtc_call_sources)', | 26 '<@(webrtc_call_sources)', |
28 '<@(webrtc_video_sources)', | 27 '<@(webrtc_video_sources)', |
29 ], | 28 ], |
30 'dependencies': [ | 29 'dependencies': [ |
31 'common.gyp:*', | 30 'common.gyp:*', |
32 '<@(webrtc_audio_dependencies)', | 31 '<@(webrtc_audio_dependencies)', |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 119 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
121 'rtc_event_log_parser', | 120 'rtc_event_log_parser', |
122 'rtc_event_log_proto', | 121 'rtc_event_log_proto', |
123 'test/test.gyp:rtp_test_utils' | 122 'test/test.gyp:rtp_test_utils' |
124 ], | 123 ], |
125 }, | 124 }, |
126 ], | 125 ], |
127 }], | 126 }], |
128 ], # conditions | 127 ], # conditions |
129 } | 128 } |
OLD | NEW |