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

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: 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 "sounds/audio_stream_handler.cc", 113 "sounds/audio_stream_handler.cc",
114 "sounds/audio_stream_handler.h", 114 "sounds/audio_stream_handler.h",
115 "sounds/sounds_manager.cc", 115 "sounds/sounds_manager.cc",
116 "sounds/sounds_manager.h", 116 "sounds/sounds_manager.h",
117 "sounds/wav_audio_handler.cc", 117 "sounds/wav_audio_handler.cc",
118 "sounds/wav_audio_handler.h", 118 "sounds/wav_audio_handler.h",
119 "virtual_audio_input_stream.cc", 119 "virtual_audio_input_stream.cc",
120 "virtual_audio_input_stream.h", 120 "virtual_audio_input_stream.h",
121 "virtual_audio_output_stream.cc", 121 "virtual_audio_output_stream.cc",
122 "virtual_audio_output_stream.h", 122 "virtual_audio_output_stream.h",
123 "virtual_audio_sink.cc",
124 "virtual_audio_sink.h",
123 ] 125 ]
124 deps = [] 126 deps = []
125 libs = [] 127 libs = []
126 configs += [ 128 configs += [
127 ":platform_config", 129 ":platform_config",
128 "//media:media_config", 130 "//media:media_config",
129 "//media:media_implementation", 131 "//media:media_implementation",
130 ] 132 ]
131 133
132 if (is_mac) { 134 if (is_mac) {
(...skipping 222 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