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

Side by Side Diff: content/content_browser.gypi

Issue 1064963002: VideoCapture: add support for GpuMemoryBuffer allocation and lifetime mgmt in VideoCaptureBufferPool (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base_static', 7 '../base/base.gyp:base_static',
8 '../crypto/crypto.gyp:crypto', 8 '../crypto/crypto.gyp:crypto',
9 '../device/vibration/vibration.gyp:device_vibration', 9 '../device/vibration/vibration.gyp:device_vibration',
10 '../device/vibration/vibration.gyp:device_vibration_mojo_bindings', 10 '../device/vibration/vibration.gyp:device_vibration_mojo_bindings',
(...skipping 1792 matching lines...) Expand 10 before | Expand all | Expand 10 after
1803 ], 1803 ],
1804 }], 1804 }],
1805 ['enable_webrtc==1 and use_aura==1', { 1805 ['enable_webrtc==1 and use_aura==1', {
1806 'sources': [ 1806 'sources': [
1807 "browser/media/capture/aura_window_capture_machine.cc", 1807 "browser/media/capture/aura_window_capture_machine.cc",
1808 "browser/media/capture/aura_window_capture_machine.h", 1808 "browser/media/capture/aura_window_capture_machine.h",
1809 'browser/media/capture/desktop_capture_device_aura.cc', 1809 'browser/media/capture/desktop_capture_device_aura.cc',
1810 'browser/media/capture/desktop_capture_device_aura.h', 1810 'browser/media/capture/desktop_capture_device_aura.h',
1811 ], 1811 ],
1812 }], 1812 }],
1813 ['enable_webrtc==1 and (OS=="linux" or OS=="mac")', {
1814 'sources': [
1815 'browser/renderer_host/media/video_capture_texture_wrapper.cc',
1816 'browser/renderer_host/media/video_capture_texture_wrapper.h',
1817 ],
1818 }],
1819 ['OS=="win"', { 1813 ['OS=="win"', {
1820 'dependencies': [ 1814 'dependencies': [
1821 # For accessibility 1815 # For accessibility
1822 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', 1816 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
1823 '../third_party/isimpledom/isimpledom.gyp:isimpledom', 1817 '../third_party/isimpledom/isimpledom.gyp:isimpledom',
1824 ], 1818 ],
1825 'sources/': [ 1819 'sources/': [
1826 ['exclude', '^browser/device_sensors/data_fetcher_shared_memory_default. cc$'], 1820 ['exclude', '^browser/device_sensors/data_fetcher_shared_memory_default. cc$'],
1827 ], 1821 ],
1828 'defines': [ 1822 'defines': [
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
2026 'browser/media/media_web_contents_observer.h', 2020 'browser/media/media_web_contents_observer.h',
2027 ], 2021 ],
2028 }], 2022 }],
2029 ['OS == "linux" and use_openssl==1', { 2023 ['OS == "linux" and use_openssl==1', {
2030 'dependencies': [ 2024 'dependencies': [
2031 '../third_party/boringssl/boringssl.gyp:boringssl', 2025 '../third_party/boringssl/boringssl.gyp:boringssl',
2032 ], 2026 ],
2033 }], 2027 }],
2034 ], 2028 ],
2035 } 2029 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698