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

Side by Side Diff: media/media.gyp

Issue 10952024: Adding pulseaudio input support to chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: switched to dynamic linking and addressed Andrew's comments. Created 7 years, 10 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # Override to dynamically link the PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 # Override to dynamically link the cras (ChromeOS audio) library. 10 # Override to dynamically link the cras (ChromeOS audio) library.
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 'audio/mac/audio_output_mac.cc', 130 'audio/mac/audio_output_mac.cc',
131 'audio/mac/audio_output_mac.h', 131 'audio/mac/audio_output_mac.h',
132 'audio/mac/audio_synchronized_mac.cc', 132 'audio/mac/audio_synchronized_mac.cc',
133 'audio/mac/audio_synchronized_mac.h', 133 'audio/mac/audio_synchronized_mac.h',
134 'audio/mac/audio_unified_mac.cc', 134 'audio/mac/audio_unified_mac.cc',
135 'audio/mac/audio_unified_mac.h', 135 'audio/mac/audio_unified_mac.h',
136 'audio/null_audio_sink.cc', 136 'audio/null_audio_sink.cc',
137 'audio/null_audio_sink.h', 137 'audio/null_audio_sink.h',
138 'audio/openbsd/audio_manager_openbsd.cc', 138 'audio/openbsd/audio_manager_openbsd.cc',
139 'audio/openbsd/audio_manager_openbsd.h', 139 'audio/openbsd/audio_manager_openbsd.h',
140 'audio/pulse/audio_manager_pulse.cc',
141 'audio/pulse/audio_manager_pulse.h',
140 'audio/pulse/pulse_output.cc', 142 'audio/pulse/pulse_output.cc',
141 'audio/pulse/pulse_output.h', 143 'audio/pulse/pulse_output.h',
144 'audio/pulse/pulse_input.cc',
145 'audio/pulse/pulse_input.h',
146 'audio/pulse/pulse_util.cc',
147 'audio/pulse/pulse_util.h',
148 'audio/pulse/pulse_wrapper.cc',
149 'audio/pulse/pulse_wrapper.h',
142 'audio/sample_rates.cc', 150 'audio/sample_rates.cc',
143 'audio/sample_rates.h', 151 'audio/sample_rates.h',
144 'audio/scoped_loop_observer.cc', 152 'audio/scoped_loop_observer.cc',
145 'audio/scoped_loop_observer.h', 153 'audio/scoped_loop_observer.h',
146 'audio/simple_sources.cc', 154 'audio/simple_sources.cc',
147 'audio/simple_sources.h', 155 'audio/simple_sources.h',
148 'audio/virtual_audio_input_stream.cc', 156 'audio/virtual_audio_input_stream.cc',
149 'audio/virtual_audio_input_stream.h', 157 'audio/virtual_audio_input_stream.h',
150 'audio/virtual_audio_output_stream.cc', 158 'audio/virtual_audio_output_stream.cc',
151 'audio/virtual_audio_output_stream.h', 159 'audio/virtual_audio_output_stream.h',
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 'audio/linux/cras_input.cc', 601 'audio/linux/cras_input.cc',
594 'audio/linux/cras_input.h', 602 'audio/linux/cras_input.h',
595 'audio/linux/cras_output.cc', 603 'audio/linux/cras_output.cc',
596 'audio/linux/cras_output.h', 604 'audio/linux/cras_output.h',
597 ], 605 ],
598 }], 606 }],
599 ], 607 ],
600 }], 608 }],
601 ['os_posix == 1', { 609 ['os_posix == 1', {
602 'conditions': [ 610 'conditions': [
603 ['use_pulseaudio == 1', { 611 ['use_pulseaudio == 1', {
DaleCurtis 2013/02/15 00:28:51 Can we just remove this now?
no longer working on chromium 2013/02/15 16:07:33 I prefer to do it on another trivial CL. After tes
604 'cflags': [ 612 'cflags': [
605 '<!@(pkg-config --cflags libpulse)', 613 '<!@(pkg-config --cflags libpulse)',
606 ], 614 ],
607 'link_settings': { 615 # 'link_settings': {
DaleCurtis 2013/02/15 00:28:51 Delete?
no longer working on chromium 2013/02/15 16:07:33 Done.
608 'libraries': [ 616 # 'libraries': [
609 '<!@(pkg-config --libs-only-l libpulse)', 617 # '<!@(pkg-config --libs-only-l libpulse)',
610 ], 618 # ],
611 }, 619 # },
612 'defines': [ 620 'defines': [
613 'USE_PULSEAUDIO', 621 'USE_PULSEAUDIO',
614 ], 622 ],
615 }, { # else: use_pulseaudio == 0 623 }, { # else: use_pulseaudio == 0
616 'sources!': [ 624 'sources!': [
625 'audio/pulse/audio_manager_pulse.cc',
626 'audio/pulse/audio_manager_pulse.h',
627 'audio/pulse/pulse_input.cc',
628 'audio/pulse/pulse_input.h',
617 'audio/pulse/pulse_output.cc', 629 'audio/pulse/pulse_output.cc',
618 'audio/pulse/pulse_output.h', 630 'audio/pulse/pulse_output.h',
631 'audio/pulse/pulse_util.cc',
632 'audio/pulse/pulse_util.h',
633 'audio/pulse/pulse_wrapper.cc',
634 'audio/pulse/pulse_wrapper.h',
619 ], 635 ],
620 }], 636 }],
621 ], 637 ],
622 'sources!': [ 638 'sources!': [
623 'video/capture/video_capture_device_dummy.cc', 639 'video/capture/video_capture_device_dummy.cc',
624 'video/capture/video_capture_device_dummy.h', 640 'video/capture/video_capture_device_dummy.h',
625 ], 641 ],
626 }], 642 }],
627 ['OS=="mac"', { 643 ['OS=="mac"', {
628 'link_settings': { 644 'link_settings': {
629 'libraries': [ 645 'libraries': [
630 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', 646 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
631 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 647 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
632 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 648 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
633 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 649 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
634 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 650 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
635 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework', 651 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework',
636 ], 652 ],
637 }, 653 },
638 }], 654 }],
639 ['OS=="win"', { 655 ['OS=="win"', {
640 'sources!': [ 656 'sources!': [
657 'audio/pulse/audio_manager_pulse.cc',
DaleCurtis 2013/02/15 00:28:51 Why all this? We don't exclude audio_manager_linux
no longer working on chromium 2013/02/15 16:07:33 audio_manager_linux is automatically excluded beca
658 'audio/pulse/audio_manager_pulse.h',
659 'audio/pulse/pulse_input.cc',
660 'audio/pulse/pulse_input.h',
641 'audio/pulse/pulse_output.cc', 661 'audio/pulse/pulse_output.cc',
642 'audio/pulse/pulse_output.h', 662 'audio/pulse/pulse_output.h',
663 'audio/pulse/pulse_util.cc',
664 'audio/pulse/pulse_util.h',
665 'audio/pulse/pulse_wrapper.cc',
666 'audio/pulse/pulse_wrapper.h',
643 'video/capture/video_capture_device_dummy.cc', 667 'video/capture/video_capture_device_dummy.cc',
644 'video/capture/video_capture_device_dummy.h', 668 'video/capture/video_capture_device_dummy.h',
645 ], 669 ],
646 'link_settings': { 670 'link_settings': {
647 'libraries': [ 671 'libraries': [
648 '-lmf.lib', 672 '-lmf.lib',
649 '-lmfplat.lib', 673 '-lmfplat.lib',
650 '-lmfreadwrite.lib', 674 '-lmfreadwrite.lib',
651 '-lmfuuid.lib', 675 '-lmfuuid.lib',
652 ], 676 ],
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
1474 ], 1498 ],
1475 'sources': [ 1499 'sources': [
1476 'video/capture/screen/differ_block_sse2.cc', 1500 'video/capture/screen/differ_block_sse2.cc',
1477 'video/capture/screen/differ_block_sse2.h', 1501 'video/capture/screen/differ_block_sse2.h',
1478 ], 1502 ],
1479 }, # end of target differ_block_sse2 1503 }, # end of target differ_block_sse2
1480 ], 1504 ],
1481 }], 1505 }],
1482 ], 1506 ],
1483 } 1507 }
OLDNEW
« media/audio/pulse/pulse_wrapper.cc ('K') | « media/audio/pulse/pulse_wrapper.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698