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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 | 173 |
174 libs += [ "dxguid.lib" ] | 174 libs += [ "dxguid.lib" ] |
175 } | 175 } |
176 | 176 |
177 if (is_android) { | 177 if (is_android) { |
178 sources += [ | 178 sources += [ |
179 "android/audio_manager_android.cc", | 179 "android/audio_manager_android.cc", |
180 "android/audio_manager_android.h", | 180 "android/audio_manager_android.h", |
181 "android/audio_record_input.cc", | 181 "android/audio_record_input.cc", |
182 "android/audio_record_input.h", | 182 "android/audio_record_input.h", |
| 183 "android/audio_track_output_stream.cc", |
| 184 "android/audio_track_output_stream.h", |
183 "android/opensles_input.cc", | 185 "android/opensles_input.cc", |
184 "android/opensles_input.h", | 186 "android/opensles_input.h", |
185 "android/opensles_output.cc", | 187 "android/opensles_output.cc", |
186 "android/opensles_output.h", | 188 "android/opensles_output.h", |
187 "android/opensles_wrapper.cc", | 189 "android/opensles_wrapper.cc", |
188 ] | 190 ] |
189 deps += [ "//media/base/android:media_jni_headers" ] | 191 deps += [ "//media/base/android:media_jni_headers" ] |
190 } | 192 } |
191 | 193 |
192 if (is_linux) { | 194 if (is_linux) { |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 ] | 353 ] |
352 } | 354 } |
353 | 355 |
354 if (use_alsa) { | 356 if (use_alsa) { |
355 sources += [ | 357 sources += [ |
356 "alsa/alsa_output_unittest.cc", | 358 "alsa/alsa_output_unittest.cc", |
357 "audio_low_latency_input_output_unittest.cc", | 359 "audio_low_latency_input_output_unittest.cc", |
358 ] | 360 ] |
359 } | 361 } |
360 } | 362 } |
OLD | NEW |