| 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 "//media:media_config", | 343 "//media:media_config", |
| 344 ] | 344 ] |
| 345 | 345 |
| 346 if (is_android) { | 346 if (is_android) { |
| 347 sources += [ "android/audio_android_unittest.cc" ] | 347 sources += [ "android/audio_android_unittest.cc" ] |
| 348 deps += [ "//ui/gl" ] | 348 deps += [ "//ui/gl" ] |
| 349 } | 349 } |
| 350 | 350 |
| 351 if (is_mac) { | 351 if (is_mac) { |
| 352 sources += [ | 352 sources += [ |
| 353 "audio_low_latency_input_output_unittest.cc", |
| 353 "mac/audio_auhal_mac_unittest.cc", | 354 "mac/audio_auhal_mac_unittest.cc", |
| 354 "mac/audio_device_listener_mac_unittest.cc", | 355 "mac/audio_device_listener_mac_unittest.cc", |
| 355 "mac/audio_low_latency_input_mac_unittest.cc", | 356 "mac/audio_low_latency_input_mac_unittest.cc", |
| 356 ] | 357 ] |
| 357 } | 358 } |
| 358 | 359 |
| 359 if (is_chromeos || is_chromecast) { | 360 if (is_chromeos || is_chromecast) { |
| 360 sources += [ | 361 sources += [ |
| 361 "sounds/audio_stream_handler_unittest.cc", | 362 "sounds/audio_stream_handler_unittest.cc", |
| 362 "sounds/sounds_manager_unittest.cc", | 363 "sounds/sounds_manager_unittest.cc", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 387 ] | 388 ] |
| 388 } | 389 } |
| 389 | 390 |
| 390 if (use_alsa) { | 391 if (use_alsa) { |
| 391 sources += [ | 392 sources += [ |
| 392 "alsa/alsa_output_unittest.cc", | 393 "alsa/alsa_output_unittest.cc", |
| 393 "audio_low_latency_input_output_unittest.cc", | 394 "audio_low_latency_input_output_unittest.cc", |
| 394 ] | 395 ] |
| 395 } | 396 } |
| 396 } | 397 } |
| OLD | NEW |