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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 }, | 101 }, |
102 { | 102 { |
103 'target_name': 'webrtc', | 103 'target_name': 'webrtc', |
104 'type': 'static_library', | 104 'type': 'static_library', |
105 'sources': [ | 105 'sources': [ |
106 'audio_receive_stream.h', | 106 'audio_receive_stream.h', |
107 'audio_send_stream.h', | 107 'audio_send_stream.h', |
108 'audio_state.h', | 108 'audio_state.h', |
109 'call.h', | 109 'call.h', |
110 'config.h', | 110 'config.h', |
111 'frame_callback.h', | |
112 'stream.h', | 111 'stream.h', |
113 'transport.h', | 112 'transport.h', |
114 'video_receive_stream.h', | 113 'video_receive_stream.h', |
115 'video_send_stream.h', | 114 'video_send_stream.h', |
116 | 115 |
117 '<@(webrtc_audio_sources)', | 116 '<@(webrtc_audio_sources)', |
118 '<@(webrtc_call_sources)', | 117 '<@(webrtc_call_sources)', |
119 '<@(webrtc_video_sources)', | 118 '<@(webrtc_video_sources)', |
120 ], | 119 ], |
121 'dependencies': [ | 120 'dependencies': [ |
(...skipping 30 matching lines...) Expand all Loading... |
152 ], | 151 ], |
153 'defines': [ | 152 'defines': [ |
154 'ENABLE_RTC_EVENT_LOG', | 153 'ENABLE_RTC_EVENT_LOG', |
155 ], | 154 ], |
156 }], | 155 }], |
157 ], | 156 ], |
158 }, | 157 }, |
159 | 158 |
160 ], | 159 ], |
161 } | 160 } |
OLD | NEW |