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

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

Powered by Google App Engine
This is Rietveld 408576698