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

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

Issue 1921963004: Add support for multichannel playback to OpenSLES output. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Whoops, add file. Created 4 years, 8 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 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 if (is_android) { 181 if (is_android) {
182 sources += [ 182 sources += [
183 "android/audio_manager_android.cc", 183 "android/audio_manager_android.cc",
184 "android/audio_manager_android.h", 184 "android/audio_manager_android.h",
185 "android/audio_record_input.cc", 185 "android/audio_record_input.cc",
186 "android/audio_record_input.h", 186 "android/audio_record_input.h",
187 "android/opensles_input.cc", 187 "android/opensles_input.cc",
188 "android/opensles_input.h", 188 "android/opensles_input.h",
189 "android/opensles_output.cc", 189 "android/opensles_output.cc",
190 "android/opensles_output.h", 190 "android/opensles_output.h",
191 "android/opensles_util.cc",
192 "android/opensles_util.h",
191 "android/opensles_wrapper.cc", 193 "android/opensles_wrapper.cc",
192 ] 194 ]
193 deps += [ "//media/base/android:media_jni_headers" ] 195 deps += [ "//media/base/android:media_jni_headers" ]
194 } 196 }
195 197
196 if (is_linux) { 198 if (is_linux) {
197 sources += [ "linux/audio_manager_linux.cc" ] 199 sources += [ "linux/audio_manager_linux.cc" ]
198 } 200 }
199 201
200 if (use_alsa) { 202 if (use_alsa) {
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 ] 354 ]
353 } 355 }
354 356
355 if (use_alsa) { 357 if (use_alsa) {
356 sources += [ 358 sources += [
357 "alsa/alsa_output_unittest.cc", 359 "alsa/alsa_output_unittest.cc",
358 "audio_low_latency_input_output_unittest.cc", 360 "audio_low_latency_input_output_unittest.cc",
359 ] 361 ]
360 } 362 }
361 } 363 }
OLDNEW
« no previous file with comments | « no previous file | media/audio/android/opensles_input.cc » ('j') | media/audio/android/opensles_util.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698