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 'variables': { | 9 'variables': { |
10 'webrtc_all_dependencies': [ | 10 'webrtc_all_dependencies': [ |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 'test/webrtc_test_common.gyp:*', | 103 'test/webrtc_test_common.gyp:*', |
104 'webrtc_tests', | 104 'webrtc_tests', |
105 ], | 105 ], |
106 }], | 106 }], |
107 ], | 107 ], |
108 }, | 108 }, |
109 { | 109 { |
110 'target_name': 'webrtc', | 110 'target_name': 'webrtc', |
111 'type': 'static_library', | 111 'type': 'static_library', |
112 'sources': [ | 112 'sources': [ |
113 'audio_receive_stream.h', | |
114 'audio_send_stream.h', | 113 'audio_send_stream.h', |
115 'audio_state.h', | 114 'audio_state.h', |
116 'call.h', | 115 'call.h', |
117 'config.h', | 116 'video_frame.h', |
118 'frame_callback.h', | 117 'video_decoder.h', |
119 'stream.h', | 118 'video_encoder.h', |
120 'transport.h', | |
121 'video_receive_stream.h', | |
122 'video_renderer.h', | |
123 'video_send_stream.h', | |
124 | |
125 '<@(webrtc_audio_sources)', | 119 '<@(webrtc_audio_sources)', |
126 '<@(webrtc_call_sources)', | 120 '<@(webrtc_call_sources)', |
127 '<@(webrtc_video_sources)', | 121 '<@(webrtc_video_sources)', |
128 ], | 122 ], |
129 'dependencies': [ | 123 'dependencies': [ |
130 'common.gyp:*', | 124 'common.gyp:*', |
131 '<@(webrtc_audio_dependencies)', | 125 '<@(webrtc_audio_dependencies)', |
132 '<@(webrtc_call_dependencies)', | 126 '<@(webrtc_call_dependencies)', |
133 '<@(webrtc_video_dependencies)', | 127 '<@(webrtc_video_dependencies)', |
134 'rtc_event_log', | 128 'rtc_event_log', |
(...skipping 25 matching lines...) Expand all Loading... |
160 ], | 154 ], |
161 'defines': [ | 155 'defines': [ |
162 'ENABLE_RTC_EVENT_LOG', | 156 'ENABLE_RTC_EVENT_LOG', |
163 ], | 157 ], |
164 }], | 158 }], |
165 ], | 159 ], |
166 }, | 160 }, |
167 | 161 |
168 ], | 162 ], |
169 } | 163 } |
OLD | NEW |