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

Side by Side Diff: content/content_renderer.gypi

Issue 11308013: Android: Remove depenendency on libjingle_p2p and jingle_glue. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « build/all_android.gyp ('k') | jingle/jingle.gyp » ('j') | 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 'dependencies': [ 6 'dependencies': [
7 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../ppapi/ppapi_internal.gyp:ppapi_host', 9 '../ppapi/ppapi_internal.gyp:ppapi_host',
10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
11 '../ppapi/ppapi_internal.gyp:ppapi_shared', 11 '../ppapi/ppapi_internal.gyp:ppapi_shared',
12 '../skia/skia.gyp:skia', 12 '../skia/skia.gyp:skia',
13 '../third_party/hyphen/hyphen.gyp:hyphen', 13 '../third_party/hyphen/hyphen.gyp:hyphen',
14 '../third_party/icu/icu.gyp:icuuc', 14 '../third_party/icu/icu.gyp:icuuc',
15 '../third_party/icu/icu.gyp:icui18n', 15 '../third_party/icu/icu.gyp:icui18n',
16 '../third_party/libjingle/libjingle.gyp:libjingle', 16 '../third_party/libjingle/libjingle.gyp:libjingle',
17 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
18 '../third_party/npapi/npapi.gyp:npapi', 17 '../third_party/npapi/npapi.gyp:npapi',
19 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 18 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
20 '../ui/surface/surface.gyp:surface', 19 '../ui/surface/surface.gyp:surface',
21 '../v8/tools/gyp/v8.gyp:v8', 20 '../v8/tools/gyp/v8.gyp:v8',
22 '../webkit/support/webkit_support.gyp:glue', 21 '../webkit/support/webkit_support.gyp:glue',
23 '../webkit/support/webkit_support.gyp:webkit_media', 22 '../webkit/support/webkit_support.gyp:webkit_media',
24 '../webkit/support/webkit_support.gyp:webkit_gpu', 23 '../webkit/support/webkit_support.gyp:webkit_gpu',
25 ], 24 ],
26 'include_dirs': [ 25 'include_dirs': [
27 '..', 26 '..',
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 # TODO(jrg): remove the OS=="android" section? 304 # TODO(jrg): remove the OS=="android" section?
306 # http://crbug.com/113172 305 # http://crbug.com/113172
307 # Understand better how media_stream_ is tied into Chromium. 306 # Understand better how media_stream_ is tied into Chromium.
308 ['enable_webrtc==0 and OS=="android"', { 307 ['enable_webrtc==0 and OS=="android"', {
309 'sources/': [ 308 'sources/': [
310 ['exclude', '^renderer/media/media_stream_'], 309 ['exclude', '^renderer/media/media_stream_'],
311 ], 310 ],
312 }], 311 }],
313 ['enable_webrtc==1', { 312 ['enable_webrtc==1', {
314 'dependencies': [ 313 'dependencies': [
314 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
315 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection', 315 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection',
316 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system _wrappers', 316 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:system _wrappers',
317 '../third_party/webrtc/modules/modules.gyp:audio_device', 317 '../third_party/webrtc/modules/modules.gyp:audio_device',
318 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_core', 318 '../third_party/webrtc/video_engine/video_engine.gyp:video_engine_core',
319 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_core', 319 '../third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_core',
320 '<(DEPTH)/crypto/crypto.gyp:crypto', 320 '<(DEPTH)/crypto/crypto.gyp:crypto',
321 ], 321 ],
322 'sources': [ 322 'sources': [
323 'renderer/media/media_stream_center.cc', 323 'renderer/media/media_stream_center.cc',
324 'renderer/media/media_stream_dependency_factory.cc', 324 'renderer/media/media_stream_dependency_factory.cc',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 }], 364 }],
365 ], 365 ],
366 'target_conditions': [ 366 'target_conditions': [
367 ['OS=="android"', { 367 ['OS=="android"', {
368 'sources/': [ 368 'sources/': [
369 ['include', '^renderer/render_view_linux\\.cc$'], 369 ['include', '^renderer/render_view_linux\\.cc$'],
370 ], 370 ],
371 }], 371 }],
372 ], 372 ],
373 } 373 }
OLDNEW
« no previous file with comments | « build/all_android.gyp ('k') | jingle/jingle.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698