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

Side by Side Diff: media/media.gyp

Issue 16025005: Web MIDI API back-end (work-in-progress) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 'filters/stream_parser_factory.cc', 368 'filters/stream_parser_factory.cc',
369 'filters/stream_parser_factory.h', 369 'filters/stream_parser_factory.h',
370 'filters/video_decoder_selector.cc', 370 'filters/video_decoder_selector.cc',
371 'filters/video_decoder_selector.h', 371 'filters/video_decoder_selector.h',
372 'filters/video_frame_stream.cc', 372 'filters/video_frame_stream.cc',
373 'filters/video_frame_stream.h', 373 'filters/video_frame_stream.h',
374 'filters/video_renderer_base.cc', 374 'filters/video_renderer_base.cc',
375 'filters/video_renderer_base.h', 375 'filters/video_renderer_base.h',
376 'filters/vpx_video_decoder.cc', 376 'filters/vpx_video_decoder.cc',
377 'filters/vpx_video_decoder.h', 377 'filters/vpx_video_decoder.h',
378 'midi/midi_manager.h',
379 'midi/midi_manager.cc',
380 'midi/midi_manager_mac.h',
381 'midi/midi_manager_mac.cc',
382 'midi/midi_port_info.h',
383 'midi/midi_port_info.cc',
378 'video/capture/android/video_capture_device_android.cc', 384 'video/capture/android/video_capture_device_android.cc',
379 'video/capture/android/video_capture_device_android.h', 385 'video/capture/android/video_capture_device_android.h',
380 'video/capture/fake_video_capture_device.cc', 386 'video/capture/fake_video_capture_device.cc',
381 'video/capture/fake_video_capture_device.h', 387 'video/capture/fake_video_capture_device.h',
382 'video/capture/linux/video_capture_device_linux.cc', 388 'video/capture/linux/video_capture_device_linux.cc',
383 'video/capture/linux/video_capture_device_linux.h', 389 'video/capture/linux/video_capture_device_linux.h',
384 'video/capture/mac/video_capture_device_mac.h', 390 'video/capture/mac/video_capture_device_mac.h',
385 'video/capture/mac/video_capture_device_mac.mm', 391 'video/capture/mac/video_capture_device_mac.mm',
386 'video/capture/mac/video_capture_device_qtkit_mac.h', 392 'video/capture/mac/video_capture_device_qtkit_mac.h',
387 'video/capture/mac/video_capture_device_qtkit_mac.mm', 393 'video/capture/mac/video_capture_device_qtkit_mac.mm',
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 ['include', '^base/media\\.cc$'], 540 ['include', '^base/media\\.cc$'],
535 ['include', '^base/media_stub\\.cc$'], 541 ['include', '^base/media_stub\\.cc$'],
536 ['include', '^base/media_switches\\.'], 542 ['include', '^base/media_switches\\.'],
537 ['include', '^base/vector_math\\.'], 543 ['include', '^base/vector_math\\.'],
538 ], 544 ],
539 'link_settings': { 545 'link_settings': {
540 'libraries': [ 546 'libraries': [
541 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', 547 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
542 '$(SDKROOT)/System/Library/Frameworks/AVFoundation.framework', 548 '$(SDKROOT)/System/Library/Frameworks/AVFoundation.framework',
543 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 549 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
550 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
544 ], 551 ],
545 }, 552 },
546 }], 553 }],
547 ['OS=="android"', { 554 ['OS=="android"', {
548 'link_settings': { 555 'link_settings': {
549 'libraries': [ 556 'libraries': [
550 '-lOpenSLES', 557 '-lOpenSLES',
551 ], 558 ],
552 }, 559 },
553 'include_dirs': [ 560 'include_dirs': [
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 'video/capture/video_capture_device_dummy.cc', 753 'video/capture/video_capture_device_dummy.cc',
747 'video/capture/video_capture_device_dummy.h', 754 'video/capture/video_capture_device_dummy.h',
748 ], 755 ],
749 }], 756 }],
750 ['OS=="mac"', { 757 ['OS=="mac"', {
751 'link_settings': { 758 'link_settings': {
752 'libraries': [ 759 'libraries': [
753 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', 760 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
754 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 761 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
755 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 762 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
763 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
756 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 764 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
757 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 765 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
758 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework', 766 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework',
759 ], 767 ],
760 }, 768 },
761 }], 769 }],
762 ['OS=="win"', { 770 ['OS=="win"', {
763 'sources!': [ 771 'sources!': [
764 'video/capture/video_capture_device_dummy.cc', 772 'video/capture/video_capture_device_dummy.cc',
765 'video/capture/video_capture_device_dummy.h', 773 'video/capture/video_capture_device_dummy.h',
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after
1642 'sources': [ 1650 'sources': [
1643 'tools/media_bench/media_bench.cc', 1651 'tools/media_bench/media_bench.cc',
1644 ], 1652 ],
1645 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1653 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1646 'msvs_disabled_warnings': [ 4267, ], 1654 'msvs_disabled_warnings': [ 4267, ],
1647 }, 1655 },
1648 ], 1656 ],
1649 }], 1657 }],
1650 ], 1658 ],
1651 } 1659 }
OLDNEW
« no previous file with comments | « ipc/ipc_message_start.h ('k') | media/midi/midi_manager.h » ('j') | media/midi/midi_manager.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698