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

Side by Side Diff: content/content_browser.gypi

Issue 11680002: Implement screen capturer for MediaStream API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
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 'browser/speech/proto/speech_proto.gyp:speech_proto', 7 'browser/speech/proto/speech_proto.gyp:speech_proto',
8 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
10 '../google_apis/google_apis.gyp:google_apis', 10 '../google_apis/google_apis.gyp:google_apis',
(...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after
941 'dependencies': [ 941 'dependencies': [
942 '../sandbox/sandbox.gyp:sandbox', 942 '../sandbox/sandbox.gyp:sandbox',
943 ], 943 ],
944 }], 944 }],
945 ['OS!="android" and OS!="ios"', { 945 ['OS!="android" and OS!="ios"', {
946 'dependencies': [ 946 'dependencies': [
947 '../third_party/libyuv/libyuv.gyp:libyuv', 947 '../third_party/libyuv/libyuv.gyp:libyuv',
948 ], 948 ],
949 }], 949 }],
950 ['enable_webrtc==1', { 950 ['enable_webrtc==1', {
951 'dependencies': [
952 '../remoting/remoting.gyp:remoting_screen_capturer',
953 ],
951 'sources': [ 954 'sources': [
955 'browser/renderer_host/media/screen_capturer.cc',
956 'browser/renderer_host/media/screen_capturer.h',
952 'browser/renderer_host/p2p/socket_host.cc', 957 'browser/renderer_host/p2p/socket_host.cc',
953 'browser/renderer_host/p2p/socket_host.h', 958 'browser/renderer_host/p2p/socket_host.h',
954 'browser/renderer_host/p2p/socket_host_tcp.cc', 959 'browser/renderer_host/p2p/socket_host_tcp.cc',
955 'browser/renderer_host/p2p/socket_host_tcp.h', 960 'browser/renderer_host/p2p/socket_host_tcp.h',
956 'browser/renderer_host/p2p/socket_host_tcp_server.cc', 961 'browser/renderer_host/p2p/socket_host_tcp_server.cc',
957 'browser/renderer_host/p2p/socket_host_tcp_server.h', 962 'browser/renderer_host/p2p/socket_host_tcp_server.h',
958 'browser/renderer_host/p2p/socket_host_udp.cc', 963 'browser/renderer_host/p2p/socket_host_udp.cc',
959 'browser/renderer_host/p2p/socket_host_udp.h', 964 'browser/renderer_host/p2p/socket_host_udp.h',
960 'browser/renderer_host/p2p/socket_dispatcher_host.cc', 965 'browser/renderer_host/p2p/socket_dispatcher_host.cc',
961 'browser/renderer_host/p2p/socket_dispatcher_host.h', 966 'browser/renderer_host/p2p/socket_dispatcher_host.h',
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
1158 ['exclude', '^browser/speech/'], 1163 ['exclude', '^browser/speech/'],
1159 ], 1164 ],
1160 }], 1165 }],
1161 ['linux_use_libgps==1', { 1166 ['linux_use_libgps==1', {
1162 'dependencies': [ 1167 'dependencies': [
1163 '../build/linux/system.gyp:libgps', 1168 '../build/linux/system.gyp:libgps',
1164 ], 1169 ],
1165 }], 1170 }],
1166 ], 1171 ],
1167 } 1172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698