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

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 937 matching lines...) Expand 10 before | Expand all | Expand 10 after
948 ['OS!="mac" and OS!="ios"', { 948 ['OS!="mac" and OS!="ios"', {
949 'dependencies': [ 949 'dependencies': [
950 '../sandbox/sandbox.gyp:sandbox', 950 '../sandbox/sandbox.gyp:sandbox',
951 ], 951 ],
952 }], 952 }],
953 ['OS!="android" and OS!="ios"', { 953 ['OS!="android" and OS!="ios"', {
954 'dependencies': [ 954 'dependencies': [
955 '../third_party/libyuv/libyuv.gyp:libyuv', 955 '../third_party/libyuv/libyuv.gyp:libyuv',
956 ], 956 ],
957 }], 957 }],
958 ['(OS=="win" or OS=="mac" or OS=="linux") and enable_webrtc==1', {
959 'dependencies': [
960 '../remoting/remoting.gyp:remoting_screen_capturer',
961 ],
962 'sources': [
963 'browser/renderer_host/media/screen_capturer.cc',
964 'browser/renderer_host/media/screen_capturer.h',
965 ],
966 }],
958 ['enable_webrtc==1', { 967 ['enable_webrtc==1', {
959 'sources': [ 968 'sources': [
960 'browser/media/webrtc_internals.cc', 969 'browser/media/webrtc_internals.cc',
961 'browser/media/webrtc_internals.h', 970 'browser/media/webrtc_internals.h',
962 'browser/renderer_host/media/peer_connection_tracker_host.cc', 971 'browser/renderer_host/media/peer_connection_tracker_host.cc',
963 'browser/renderer_host/media/peer_connection_tracker_host.h', 972 'browser/renderer_host/media/peer_connection_tracker_host.h',
964 'browser/renderer_host/p2p/socket_host.cc', 973 'browser/renderer_host/p2p/socket_host.cc',
965 'browser/renderer_host/p2p/socket_host.h', 974 'browser/renderer_host/p2p/socket_host.h',
966 'browser/renderer_host/p2p/socket_host_tcp.cc', 975 'browser/renderer_host/p2p/socket_host_tcp.cc',
967 'browser/renderer_host/p2p/socket_host_tcp.h', 976 'browser/renderer_host/p2p/socket_host_tcp.h',
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
1167 ['exclude', '^browser/speech/'], 1176 ['exclude', '^browser/speech/'],
1168 ], 1177 ],
1169 }], 1178 }],
1170 ['linux_use_libgps==1', { 1179 ['linux_use_libgps==1', {
1171 'dependencies': [ 1180 'dependencies': [
1172 '../build/linux/system.gyp:libgps', 1181 '../build/linux/system.gyp:libgps',
1173 ], 1182 ],
1174 }], 1183 }],
1175 ], 1184 ],
1176 } 1185 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698