| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 if (is_android) { | 183 if (is_android) { |
| 184 sources += [ | 184 sources += [ |
| 185 "android/audio_manager_android.cc", | 185 "android/audio_manager_android.cc", |
| 186 "android/audio_manager_android.h", | 186 "android/audio_manager_android.h", |
| 187 "android/audio_record_input.cc", | 187 "android/audio_record_input.cc", |
| 188 "android/audio_record_input.h", | 188 "android/audio_record_input.h", |
| 189 "android/opensles_input.cc", | 189 "android/opensles_input.cc", |
| 190 "android/opensles_input.h", | 190 "android/opensles_input.h", |
| 191 "android/opensles_output.cc", | 191 "android/opensles_output.cc", |
| 192 "android/opensles_output.h", | 192 "android/opensles_output.h", |
| 193 "android/opensles_util.cc", |
| 194 "android/opensles_util.h", |
| 193 "android/opensles_wrapper.cc", | 195 "android/opensles_wrapper.cc", |
| 194 ] | 196 ] |
| 195 deps += [ "//media/base/android:media_jni_headers" ] | 197 deps += [ "//media/base/android:media_jni_headers" ] |
| 196 } | 198 } |
| 197 | 199 |
| 198 if (is_linux) { | 200 if (is_linux) { |
| 199 sources += [ "linux/audio_manager_linux.cc" ] | 201 sources += [ "linux/audio_manager_linux.cc" ] |
| 200 } | 202 } |
| 201 | 203 |
| 202 if (use_alsa) { | 204 if (use_alsa) { |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 ] | 356 ] |
| 355 } | 357 } |
| 356 | 358 |
| 357 if (use_alsa) { | 359 if (use_alsa) { |
| 358 sources += [ | 360 sources += [ |
| 359 "alsa/alsa_output_unittest.cc", | 361 "alsa/alsa_output_unittest.cc", |
| 360 "audio_low_latency_input_output_unittest.cc", | 362 "audio_low_latency_input_output_unittest.cc", |
| 361 ] | 363 ] |
| 362 } | 364 } |
| 363 } | 365 } |
| OLD | NEW |