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

Side by Side Diff: content/content_browser.gypi

Issue 1140113002: Implement screen capture for android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add ScreenCaptureMachineAndroid which inherited from content::VideoCaptureMachine Created 5 years, 6 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/battery/battery.gyp:device_battery', 9 '../device/battery/battery.gyp:device_battery',
10 '../device/battery/battery.gyp:device_battery_mojo_bindings', 10 '../device/battery/battery.gyp:device_battery_mojo_bindings',
(...skipping 1790 matching lines...) Expand 10 before | Expand all | Expand 10 after
1801 ], 1801 ],
1802 'sources': [ 1802 'sources': [
1803 '<@(webrtc_browser_sources)', 1803 '<@(webrtc_browser_sources)',
1804 ], 1804 ],
1805 }], 1805 }],
1806 ['enable_webrtc==1 and OS=="linux"', { 1806 ['enable_webrtc==1 and OS=="linux"', {
1807 'dependencies': [ 1807 'dependencies': [
1808 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', 1808 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc',
1809 ], 1809 ],
1810 }], 1810 }],
1811 ['enable_webrtc==1 and (OS=="linux" or OS=="mac" or OS=="win")', { 1811 ['enable_webrtc==1 and (OS=="linux" or OS=="mac" or OS=="win" or OS=="androi d")', {
1812 'sources': [ 1812 'sources': [
1813 'browser/media/capture/desktop_capture_device.cc', 1813 'browser/media/capture/desktop_capture_device.cc',
1814 'browser/media/capture/desktop_capture_device.h', 1814 'browser/media/capture/desktop_capture_device.h',
1815 'browser/media/capture/desktop_capture_device_uma_types.cc', 1815 'browser/media/capture/desktop_capture_device_uma_types.cc',
1816 'browser/media/capture/desktop_capture_device_uma_types.h', 1816 'browser/media/capture/desktop_capture_device_uma_types.h',
1817 ], 1817 ],
1818 'dependencies': [ 1818 'dependencies': [
1819 '../third_party/webrtc/modules/modules.gyp:desktop_capture', 1819 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
1820 ], 1820 ],
1821 'defines': [ 1821 'defines': [
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
2040 'browser/media/media_web_contents_observer.h', 2040 'browser/media/media_web_contents_observer.h',
2041 ], 2041 ],
2042 }], 2042 }],
2043 ['OS == "linux" and use_openssl==1', { 2043 ['OS == "linux" and use_openssl==1', {
2044 'dependencies': [ 2044 'dependencies': [
2045 '../third_party/boringssl/boringssl.gyp:boringssl', 2045 '../third_party/boringssl/boringssl.gyp:boringssl',
2046 ], 2046 ],
2047 }], 2047 }],
2048 ], 2048 ],
2049 } 2049 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698