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

Side by Side Diff: media/media.gyp

Issue 262383003: Add Intel Perceptual Computing SDK based depth video capture for Windows Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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/base/media_switches.cc ('k') | media/video/capture/video_capture_device.h » ('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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 'video/capture/win/filter_base_win.h', 488 'video/capture/win/filter_base_win.h',
489 'video/capture/win/pin_base_win.cc', 489 'video/capture/win/pin_base_win.cc',
490 'video/capture/win/pin_base_win.h', 490 'video/capture/win/pin_base_win.h',
491 'video/capture/win/sink_filter_observer_win.h', 491 'video/capture/win/sink_filter_observer_win.h',
492 'video/capture/win/sink_filter_win.cc', 492 'video/capture/win/sink_filter_win.cc',
493 'video/capture/win/sink_filter_win.h', 493 'video/capture/win/sink_filter_win.h',
494 'video/capture/win/sink_input_pin_win.cc', 494 'video/capture/win/sink_input_pin_win.cc',
495 'video/capture/win/sink_input_pin_win.h', 495 'video/capture/win/sink_input_pin_win.h',
496 'video/capture/win/video_capture_device_mf_win.cc', 496 'video/capture/win/video_capture_device_mf_win.cc',
497 'video/capture/win/video_capture_device_mf_win.h', 497 'video/capture/win/video_capture_device_mf_win.h',
498 'video/capture/win/video_capture_device_pxc_win.cc',
499 'video/capture/win/video_capture_device_pxc_win.h',
498 'video/capture/win/video_capture_device_win.cc', 500 'video/capture/win/video_capture_device_win.cc',
499 'video/capture/win/video_capture_device_win.h', 501 'video/capture/win/video_capture_device_win.h',
500 'video/picture.cc', 502 'video/picture.cc',
501 'video/picture.h', 503 'video/picture.h',
502 'video/video_decode_accelerator.cc', 504 'video/video_decode_accelerator.cc',
503 'video/video_decode_accelerator.h', 505 'video/video_decode_accelerator.h',
504 'video/video_encode_accelerator.cc', 506 'video/video_encode_accelerator.cc',
505 'video/video_encode_accelerator.h', 507 'video/video_encode_accelerator.h',
506 'formats/common/offset_byte_queue.cc', 508 'formats/common/offset_byte_queue.cc',
507 'formats/common/offset_byte_queue.h', 509 'formats/common/offset_byte_queue.h',
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 794 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
793 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 795 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
794 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework', 796 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
795 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 797 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
796 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 798 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
797 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework', 799 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework',
798 ], 800 ],
799 }, 801 },
800 }], 802 }],
801 ['OS=="win"', { 803 ['OS=="win"', {
804 'include_dirs': [
805 '<!(echo %PCSDK_DIR%\include)',
806 ],
802 'link_settings': { 807 'link_settings': {
808 'library_dirs': [
809 '<!(echo %PCSDK_DIR%\lib\Win32)',
810 ],
803 'libraries': [ 811 'libraries': [
804 '-lmf.lib', 812 '-lmf.lib',
805 '-lmfplat.lib', 813 '-lmfplat.lib',
806 '-lmfreadwrite.lib', 814 '-lmfreadwrite.lib',
807 '-lmfuuid.lib', 815 '-lmfuuid.lib',
816 '-llibpxc.lib',
808 ], 817 ],
809 }, 818 },
810 # Specify delayload for media.dll. 819 # Specify delayload for media.dll.
811 'msvs_settings': { 820 'msvs_settings': {
812 'VCLinkerTool': { 821 'VCLinkerTool': {
813 'DelayLoadDLLs': [ 822 'DelayLoadDLLs': [
814 'mf.dll', 823 'mf.dll',
815 'mfplat.dll', 824 'mfplat.dll',
816 'mfreadwrite.dll', 825 'mfreadwrite.dll',
817 ], 826 ],
(...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
1681 ], 1690 ],
1682 }], 1691 }],
1683 ], 1692 ],
1684 }], 1693 }],
1685 ], 1694 ],
1686 }, 1695 },
1687 ], 1696 ],
1688 }], 1697 }],
1689 ], 1698 ],
1690 } 1699 }
OLDNEW
« no previous file with comments | « media/base/media_switches.cc ('k') | media/video/capture/video_capture_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698