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

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: scoped_refptr cannot be negated in logical operations, use .get() first. 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
« no previous file with comments | « media/BUILD.gn ('k') | media/video/capture/mac/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 'video/capture/file_video_capture_device_factory.cc', 497 'video/capture/file_video_capture_device_factory.cc',
498 'video/capture/linux/video_capture_device_factory_linux.cc', 498 'video/capture/linux/video_capture_device_factory_linux.cc',
499 'video/capture/linux/video_capture_device_factory_linux.h', 499 'video/capture/linux/video_capture_device_factory_linux.h',
500 'video/capture/linux/video_capture_device_linux.cc', 500 'video/capture/linux/video_capture_device_linux.cc',
501 'video/capture/linux/video_capture_device_linux.h', 501 'video/capture/linux/video_capture_device_linux.h',
502 'video/capture/linux/video_capture_device_chromeos.cc', 502 'video/capture/linux/video_capture_device_chromeos.cc',
503 'video/capture/linux/video_capture_device_chromeos.h', 503 'video/capture/linux/video_capture_device_chromeos.h',
504 'video/capture/mac/platform_video_capturing_mac.h', 504 'video/capture/mac/platform_video_capturing_mac.h',
505 'video/capture/mac/video_capture_device_avfoundation_mac.h', 505 'video/capture/mac/video_capture_device_avfoundation_mac.h',
506 'video/capture/mac/video_capture_device_avfoundation_mac.mm', 506 'video/capture/mac/video_capture_device_avfoundation_mac.mm',
507 'video/capture/mac/video_capture_device_decklink_mac.h',
508 'video/capture/mac/video_capture_device_decklink_mac.mm',
507 'video/capture/mac/video_capture_device_factory_mac.h', 509 'video/capture/mac/video_capture_device_factory_mac.h',
508 'video/capture/mac/video_capture_device_factory_mac.mm', 510 'video/capture/mac/video_capture_device_factory_mac.mm',
509 'video/capture/mac/video_capture_device_mac.h', 511 'video/capture/mac/video_capture_device_mac.h',
510 'video/capture/mac/video_capture_device_mac.mm', 512 'video/capture/mac/video_capture_device_mac.mm',
511 'video/capture/mac/video_capture_device_qtkit_mac.h', 513 'video/capture/mac/video_capture_device_qtkit_mac.h',
512 'video/capture/mac/video_capture_device_qtkit_mac.mm', 514 'video/capture/mac/video_capture_device_qtkit_mac.mm',
513 'video/capture/video_capture_device.cc', 515 'video/capture/video_capture_device.cc',
514 'video/capture/video_capture_device.h', 516 'video/capture/video_capture_device.h',
515 'video/capture/video_capture_device_factory.cc', 517 'video/capture/video_capture_device_factory.cc',
516 'video/capture/video_capture_device_factory.h', 518 'video/capture/video_capture_device_factory.h',
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 'audio/pulse/audio_manager_pulse.h', 868 'audio/pulse/audio_manager_pulse.h',
867 'audio/pulse/pulse_input.cc', 869 'audio/pulse/pulse_input.cc',
868 'audio/pulse/pulse_input.h', 870 'audio/pulse/pulse_input.h',
869 'audio/pulse/pulse_output.cc', 871 'audio/pulse/pulse_output.cc',
870 'audio/pulse/pulse_output.h', 872 'audio/pulse/pulse_output.h',
871 'audio/pulse/pulse_util.cc', 873 'audio/pulse/pulse_util.cc',
872 'audio/pulse/pulse_util.h', 874 'audio/pulse/pulse_util.h',
873 ], 875 ],
874 }], 876 }],
875 ['OS=="mac"', { 877 ['OS=="mac"', {
878 'dependencies': [
879 '../third_party/decklink/decklink.gyp:decklink',
880 ],
876 'link_settings': { 881 'link_settings': {
877 'libraries': [ 882 'libraries': [
878 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', 883 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
879 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 884 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
880 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 885 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
881 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework', 886 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
882 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 887 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
883 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 888 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
884 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework', 889 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework',
885 ], 890 ],
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after
1873 ], 1878 ],
1874 }], 1879 }],
1875 ], 1880 ],
1876 }], 1881 }],
1877 ], 1882 ],
1878 }, 1883 },
1879 ], 1884 ],
1880 }], 1885 }],
1881 ], 1886 ],
1882 } 1887 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | media/video/capture/mac/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698