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

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

Issue 1892433002: Moving device description utils from AudioManager[Base] into AudioDeviceDescription; to be shared b… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another rebase 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 config("platform_config") { 47 config("platform_config") {
48 if (use_alsa) { 48 if (use_alsa) {
49 defines = [ "USE_ALSA" ] 49 defines = [ "USE_ALSA" ]
50 } 50 }
51 } 51 }
52 52
53 source_set("audio") { 53 source_set("audio") {
54 visibility = [ "//media/*" ] 54 visibility = [ "//media/*" ]
55 sources = [ 55 sources = [
56 "agc_audio_stream.h", 56 "agc_audio_stream.h",
57 "audio_device_description.cc",
58 "audio_device_description.h",
57 "audio_device_name.cc", 59 "audio_device_name.cc",
58 "audio_device_name.h", 60 "audio_device_name.h",
59 "audio_device_thread.cc", 61 "audio_device_thread.cc",
60 "audio_device_thread.h", 62 "audio_device_thread.h",
61 "audio_input_controller.cc", 63 "audio_input_controller.cc",
62 "audio_input_controller.h", 64 "audio_input_controller.h",
63 "audio_input_device.cc", 65 "audio_input_device.cc",
64 "audio_input_device.h", 66 "audio_input_device.h",
65 "audio_input_ipc.cc", 67 "audio_input_ipc.cc",
66 "audio_input_ipc.h", 68 "audio_input_ipc.h",
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 ] 354 ]
353 } 355 }
354 356
355 if (use_alsa) { 357 if (use_alsa) {
356 sources += [ 358 sources += [
357 "alsa/alsa_output_unittest.cc", 359 "alsa/alsa_output_unittest.cc",
358 "audio_low_latency_input_output_unittest.cc", 360 "audio_low_latency_input_output_unittest.cc",
359 ] 361 ]
360 } 362 }
361 } 363 }
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_platform_audio_input.cc ('k') | media/audio/alsa/audio_manager_alsa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698