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

Side by Side Diff: media/media.gyp

Issue 518073002: Mac VideoCapture: Support for Blackmagic DeckLink device & capabilities enumeration, using SDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Change enumeration: instead of 1 dev x N format --> N devs x 1 format each. Created 6 years, 3 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 (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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 'video/capture/file_video_capture_device_factory.cc', 492 'video/capture/file_video_capture_device_factory.cc',
493 'video/capture/linux/video_capture_device_factory_linux.cc', 493 'video/capture/linux/video_capture_device_factory_linux.cc',
494 'video/capture/linux/video_capture_device_factory_linux.h', 494 'video/capture/linux/video_capture_device_factory_linux.h',
495 'video/capture/linux/video_capture_device_linux.cc', 495 'video/capture/linux/video_capture_device_linux.cc',
496 'video/capture/linux/video_capture_device_linux.h', 496 'video/capture/linux/video_capture_device_linux.h',
497 'video/capture/linux/video_capture_device_chromeos.cc', 497 'video/capture/linux/video_capture_device_chromeos.cc',
498 'video/capture/linux/video_capture_device_chromeos.h', 498 'video/capture/linux/video_capture_device_chromeos.h',
499 'video/capture/mac/platform_video_capturing_mac.h', 499 'video/capture/mac/platform_video_capturing_mac.h',
500 'video/capture/mac/video_capture_device_avfoundation_mac.h', 500 'video/capture/mac/video_capture_device_avfoundation_mac.h',
501 'video/capture/mac/video_capture_device_avfoundation_mac.mm', 501 'video/capture/mac/video_capture_device_avfoundation_mac.mm',
502 'video/capture/mac/video_capture_device_decklink_mac.h',
503 'video/capture/mac/video_capture_device_decklink_mac.mm',
502 'video/capture/mac/video_capture_device_factory_mac.h', 504 'video/capture/mac/video_capture_device_factory_mac.h',
503 'video/capture/mac/video_capture_device_factory_mac.mm', 505 'video/capture/mac/video_capture_device_factory_mac.mm',
504 'video/capture/mac/video_capture_device_mac.h', 506 'video/capture/mac/video_capture_device_mac.h',
505 'video/capture/mac/video_capture_device_mac.mm', 507 'video/capture/mac/video_capture_device_mac.mm',
506 'video/capture/mac/video_capture_device_qtkit_mac.h', 508 'video/capture/mac/video_capture_device_qtkit_mac.h',
507 'video/capture/mac/video_capture_device_qtkit_mac.mm', 509 'video/capture/mac/video_capture_device_qtkit_mac.mm',
508 'video/capture/video_capture_device.cc', 510 'video/capture/video_capture_device.cc',
509 'video/capture/video_capture_device.h', 511 'video/capture/video_capture_device.h',
510 'video/capture/video_capture_device_factory.cc', 512 'video/capture/video_capture_device_factory.cc',
511 'video/capture/video_capture_device_factory.h', 513 'video/capture/video_capture_device_factory.h',
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 'audio/pulse/audio_manager_pulse.h', 863 'audio/pulse/audio_manager_pulse.h',
862 'audio/pulse/pulse_input.cc', 864 'audio/pulse/pulse_input.cc',
863 'audio/pulse/pulse_input.h', 865 'audio/pulse/pulse_input.h',
864 'audio/pulse/pulse_output.cc', 866 'audio/pulse/pulse_output.cc',
865 'audio/pulse/pulse_output.h', 867 'audio/pulse/pulse_output.h',
866 'audio/pulse/pulse_util.cc', 868 'audio/pulse/pulse_util.cc',
867 'audio/pulse/pulse_util.h', 869 'audio/pulse/pulse_util.h',
868 ], 870 ],
869 }], 871 }],
870 ['OS=="mac"', { 872 ['OS=="mac"', {
873 'dependencies': [
874 '../third_party/decklink/decklink.gyp:decklink',
875 ],
871 'link_settings': { 876 'link_settings': {
872 'libraries': [ 877 'libraries': [
873 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', 878 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
874 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 879 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
875 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 880 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
876 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework', 881 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
877 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 882 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
878 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 883 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
879 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework', 884 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework',
880 ], 885 ],
(...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after
1803 ], 1808 ],
1804 }], 1809 }],
1805 ], 1810 ],
1806 }], 1811 }],
1807 ], 1812 ],
1808 }, 1813 },
1809 ], 1814 ],
1810 }], 1815 }],
1811 ], 1816 ],
1812 } 1817 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698