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

Side by Side Diff: media/media.gyp

Issue 967793002: Linux Video Capture: Add V4L2VideoCaptureDelegate{Single,Multi}Plane. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: magjed@ comments Created 5 years, 9 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/fake_video_capture_device_factory.cc » ('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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 'video/capture/android/video_capture_device_factory_android.cc', 561 'video/capture/android/video_capture_device_factory_android.cc',
562 'video/capture/android/video_capture_device_factory_android.h', 562 'video/capture/android/video_capture_device_factory_android.h',
563 'video/capture/fake_video_capture_device.cc', 563 'video/capture/fake_video_capture_device.cc',
564 'video/capture/fake_video_capture_device.h', 564 'video/capture/fake_video_capture_device.h',
565 'video/capture/fake_video_capture_device_factory.cc', 565 'video/capture/fake_video_capture_device_factory.cc',
566 'video/capture/fake_video_capture_device_factory.h', 566 'video/capture/fake_video_capture_device_factory.h',
567 'video/capture/file_video_capture_device.cc', 567 'video/capture/file_video_capture_device.cc',
568 'video/capture/file_video_capture_device.h', 568 'video/capture/file_video_capture_device.h',
569 'video/capture/file_video_capture_device_factory.cc', 569 'video/capture/file_video_capture_device_factory.cc',
570 'video/capture/file_video_capture_device_factory.h', 570 'video/capture/file_video_capture_device_factory.h',
571 'video/capture/linux/v4l2_capture_delegate.cc',
572 'video/capture/linux/v4l2_capture_delegate.h',
573 'video/capture/linux/v4l2_capture_delegate_multi_plane.cc',
574 'video/capture/linux/v4l2_capture_delegate_multi_plane.h',
575 'video/capture/linux/v4l2_capture_delegate_single_plane.cc',
576 'video/capture/linux/v4l2_capture_delegate_single_plane.h',
571 'video/capture/linux/video_capture_device_chromeos.cc', 577 'video/capture/linux/video_capture_device_chromeos.cc',
572 'video/capture/linux/video_capture_device_chromeos.h', 578 'video/capture/linux/video_capture_device_chromeos.h',
573 'video/capture/linux/video_capture_device_factory_linux.cc', 579 'video/capture/linux/video_capture_device_factory_linux.cc',
574 'video/capture/linux/video_capture_device_factory_linux.h', 580 'video/capture/linux/video_capture_device_factory_linux.h',
575 'video/capture/linux/video_capture_device_linux.cc', 581 'video/capture/linux/video_capture_device_linux.cc',
576 'video/capture/linux/video_capture_device_linux.h', 582 'video/capture/linux/video_capture_device_linux.h',
577 'video/capture/mac/platform_video_capturing_mac.h', 583 'video/capture/mac/platform_video_capturing_mac.h',
578 'video/capture/mac/video_capture_device_avfoundation_mac.h', 584 'video/capture/mac/video_capture_device_avfoundation_mac.h',
579 'video/capture/mac/video_capture_device_avfoundation_mac.mm', 585 'video/capture/mac/video_capture_device_avfoundation_mac.mm',
580 'video/capture/mac/video_capture_device_decklink_mac.h', 586 'video/capture/mac/video_capture_device_decklink_mac.h',
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 'sources/': [ 757 'sources/': [
752 ['exclude', '(^|/)alsa/'], 758 ['exclude', '(^|/)alsa/'],
753 ['exclude', '_alsa\\.(h|cc)$'], 759 ['exclude', '_alsa\\.(h|cc)$'],
754 ], 760 ],
755 }], 761 }],
756 ['OS!="openbsd"', { 762 ['OS!="openbsd"', {
757 'sources!': [ 763 'sources!': [
758 'audio/openbsd/audio_manager_openbsd.cc', 764 'audio/openbsd/audio_manager_openbsd.cc',
759 'audio/openbsd/audio_manager_openbsd.h', 765 'audio/openbsd/audio_manager_openbsd.h',
760 ], 766 ],
767 }, { # else: openbsd==1
768 'sources!': [
769 'video/capture/linux/v4l2_capture_delegate_multi_plane.cc',
770 'video/capture/linux/v4l2_capture_delegate_multi_plane.h',
771 ],
761 }], 772 }],
762 ['OS=="linux"', { 773 ['OS=="linux"', {
763 'conditions': [ 774 'conditions': [
764 ['use_x11==1', { 775 ['use_x11==1', {
765 'dependencies': [ 776 'dependencies': [
766 '../build/linux/system.gyp:x11', 777 '../build/linux/system.gyp:x11',
767 '../build/linux/system.gyp:xdamage', 778 '../build/linux/system.gyp:xdamage',
768 '../build/linux/system.gyp:xext', 779 '../build/linux/system.gyp:xext',
769 '../build/linux/system.gyp:xfixes', 780 '../build/linux/system.gyp:xfixes',
770 '../build/linux/system.gyp:xtst', 781 '../build/linux/system.gyp:xtst',
(...skipping 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after
1946 '../build/isolate.gypi', 1957 '../build/isolate.gypi',
1947 ], 1958 ],
1948 'sources': [ 1959 'sources': [
1949 'media_unittests.isolate', 1960 'media_unittests.isolate',
1950 ], 1961 ],
1951 }, 1962 },
1952 ], 1963 ],
1953 }], 1964 }],
1954 ], 1965 ],
1955 } 1966 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | media/video/capture/fake_video_capture_device_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698