| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |