Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(817)

Side by Side Diff: webrtc/webrtc.gyp

Issue 2059703002: Move webrtc/audio_*.h to webrtc/api/call (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed audio_sink.h Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 'test/test.gyp:*', 126 'test/test.gyp:*',
127 'webrtc_tests', 127 'webrtc_tests',
128 ], 128 ],
129 }], 129 }],
130 ], 130 ],
131 }, 131 },
132 { 132 {
133 'target_name': 'webrtc', 133 'target_name': 'webrtc',
134 'type': 'static_library', 134 'type': 'static_library',
135 'sources': [ 135 'sources': [
136 'audio_receive_stream.h',
137 'audio_send_stream.h',
138 'audio_state.h',
139 'call.h', 136 'call.h',
140 'config.h', 137 'config.h',
141 'transport.h', 138 'transport.h',
142 'video_receive_stream.h', 139 'video_receive_stream.h',
143 'video_send_stream.h', 140 'video_send_stream.h',
144 141
145 '<@(webrtc_audio_sources)', 142 '<@(webrtc_audio_sources)',
146 '<@(webrtc_call_sources)', 143 '<@(webrtc_call_sources)',
147 '<@(webrtc_video_sources)', 144 '<@(webrtc_video_sources)',
148 ], 145 ],
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 ], 178 ],
182 'defines': [ 179 'defines': [
183 'ENABLE_RTC_EVENT_LOG', 180 'ENABLE_RTC_EVENT_LOG',
184 ], 181 ],
185 }], 182 }],
186 ], 183 ],
187 }, 184 },
188 185
189 ], 186 ],
190 } 187 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698