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 'audio_receive_stream.h', | |
21 'audio_send_stream.h', | |
22 'audio_state.h', | |
23 'call.h', | 20 'call.h', |
24 'config.h', | 21 'config.h', |
25 'transport.h', | 22 'transport.h', |
26 'video_receive_stream.h', | 23 'video_receive_stream.h', |
27 'video_send_stream.h', | 24 'video_send_stream.h', |
28 | 25 |
29 '<@(webrtc_audio_sources)', | 26 '<@(webrtc_audio_sources)', |
30 '<@(webrtc_call_sources)', | 27 '<@(webrtc_call_sources)', |
31 '<@(webrtc_video_sources)', | 28 '<@(webrtc_video_sources)', |
32 ], | 29 ], |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 112 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
116 'rtc_event_log_parser', | 113 'rtc_event_log_parser', |
117 'rtc_event_log_proto', | 114 'rtc_event_log_proto', |
118 'test/test.gyp:rtp_test_utils' | 115 'test/test.gyp:rtp_test_utils' |
119 ], | 116 ], |
120 }, | 117 }, |
121 ], | 118 ], |
122 }], | 119 }], |
123 ], # conditions | 120 ], # conditions |
124 } | 121 } |
OLD | NEW |