| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 "fake_audio_worker_unittest.cc", | 283 "fake_audio_worker_unittest.cc", |
| 284 "simple_sources_unittest.cc", | 284 "simple_sources_unittest.cc", |
| 285 "virtual_audio_input_stream_unittest.cc", | 285 "virtual_audio_input_stream_unittest.cc", |
| 286 "virtual_audio_output_stream_unittest.cc", | 286 "virtual_audio_output_stream_unittest.cc", |
| 287 ] | 287 ] |
| 288 deps = [ | 288 deps = [ |
| 289 ":test_support", | 289 ":test_support", |
| 290 "//media/base:test_support", | 290 "//media/base:test_support", |
| 291 "//testing/gmock", | 291 "//testing/gmock", |
| 292 "//testing/gtest", | 292 "//testing/gtest", |
| 293 "//url", |
| 293 ] | 294 ] |
| 294 | 295 |
| 295 configs += [ | 296 configs += [ |
| 296 "//build/config/compiler:no_size_t_to_int_warning", | 297 "//build/config/compiler:no_size_t_to_int_warning", |
| 297 "//media:media_config", | 298 "//media:media_config", |
| 298 ] | 299 ] |
| 299 | 300 |
| 300 if (is_android) { | 301 if (is_android) { |
| 301 sources += [ "android/audio_android_unittest.cc" ] | 302 sources += [ "android/audio_android_unittest.cc" ] |
| 302 } else { | 303 } else { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 ] | 339 ] |
| 339 } | 340 } |
| 340 | 341 |
| 341 if (use_alsa) { | 342 if (use_alsa) { |
| 342 sources += [ | 343 sources += [ |
| 343 "alsa/alsa_output_unittest.cc", | 344 "alsa/alsa_output_unittest.cc", |
| 344 "audio_low_latency_input_output_unittest.cc", | 345 "audio_low_latency_input_output_unittest.cc", |
| 345 ] | 346 ] |
| 346 } | 347 } |
| 347 } | 348 } |
| OLD | NEW |