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

Side by Side Diff: content/content_browser.gypi

Issue 11366084: Android: disable use of libyuv. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tidy up ifdef for header Created 8 years, 1 month 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
« no previous file with comments | « content/browser/renderer_host/media/video_capture_controller.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['chromeos==1', { 8 ['chromeos==1', {
9 'use_libgps%': 1, 9 'use_libgps%': 1,
10 }, { # chromeos==0 10 }, { # chromeos==0
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 ['include', '^browser/web_contents/navigation_entry_impl\\.cc$'], 913 ['include', '^browser/web_contents/navigation_entry_impl\\.cc$'],
914 ], 914 ],
915 }, { # OS!="ios" 915 }, { # OS!="ios"
916 'dependencies': [ 916 'dependencies': [
917 'browser/debugger/devtools_resources.gyp:devtools_resources', 917 'browser/debugger/devtools_resources.gyp:devtools_resources',
918 '../cc/cc.gyp:cc', 918 '../cc/cc.gyp:cc',
919 '../net/net.gyp:http_server', 919 '../net/net.gyp:http_server',
920 '../ppapi/ppapi_internal.gyp:ppapi_ipc', 920 '../ppapi/ppapi_internal.gyp:ppapi_ipc',
921 '../printing/printing.gyp:printing', 921 '../printing/printing.gyp:printing',
922 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 922 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
923 '../third_party/libyuv/libyuv.gyp:libyuv',
924 '../ui/surface/surface.gyp:surface', 923 '../ui/surface/surface.gyp:surface',
925 '../webkit/support/webkit_support.gyp:webkit_resources', 924 '../webkit/support/webkit_support.gyp:webkit_resources',
926 '../webkit/support/webkit_support.gyp:webkit_storage', 925 '../webkit/support/webkit_support.gyp:webkit_storage',
927 '../webkit/support/webkit_support.gyp:webkit_strings', 926 '../webkit/support/webkit_support.gyp:webkit_strings',
928 ], 927 ],
929 }], 928 }],
930 ['OS!="mac" and OS!="ios"', { 929 ['OS!="mac" and OS!="ios"', {
931 'dependencies': [ 930 'dependencies': [
932 '../sandbox/sandbox.gyp:sandbox', 931 '../sandbox/sandbox.gyp:sandbox',
933 ], 932 ],
934 }], 933 }],
934 ['OS!="android" and OS!="ios"', {
935 'dependencies': [
936 '../third_party/libyuv/libyuv.gyp:libyuv',
937 ],
938 }],
935 ['enable_webrtc==1', { 939 ['enable_webrtc==1', {
936 'sources': [ 940 'sources': [
937 'browser/renderer_host/p2p/socket_host.cc', 941 'browser/renderer_host/p2p/socket_host.cc',
938 'browser/renderer_host/p2p/socket_host.h', 942 'browser/renderer_host/p2p/socket_host.h',
939 'browser/renderer_host/p2p/socket_host_tcp.cc', 943 'browser/renderer_host/p2p/socket_host_tcp.cc',
940 'browser/renderer_host/p2p/socket_host_tcp.h', 944 'browser/renderer_host/p2p/socket_host_tcp.h',
941 'browser/renderer_host/p2p/socket_host_tcp_server.cc', 945 'browser/renderer_host/p2p/socket_host_tcp_server.cc',
942 'browser/renderer_host/p2p/socket_host_tcp_server.h', 946 'browser/renderer_host/p2p/socket_host_tcp_server.h',
943 'browser/renderer_host/p2p/socket_host_udp.cc', 947 'browser/renderer_host/p2p/socket_host_udp.cc',
944 'browser/renderer_host/p2p/socket_host_udp.h', 948 'browser/renderer_host/p2p/socket_host_udp.h',
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
1129 # the USE_LIBGPS setting propagates to the "real" dependent target, 1133 # the USE_LIBGPS setting propagates to the "real" dependent target,
1130 # we use all_dependent_settings here. 1134 # we use all_dependent_settings here.
1131 'all_dependent_settings': { 1135 'all_dependent_settings': {
1132 'defines': [ 1136 'defines': [
1133 'USE_LIBGPS', 1137 'USE_LIBGPS',
1134 ], 1138 ],
1135 }, 1139 },
1136 }], 1140 }],
1137 ], 1141 ],
1138 } 1142 }
OLDNEW
« no previous file with comments | « content/browser/renderer_host/media/video_capture_controller.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698