Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(500)

Side by Side Diff: media/audio/BUILD.gn

Issue 1104583002: Adds method to provide custom AudioManager at runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor fixes, update to test factory. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | media/audio/audio_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 "//testing/gmock", 263 "//testing/gmock",
264 ] 264 ]
265 configs += [ "//media:media_config" ] 265 configs += [ "//media:media_config" ]
266 } 266 }
267 267
268 source_set("unittests") { 268 source_set("unittests") {
269 testonly = true 269 testonly = true
270 sources = [ 270 sources = [
271 "audio_input_controller_unittest.cc", 271 "audio_input_controller_unittest.cc",
272 "audio_input_unittest.cc", 272 "audio_input_unittest.cc",
273 "audio_manager_factory_unittest.cc",
273 "audio_manager_unittest.cc", 274 "audio_manager_unittest.cc",
274 "audio_output_controller_unittest.cc", 275 "audio_output_controller_unittest.cc",
275 "audio_output_device_unittest.cc", 276 "audio_output_device_unittest.cc",
276 "audio_output_proxy_unittest.cc", 277 "audio_output_proxy_unittest.cc",
277 "audio_parameters_unittest.cc", 278 "audio_parameters_unittest.cc",
278 "audio_power_monitor_unittest.cc", 279 "audio_power_monitor_unittest.cc",
279 "fake_audio_worker_unittest.cc", 280 "fake_audio_worker_unittest.cc",
280 "simple_sources_unittest.cc", 281 "simple_sources_unittest.cc",
281 "virtual_audio_input_stream_unittest.cc", 282 "virtual_audio_input_stream_unittest.cc",
282 "virtual_audio_output_stream_unittest.cc", 283 "virtual_audio_output_stream_unittest.cc",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 ] 334 ]
334 } 335 }
335 336
336 if (use_alsa) { 337 if (use_alsa) {
337 sources += [ 338 sources += [
338 "alsa/alsa_output_unittest.cc", 339 "alsa/alsa_output_unittest.cc",
339 "audio_low_latency_input_output_unittest.cc", 340 "audio_low_latency_input_output_unittest.cc",
340 ] 341 ]
341 } 342 }
342 } 343 }
OLDNEW
« no previous file with comments | « no previous file | media/audio/audio_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698