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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 "//testing/gmock", | 280 "//testing/gmock", |
281 ] | 281 ] |
282 configs += [ "//media:media_config" ] | 282 configs += [ "//media:media_config" ] |
283 } | 283 } |
284 | 284 |
285 source_set("unittests") { | 285 source_set("unittests") { |
286 testonly = true | 286 testonly = true |
287 sources = [ | 287 sources = [ |
288 "audio_input_controller_unittest.cc", | 288 "audio_input_controller_unittest.cc", |
289 "audio_input_unittest.cc", | 289 "audio_input_unittest.cc", |
290 "audio_manager_factory_unittest.cc", | |
291 "audio_manager_unittest.cc", | 290 "audio_manager_unittest.cc", |
292 "audio_output_controller_unittest.cc", | 291 "audio_output_controller_unittest.cc", |
293 "audio_output_device_unittest.cc", | 292 "audio_output_device_unittest.cc", |
294 "audio_output_proxy_unittest.cc", | 293 "audio_output_proxy_unittest.cc", |
295 "audio_power_monitor_unittest.cc", | 294 "audio_power_monitor_unittest.cc", |
296 "audio_streams_tracker_unittest.cc", | 295 "audio_streams_tracker_unittest.cc", |
297 "fake_audio_worker_unittest.cc", | 296 "fake_audio_worker_unittest.cc", |
298 "simple_sources_unittest.cc", | 297 "simple_sources_unittest.cc", |
299 "virtual_audio_input_stream_unittest.cc", | 298 "virtual_audio_input_stream_unittest.cc", |
300 "virtual_audio_output_stream_unittest.cc", | 299 "virtual_audio_output_stream_unittest.cc", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 ] | 352 ] |
354 } | 353 } |
355 | 354 |
356 if (use_alsa) { | 355 if (use_alsa) { |
357 sources += [ | 356 sources += [ |
358 "alsa/alsa_output_unittest.cc", | 357 "alsa/alsa_output_unittest.cc", |
359 "audio_low_latency_input_output_unittest.cc", | 358 "audio_low_latency_input_output_unittest.cc", |
360 ] | 359 ] |
361 } | 360 } |
362 } | 361 } |
OLD | NEW |