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

Side by Side Diff: content/content_browser.gypi

Issue 23444072: Use libyuv in Android VideoCaptureController (not for Android WebView) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make explicit no libyuv for iOS builds. Created 7 years, 2 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 '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 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after
1281 ], 1281 ],
1282 }], 1282 }],
1283 ['OS!="mac" and OS!="ios"', { 1283 ['OS!="mac" and OS!="ios"', {
1284 'dependencies': [ 1284 'dependencies': [
1285 '../sandbox/sandbox.gyp:sandbox', 1285 '../sandbox/sandbox.gyp:sandbox',
1286 ], 1286 ],
1287 }], 1287 }],
1288 ['OS!="android" and OS!="ios"', { 1288 ['OS!="android" and OS!="ios"', {
1289 'dependencies': [ 1289 'dependencies': [
1290 'browser/tracing/tracing_resources.gyp:tracing_resources', 1290 'browser/tracing/tracing_resources.gyp:tracing_resources',
1291 ],
1292 }],
1293 ['android_webview_build==0 and OS!="ios"', {
1294 'dependencies': [
1291 '../third_party/libyuv/libyuv.gyp:libyuv', 1295 '../third_party/libyuv/libyuv.gyp:libyuv',
1292 ], 1296 ],
1297 }, { # android_webview_build!=0
1298 'defines': ['AVOID_LIBYUV_FOR_ANDROID_WEBVIEW'],
wjia(left Chromium) 2013/09/25 18:50:25 Considering the condition for this branch is 'andr
mcasas 2013/09/26 11:28:56 Done.
1293 }], 1299 }],
1294 ['enable_webrtc==1', { 1300 ['enable_webrtc==1', {
1295 'dependencies': [ 1301 'dependencies': [
1296 '../jingle/jingle.gyp:jingle_glue', 1302 '../jingle/jingle.gyp:jingle_glue',
1297 ], 1303 ],
1298 'sources': [ 1304 'sources': [
1299 'browser/renderer_host/media/peer_connection_tracker_host.cc', 1305 'browser/renderer_host/media/peer_connection_tracker_host.cc',
1300 'browser/renderer_host/media/peer_connection_tracker_host.h', 1306 'browser/renderer_host/media/peer_connection_tracker_host.h',
1301 'browser/renderer_host/media/webrtc_identity_service_host.cc', 1307 'browser/renderer_host/media/webrtc_identity_service_host.cc',
1302 'browser/renderer_host/media/webrtc_identity_service_host.h', 1308 'browser/renderer_host/media/webrtc_identity_service_host.h',
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1549 '../third_party/speex/speex.gyp:libspeex', 1555 '../third_party/speex/speex.gyp:libspeex',
1550 ], 1556 ],
1551 }], 1557 }],
1552 ['linux_use_libgps==1', { 1558 ['linux_use_libgps==1', {
1553 'dependencies': [ 1559 'dependencies': [
1554 '../build/linux/system.gyp:libgps', 1560 '../build/linux/system.gyp:libgps',
1555 ], 1561 ],
1556 }], 1562 }],
1557 ], 1563 ],
1558 } 1564 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698