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

Side by Side Diff: media/audio/BUILD.gn

Issue 2917203002: Add MuteableAudioOutputStream interface to export SetMute(). (Closed)
Patch Set: Bug fixed Created 3 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
« no previous file with comments | « no previous file | media/audio/android/audio_manager_android.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//media/media_options.gni") 6 import("//media/media_options.gni")
7 7
8 # When libpulse is not directly linked, use stubs to allow for dlopening of the 8 # When libpulse is not directly linked, use stubs to allow for dlopening of the
9 # binary. 9 # binary.
10 if (!link_pulseaudio) { 10 if (!link_pulseaudio) {
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 "winmm.lib", 201 "winmm.lib",
202 ] 202 ]
203 } 203 }
204 204
205 if (is_android) { 205 if (is_android) {
206 sources += [ 206 sources += [
207 "android/audio_manager_android.cc", 207 "android/audio_manager_android.cc",
208 "android/audio_manager_android.h", 208 "android/audio_manager_android.h",
209 "android/audio_record_input.cc", 209 "android/audio_record_input.cc",
210 "android/audio_record_input.h", 210 "android/audio_record_input.h",
211 "android/muteable_audio_output_stream.h",
211 "android/opensles_input.cc", 212 "android/opensles_input.cc",
212 "android/opensles_input.h", 213 "android/opensles_input.h",
213 "android/opensles_output.cc", 214 "android/opensles_output.cc",
214 "android/opensles_output.h", 215 "android/opensles_output.h",
215 "android/opensles_util.cc", 216 "android/opensles_util.cc",
216 "android/opensles_util.h", 217 "android/opensles_util.h",
217 "android/opensles_wrapper.cc", 218 "android/opensles_wrapper.cc",
218 ] 219 ]
219 deps += [ "//media/base/android:media_jni_headers" ] 220 deps += [ "//media/base/android:media_jni_headers" ]
220 } 221 }
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 ] 399 ]
399 } 400 }
400 401
401 if (use_alsa) { 402 if (use_alsa) {
402 sources += [ 403 sources += [
403 "alsa/alsa_output_unittest.cc", 404 "alsa/alsa_output_unittest.cc",
404 "audio_low_latency_input_output_unittest.cc", 405 "audio_low_latency_input_output_unittest.cc",
405 ] 406 ]
406 } 407 }
407 } 408 }
OLDNEW
« no previous file with comments | « no previous file | media/audio/android/audio_manager_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698