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

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: rsesek@ comments 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 'video/capture/linux/video_capture_device_linux.h', 490 'video/capture/linux/video_capture_device_linux.h',
491 'video/capture/linux/video_capture_device_chromeos.cc', 491 'video/capture/linux/video_capture_device_chromeos.cc',
492 'video/capture/linux/video_capture_device_chromeos.h', 492 'video/capture/linux/video_capture_device_chromeos.h',
493 'video/capture/mac/avfoundation_glue.h', 493 'video/capture/mac/avfoundation_glue.h',
494 'video/capture/mac/avfoundation_glue.mm', 494 'video/capture/mac/avfoundation_glue.mm',
495 'video/capture/mac/coremedia_glue.h', 495 'video/capture/mac/coremedia_glue.h',
496 'video/capture/mac/coremedia_glue.mm', 496 'video/capture/mac/coremedia_glue.mm',
497 'video/capture/mac/platform_video_capturing_mac.h', 497 'video/capture/mac/platform_video_capturing_mac.h',
498 'video/capture/mac/video_capture_device_avfoundation_mac.h', 498 'video/capture/mac/video_capture_device_avfoundation_mac.h',
499 'video/capture/mac/video_capture_device_avfoundation_mac.mm', 499 'video/capture/mac/video_capture_device_avfoundation_mac.mm',
500 'video/capture/mac/video_capture_device_decklink_mac.h',
DaleCurtis 2014/09/03 20:56:24 Update build.gn too please.
mcasas 2014/09/04 10:00:36 Done.
501 'video/capture/mac/video_capture_device_decklink_mac.mm',
500 'video/capture/mac/video_capture_device_factory_mac.h', 502 'video/capture/mac/video_capture_device_factory_mac.h',
501 'video/capture/mac/video_capture_device_factory_mac.mm', 503 'video/capture/mac/video_capture_device_factory_mac.mm',
502 'video/capture/mac/video_capture_device_mac.h', 504 'video/capture/mac/video_capture_device_mac.h',
503 'video/capture/mac/video_capture_device_mac.mm', 505 'video/capture/mac/video_capture_device_mac.mm',
504 'video/capture/mac/video_capture_device_qtkit_mac.h', 506 'video/capture/mac/video_capture_device_qtkit_mac.h',
505 'video/capture/mac/video_capture_device_qtkit_mac.mm', 507 'video/capture/mac/video_capture_device_qtkit_mac.mm',
506 'video/capture/video_capture_device.cc', 508 'video/capture/video_capture_device.cc',
507 'video/capture/video_capture_device.h', 509 'video/capture/video_capture_device.h',
508 'video/capture/video_capture_device_factory.cc', 510 'video/capture/video_capture_device_factory.cc',
509 'video/capture/video_capture_device_factory.h', 511 'video/capture/video_capture_device_factory.h',
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
859 'audio/pulse/audio_manager_pulse.h', 861 'audio/pulse/audio_manager_pulse.h',
860 'audio/pulse/pulse_input.cc', 862 'audio/pulse/pulse_input.cc',
861 'audio/pulse/pulse_input.h', 863 'audio/pulse/pulse_input.h',
862 'audio/pulse/pulse_output.cc', 864 'audio/pulse/pulse_output.cc',
863 'audio/pulse/pulse_output.h', 865 'audio/pulse/pulse_output.h',
864 'audio/pulse/pulse_util.cc', 866 'audio/pulse/pulse_util.cc',
865 'audio/pulse/pulse_util.h', 867 'audio/pulse/pulse_util.h',
866 ], 868 ],
867 }], 869 }],
868 ['OS=="mac"', { 870 ['OS=="mac"', {
871 'dependencies': [
872 '../third_party/decklink/decklink.gyp:decklink',
Robert Sesek 2014/09/03 17:51:29 Has this gone through proper third_party review fo
DaleCurtis 2014/09/03 20:56:24 +1
mcasas 2014/09/04 10:00:36 rsesek@, dalecurtis@: http://crbug.com/408534 is d
873 ],
869 'link_settings': { 874 'link_settings': {
870 'libraries': [ 875 'libraries': [
871 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', 876 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
872 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 877 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
873 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 878 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
874 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework', 879 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
875 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 880 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
876 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 881 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
877 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework', 882 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework',
878 ], 883 ],
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after
1726 ], 1731 ],
1727 }], 1732 }],
1728 ], 1733 ],
1729 }], 1734 }],
1730 ], 1735 ],
1731 }, 1736 },
1732 ], 1737 ],
1733 }], 1738 }],
1734 ], 1739 ],
1735 } 1740 }
OLDNEW
« no previous file with comments | « no previous file | media/video/capture/mac/DEPS » ('j') | media/video/capture/mac/video_capture_device_decklink_mac.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698