| 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/audio_track_output_stream.cc", |
| 212 "android/audio_track_output_stream.h", |
| 211 "android/muteable_audio_output_stream.h", | 213 "android/muteable_audio_output_stream.h", |
| 212 "android/opensles_input.cc", | 214 "android/opensles_input.cc", |
| 213 "android/opensles_input.h", | 215 "android/opensles_input.h", |
| 214 "android/opensles_output.cc", | 216 "android/opensles_output.cc", |
| 215 "android/opensles_output.h", | 217 "android/opensles_output.h", |
| 216 "android/opensles_util.cc", | 218 "android/opensles_util.cc", |
| 217 "android/opensles_util.h", | 219 "android/opensles_util.h", |
| 218 "android/opensles_wrapper.cc", | 220 "android/opensles_wrapper.cc", |
| 219 ] | 221 ] |
| 220 deps += [ "//media/base/android:media_jni_headers" ] | 222 deps += [ "//media/base/android:media_jni_headers" ] |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 ] | 401 ] |
| 400 } | 402 } |
| 401 | 403 |
| 402 if (use_alsa) { | 404 if (use_alsa) { |
| 403 sources += [ | 405 sources += [ |
| 404 "alsa/alsa_output_unittest.cc", | 406 "alsa/alsa_output_unittest.cc", |
| 405 "audio_low_latency_input_output_unittest.cc", | 407 "audio_low_latency_input_output_unittest.cc", |
| 406 ] | 408 ] |
| 407 } | 409 } |
| 408 } | 410 } |
| OLD | NEW |