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

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

Issue 1864483002: Forward output glitch information from stream WebRTC log (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup. Created 4 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
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "audio_device_name.h", 58 "audio_device_name.h",
59 "audio_device_thread.cc", 59 "audio_device_thread.cc",
60 "audio_device_thread.h", 60 "audio_device_thread.h",
61 "audio_input_controller.cc", 61 "audio_input_controller.cc",
62 "audio_input_controller.h", 62 "audio_input_controller.h",
63 "audio_input_device.cc", 63 "audio_input_device.cc",
64 "audio_input_device.h", 64 "audio_input_device.h",
65 "audio_input_ipc.cc", 65 "audio_input_ipc.cc",
66 "audio_input_ipc.h", 66 "audio_input_ipc.h",
67 "audio_io.h", 67 "audio_io.h",
68 "audio_logging.cc",
69 "audio_logging.h",
68 "audio_manager.cc", 70 "audio_manager.cc",
69 "audio_manager.h", 71 "audio_manager.h",
70 "audio_manager_base.cc", 72 "audio_manager_base.cc",
71 "audio_manager_base.h", 73 "audio_manager_base.h",
72 "audio_output_controller.cc", 74 "audio_output_controller.cc",
73 "audio_output_controller.h", 75 "audio_output_controller.h",
74 "audio_output_device.cc", 76 "audio_output_device.cc",
75 "audio_output_device.h", 77 "audio_output_device.h",
76 "audio_output_dispatcher.cc", 78 "audio_output_dispatcher.cc",
77 "audio_output_dispatcher.h", 79 "audio_output_dispatcher.h",
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 ] 357 ]
356 } 358 }
357 359
358 if (use_alsa) { 360 if (use_alsa) {
359 sources += [ 361 sources += [
360 "alsa/alsa_output_unittest.cc", 362 "alsa/alsa_output_unittest.cc",
361 "audio_low_latency_input_output_unittest.cc", 363 "audio_low_latency_input_output_unittest.cc",
362 ] 364 ]
363 } 365 }
364 } 366 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698