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("//media/media_options.gni") | 5 import("//media/media_options.gni") |
6 | 6 |
7 # When libpulse is not directly linked, use stubs to allow for dlopening of the | 7 # When libpulse is not directly linked, use stubs to allow for dlopening of the |
8 # binary. | 8 # binary. |
9 if (!linux_link_pulseaudio) { | 9 if (!linux_link_pulseaudio) { |
10 action("pulse_generate_stubs") { | 10 action("pulse_generate_stubs") { |
(...skipping 18 matching lines...) Expand all Loading... |
29 "-p", "media/audio/pulse", | 29 "-p", "media/audio/pulse", |
30 ] | 30 ] |
31 | 31 |
32 args += rebase_path(sources, root_build_dir) | 32 args += rebase_path(sources, root_build_dir) |
33 } | 33 } |
34 } | 34 } |
35 | 35 |
36 source_set("audio") { | 36 source_set("audio") { |
37 sources = [ | 37 sources = [ |
38 "agc_audio_stream.h", | 38 "agc_audio_stream.h", |
39 "audio_buffers_state.cc", | |
40 "audio_buffers_state.h", | |
41 "audio_device_name.cc", | 39 "audio_device_name.cc", |
42 "audio_device_name.h", | 40 "audio_device_name.h", |
43 "audio_device_thread.cc", | 41 "audio_device_thread.cc", |
44 "audio_device_thread.h", | 42 "audio_device_thread.h", |
45 "audio_input_controller.cc", | 43 "audio_input_controller.cc", |
46 "audio_input_controller.h", | 44 "audio_input_controller.h", |
47 "audio_input_device.cc", | 45 "audio_input_device.cc", |
48 "audio_input_device.h", | 46 "audio_input_device.h", |
49 "audio_input_ipc.cc", | 47 "audio_input_ipc.cc", |
50 "audio_input_ipc.h", | 48 "audio_input_ipc.h", |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 "win/core_audio_util_win_unittest.cc", | 317 "win/core_audio_util_win_unittest.cc", |
320 ] | 318 ] |
321 } | 319 } |
322 | 320 |
323 if (use_alsa) { | 321 if (use_alsa) { |
324 sources += [ | 322 sources += [ |
325 "alsa/alsa_output_unittest.cc", | 323 "alsa/alsa_output_unittest.cc", |
326 ] | 324 ] |
327 } | 325 } |
328 } | 326 } |
OLD | NEW |