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

Side by Side Diff: content/content_browser.gypi

Issue 974513002: content: Split out VideoCaptureMachine from DesktopCaptureDeviceAura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move DesktopCaptureDeviceAura code to the correct place and move task posting into ctor. 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
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 1733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1744 '<@(webrtc_browser_sources)', 1744 '<@(webrtc_browser_sources)',
1745 ], 1745 ],
1746 }], 1746 }],
1747 ['enable_webrtc==1 and OS=="linux"', { 1747 ['enable_webrtc==1 and OS=="linux"', {
1748 'dependencies': [ 1748 'dependencies': [
1749 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', 1749 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc',
1750 ], 1750 ],
1751 }], 1751 }],
1752 ['enable_webrtc==1 and (OS=="linux" or OS=="mac" or OS=="win")', { 1752 ['enable_webrtc==1 and (OS=="linux" or OS=="mac" or OS=="win")', {
1753 'sources': [ 1753 'sources': [
1754 "browser/media/capture/aura_window_capture_machine.cc",
1755 "browser/media/capture/aura_window_capture_machine.h",
1754 'browser/media/capture/desktop_capture_device.cc', 1756 'browser/media/capture/desktop_capture_device.cc',
1755 'browser/media/capture/desktop_capture_device.h', 1757 'browser/media/capture/desktop_capture_device.h',
1756 'browser/media/capture/desktop_capture_device_aura.cc', 1758 'browser/media/capture/desktop_capture_device_aura.cc',
1757 'browser/media/capture/desktop_capture_device_aura.h', 1759 'browser/media/capture/desktop_capture_device_aura.h',
1758 'browser/media/capture/desktop_capture_device_uma_types.cc', 1760 'browser/media/capture/desktop_capture_device_uma_types.cc',
1759 'browser/media/capture/desktop_capture_device_uma_types.h', 1761 'browser/media/capture/desktop_capture_device_uma_types.h',
1760 ], 1762 ],
1761 'dependencies': [ 1763 'dependencies': [
1762 '../third_party/webrtc/modules/modules.gyp:desktop_capture', 1764 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
1763 ], 1765 ],
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
1974 'browser/media/media_web_contents_observer.h', 1976 'browser/media/media_web_contents_observer.h',
1975 ], 1977 ],
1976 }], 1978 }],
1977 ['OS == "linux" and use_openssl==1', { 1979 ['OS == "linux" and use_openssl==1', {
1978 'dependencies': [ 1980 'dependencies': [
1979 '../third_party/boringssl/boringssl.gyp:boringssl', 1981 '../third_party/boringssl/boringssl.gyp:boringssl',
1980 ], 1982 ],
1981 }], 1983 }],
1982 ], 1984 ],
1983 } 1985 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698