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

Side by Side Diff: media/media.gyp

Issue 1106563002: FakeVideoCaptureDevice: add support for capturing into Dma-Bufs using VGEM in CrOs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ermircan@ comments; removed GpuMemoryBuffer modifications (go in other CL) Created 5 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
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 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 '--include="media/ozone/media_ozone_platform.h"' 819 '--include="media/ozone/media_ozone_platform.h"'
820 ], 820 ],
821 }, 821 },
822 ] 822 ]
823 }, { 823 }, {
824 'sources!': [ 824 'sources!': [
825 'ozone/media_ozone_platform.cc', 825 'ozone/media_ozone_platform.cc',
826 'ozone/media_ozone_platform.h', 826 'ozone/media_ozone_platform.h',
827 ] 827 ]
828 }], 828 }],
829 ['chromeos==1 and use_ozone==1', {
830 'dependencies': [
831 '../build/linux/system.gyp:libdrm',
832 ]
833 }],
829 ['OS!="linux"', { 834 ['OS!="linux"', {
830 'sources!': [ 835 'sources!': [
831 'audio/cras/audio_manager_cras.cc', 836 'audio/cras/audio_manager_cras.cc',
832 'audio/cras/audio_manager_cras.h', 837 'audio/cras/audio_manager_cras.h',
833 'audio/cras/cras_input.cc', 838 'audio/cras/cras_input.cc',
834 'audio/cras/cras_input.h', 839 'audio/cras/cras_input.h',
835 'audio/cras/cras_unified.cc', 840 'audio/cras/cras_unified.cc',
836 'audio/cras/cras_unified.h', 841 'audio/cras/cras_unified.h',
837 ], 842 ],
838 }], 843 }],
(...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1939 '../build/isolate.gypi', 1944 '../build/isolate.gypi',
1940 ], 1945 ],
1941 'sources': [ 1946 'sources': [
1942 'media_unittests.isolate', 1947 'media_unittests.isolate',
1943 ], 1948 ],
1944 }, 1949 },
1945 ], 1950 ],
1946 }], 1951 }],
1947 ], 1952 ],
1948 } 1953 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698