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

Side by Side Diff: content/content_renderer.gypi

Issue 11577031: Exclude more plugins code for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../skia/skia.gyp:skia', 9 '../skia/skia.gyp:skia',
10 '../third_party/hyphen/hyphen.gyp:hyphen', 10 '../third_party/hyphen/hyphen.gyp:hyphen',
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 ['enable_plugins==1', { 379 ['enable_plugins==1', {
380 'dependencies': [ 380 'dependencies': [
381 '../ppapi/ppapi_internal.gyp:ppapi_host', 381 '../ppapi/ppapi_internal.gyp:ppapi_host',
382 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 382 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
383 '../ppapi/ppapi_internal.gyp:ppapi_shared', 383 '../ppapi/ppapi_internal.gyp:ppapi_shared',
384 ], 384 ],
385 }, { # enable_plugins==0 385 }, { # enable_plugins==0
386 'sources/': [ 386 'sources/': [
387 ['exclude', '^renderer/pepper/'], 387 ['exclude', '^renderer/pepper/'],
388 ], 388 ],
389 'sources!': [
390 'renderer/render_widget_fullscreen_pepper.cc',
391 'renderer/render_widget_fullscreen_pepper.h',
392 ],
389 }], 393 }],
390 ['java_bridge==1', { 394 ['java_bridge==1', {
391 'defines': [ 395 'defines': [
392 'ENABLE_JAVA_BRIDGE', 396 'ENABLE_JAVA_BRIDGE',
393 ], 397 ],
394 }, { 398 }, {
395 'sources!': [ 399 'sources!': [
396 'renderer/java/java_bridge_channel.cc', 400 'renderer/java/java_bridge_channel.cc',
397 'renderer/java/java_bridge_channel.h', 401 'renderer/java/java_bridge_channel.h',
398 'renderer/java/java_bridge_dispatcher.cc', 402 'renderer/java/java_bridge_dispatcher.cc',
399 'renderer/java/java_bridge_dispatcher.h', 403 'renderer/java/java_bridge_dispatcher.h',
400 ], 404 ],
401 }], 405 }],
402 ], 406 ],
403 'target_conditions': [ 407 'target_conditions': [
404 ['OS=="android"', { 408 ['OS=="android"', {
405 'sources/': [ 409 'sources/': [
406 ['include', '^renderer/render_view_linux\\.cc$'], 410 ['include', '^renderer/render_view_linux\\.cc$'],
407 ], 411 ],
408 }], 412 }],
409 ], 413 ],
410 } 414 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698