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

Side by Side Diff: media/media.gyp

Issue 7473021: PulseAudio Sound Playback on Linux (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'audio/linux/audio_manager_linux.cc', 49 'audio/linux/audio_manager_linux.cc',
50 'audio/linux/audio_manager_linux.h', 50 'audio/linux/audio_manager_linux.h',
51 'audio/linux/alsa_input.cc', 51 'audio/linux/alsa_input.cc',
52 'audio/linux/alsa_input.h', 52 'audio/linux/alsa_input.h',
53 'audio/linux/alsa_output.cc', 53 'audio/linux/alsa_output.cc',
54 'audio/linux/alsa_output.h', 54 'audio/linux/alsa_output.h',
55 'audio/linux/alsa_util.cc', 55 'audio/linux/alsa_util.cc',
56 'audio/linux/alsa_util.h', 56 'audio/linux/alsa_util.h',
57 'audio/linux/alsa_wrapper.cc', 57 'audio/linux/alsa_wrapper.cc',
58 'audio/linux/alsa_wrapper.h', 58 'audio/linux/alsa_wrapper.h',
59 'audio/linux/pulse_output.cc',
60 'audio/linux/pulse_output.h',
59 'audio/openbsd/audio_manager_openbsd.cc', 61 'audio/openbsd/audio_manager_openbsd.cc',
60 'audio/openbsd/audio_manager_openbsd.h', 62 'audio/openbsd/audio_manager_openbsd.h',
61 'audio/mac/audio_input_mac.cc', 63 'audio/mac/audio_input_mac.cc',
62 'audio/mac/audio_input_mac.h', 64 'audio/mac/audio_input_mac.h',
63 'audio/mac/audio_low_latency_output_mac.cc', 65 'audio/mac/audio_low_latency_output_mac.cc',
64 'audio/mac/audio_low_latency_output_mac.h', 66 'audio/mac/audio_low_latency_output_mac.h',
65 'audio/mac/audio_manager_mac.cc', 67 'audio/mac/audio_manager_mac.cc',
66 'audio/mac/audio_manager_mac.h', 68 'audio/mac/audio_manager_mac.h',
67 'audio/mac/audio_output_mac.cc', 69 'audio/mac/audio_output_mac.cc',
68 'audio/mac/audio_output_mac.h', 70 'audio/mac/audio_output_mac.h',
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 'direct_dependent_settings': { 221 'direct_dependent_settings': {
220 'include_dirs': [ 222 'include_dirs': [
221 '..', 223 '..',
222 ], 224 ],
223 }, 225 },
224 'conditions': [ 226 'conditions': [
225 ['OS == "linux" or OS == "freebsd" or OS == "solaris"', { 227 ['OS == "linux" or OS == "freebsd" or OS == "solaris"', {
226 'link_settings': { 228 'link_settings': {
227 'libraries': [ 229 'libraries': [
228 '-lasound', 230 '-lasound',
231 '-lpulse',
Ami GONE FROM CHROMIUM 2011/07/21 16:59:03 Pretty sure this will break on cros/arm where we d
slock 2011/07/21 17:10:57 That's also my understanding. I was advised to li
229 ], 232 ],
230 }, 233 },
231 }], 234 }],
232 ['OS=="openbsd"', { 235 ['OS=="openbsd"', {
233 'sources/': [ ['exclude', 'alsa_' ], 236 'sources/': [ ['exclude', 'alsa_' ],
234 ['exclude', 'audio_manager_linux' ], 237 ['exclude', 'audio_manager_linux' ],
235 ['exclude', '\\.mm?$' ] ], 238 ['exclude', '\\.mm?$' ] ],
236 'link_settings': { 239 'link_settings': {
237 'libraries': [ 240 'libraries': [
238 ], 241 ],
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 'tools/player_x11/gl_video_renderer.h', 701 'tools/player_x11/gl_video_renderer.h',
699 'tools/player_x11/player_x11.cc', 702 'tools/player_x11/player_x11.cc',
700 'tools/player_x11/x11_video_renderer.cc', 703 'tools/player_x11/x11_video_renderer.cc',
701 'tools/player_x11/x11_video_renderer.h', 704 'tools/player_x11/x11_video_renderer.h',
702 ], 705 ],
703 }, 706 },
704 ], 707 ],
705 }], 708 }],
706 ], 709 ],
707 } 710 }
OLDNEW
« media/audio/linux/pulse_output.cc ('K') | « media/audio/linux/pulse_output.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698