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

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

Issue 1897953003: Unmute Tab Audio For Desktop Share (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unittest Created 4 years, 7 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 "sounds/audio_stream_handler.cc", 115 "sounds/audio_stream_handler.cc",
116 "sounds/audio_stream_handler.h", 116 "sounds/audio_stream_handler.h",
117 "sounds/sounds_manager.cc", 117 "sounds/sounds_manager.cc",
118 "sounds/sounds_manager.h", 118 "sounds/sounds_manager.h",
119 "sounds/wav_audio_handler.cc", 119 "sounds/wav_audio_handler.cc",
120 "sounds/wav_audio_handler.h", 120 "sounds/wav_audio_handler.h",
121 "virtual_audio_input_stream.cc", 121 "virtual_audio_input_stream.cc",
122 "virtual_audio_input_stream.h", 122 "virtual_audio_input_stream.h",
123 "virtual_audio_output_stream.cc", 123 "virtual_audio_output_stream.cc",
124 "virtual_audio_output_stream.h", 124 "virtual_audio_output_stream.h",
125 "virtual_audio_sink.cc",
126 "virtual_audio_sink.h",
125 ] 127 ]
126 deps = [] 128 deps = []
127 libs = [] 129 libs = []
128 configs += [ 130 configs += [
129 ":platform_config", 131 ":platform_config",
130 "//media:media_config", 132 "//media:media_config",
131 "//media:media_implementation", 133 "//media:media_implementation",
132 ] 134 ]
133 135
134 if (is_mac) { 136 if (is_mac) {
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 ] 356 ]
355 } 357 }
356 358
357 if (use_alsa) { 359 if (use_alsa) {
358 sources += [ 360 sources += [
359 "alsa/alsa_output_unittest.cc", 361 "alsa/alsa_output_unittest.cc",
360 "audio_low_latency_input_output_unittest.cc", 362 "audio_low_latency_input_output_unittest.cc",
361 ] 363 ]
362 } 364 }
363 } 365 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698