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

Side by Side Diff: webrtc/api/api.gyp

Issue 2411313003: Split audio mixer into interface and implementation. (Closed)
Patch Set: Capitalize Ssrc Created 4 years, 2 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) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 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 { 9 {
10 'includes': [ '../build/common.gypi', ], 10 'includes': [ '../build/common.gypi', ],
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 'type': 'static_library', 224 'type': 'static_library',
225 'dependencies': [ 225 'dependencies': [
226 '<(webrtc_root)/base/base.gyp:rtc_base_approved', 226 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
227 ], 227 ],
228 'sources': [ 228 'sources': [
229 'stats/rtcstats.h', 229 'stats/rtcstats.h',
230 'stats/rtcstats_objects.h', 230 'stats/rtcstats_objects.h',
231 'stats/rtcstatsreport.h', 231 'stats/rtcstatsreport.h',
232 ], 232 ],
233 }, # target rtc_stats_api 233 }, # target rtc_stats_api
234 {
235 # GN version: webrtc/api:audio_mixer_api
236 'target_name': 'audio_mixer_api',
237 'type': 'static_library',
238 'dependencies': [
239 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
240 ],
241 'sources': [
242 'audio/audio_mixer.h',
243 ],
244 }, # target rtc_stats_api
234 ], # targets 245 ], # targets
235 } 246 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698