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

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: add stub for non-OSX MIDIManagers 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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 'filters/stream_parser_factory.cc', 362 'filters/stream_parser_factory.cc',
363 'filters/stream_parser_factory.h', 363 'filters/stream_parser_factory.h',
364 'filters/video_decoder_selector.cc', 364 'filters/video_decoder_selector.cc',
365 'filters/video_decoder_selector.h', 365 'filters/video_decoder_selector.h',
366 'filters/video_frame_stream.cc', 366 'filters/video_frame_stream.cc',
367 'filters/video_frame_stream.h', 367 'filters/video_frame_stream.h',
368 'filters/video_renderer_base.cc', 368 'filters/video_renderer_base.cc',
369 'filters/video_renderer_base.h', 369 'filters/video_renderer_base.h',
370 'filters/vpx_video_decoder.cc', 370 'filters/vpx_video_decoder.cc',
371 'filters/vpx_video_decoder.h', 371 'filters/vpx_video_decoder.h',
372 'midi/midi_manager.h',
373 'midi/midi_manager.cc',
374 'midi/midi_manager_mac.h',
375 'midi/midi_manager_mac.cc',
376 'midi/midi_port_info.h',
377 'midi/midi_port_info.cc',
372 'video/capture/android/video_capture_device_android.cc', 378 'video/capture/android/video_capture_device_android.cc',
373 'video/capture/android/video_capture_device_android.h', 379 'video/capture/android/video_capture_device_android.h',
374 'video/capture/fake_video_capture_device.cc', 380 'video/capture/fake_video_capture_device.cc',
375 'video/capture/fake_video_capture_device.h', 381 'video/capture/fake_video_capture_device.h',
376 'video/capture/linux/video_capture_device_linux.cc', 382 'video/capture/linux/video_capture_device_linux.cc',
377 'video/capture/linux/video_capture_device_linux.h', 383 'video/capture/linux/video_capture_device_linux.h',
378 'video/capture/mac/video_capture_device_mac.h', 384 'video/capture/mac/video_capture_device_mac.h',
379 'video/capture/mac/video_capture_device_mac.mm', 385 'video/capture/mac/video_capture_device_mac.mm',
380 'video/capture/mac/video_capture_device_qtkit_mac.h', 386 'video/capture/mac/video_capture_device_qtkit_mac.h',
381 'video/capture/mac/video_capture_device_qtkit_mac.mm', 387 'video/capture/mac/video_capture_device_qtkit_mac.mm',
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 ['include', '^base/media\\.cc$'], 530 ['include', '^base/media\\.cc$'],
525 ['include', '^base/media_stub\\.cc$'], 531 ['include', '^base/media_stub\\.cc$'],
526 ['include', '^base/media_switches\\.'], 532 ['include', '^base/media_switches\\.'],
527 ['include', '^base/vector_math\\.'], 533 ['include', '^base/vector_math\\.'],
528 ], 534 ],
529 'link_settings': { 535 'link_settings': {
530 'libraries': [ 536 'libraries': [
531 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', 537 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
532 '$(SDKROOT)/System/Library/Frameworks/AVFoundation.framework', 538 '$(SDKROOT)/System/Library/Frameworks/AVFoundation.framework',
533 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 539 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
540 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
534 ], 541 ],
535 }, 542 },
536 }], 543 }],
537 ['OS=="android"', { 544 ['OS=="android"', {
538 'link_settings': { 545 'link_settings': {
539 'libraries': [ 546 'libraries': [
540 '-lOpenSLES', 547 '-lOpenSLES',
541 ], 548 ],
542 }, 549 },
543 'include_dirs': [ 550 'include_dirs': [
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 'video/capture/video_capture_device_dummy.cc', 743 'video/capture/video_capture_device_dummy.cc',
737 'video/capture/video_capture_device_dummy.h', 744 'video/capture/video_capture_device_dummy.h',
738 ], 745 ],
739 }], 746 }],
740 ['OS=="mac"', { 747 ['OS=="mac"', {
741 'link_settings': { 748 'link_settings': {
742 'libraries': [ 749 'libraries': [
743 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', 750 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
744 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 751 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
745 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 752 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
753 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
746 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 754 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
747 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 755 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
748 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework', 756 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework',
749 ], 757 ],
750 }, 758 },
751 }], 759 }],
752 ['OS=="win"', { 760 ['OS=="win"', {
753 'sources!': [ 761 'sources!': [
754 'video/capture/video_capture_device_dummy.cc', 762 'video/capture/video_capture_device_dummy.cc',
755 'video/capture/video_capture_device_dummy.h', 763 'video/capture/video_capture_device_dummy.h',
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after
1609 'sources': [ 1617 'sources': [
1610 'tools/media_bench/media_bench.cc', 1618 'tools/media_bench/media_bench.cc',
1611 ], 1619 ],
1612 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1620 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1613 'msvs_disabled_warnings': [ 4267, ], 1621 'msvs_disabled_warnings': [ 4267, ],
1614 }, 1622 },
1615 ], 1623 ],
1616 }], 1624 }],
1617 ], 1625 ],
1618 } 1626 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698