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

Side by Side Diff: content/content_renderer.gypi

Issue 11615002: Exclude PluginService for builds with enable_plugins==0 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove debug logging 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 ['enable_plugins==1', { 381 ['enable_plugins==1', {
382 'dependencies': [ 382 'dependencies': [
383 '../ppapi/ppapi_internal.gyp:ppapi_host', 383 '../ppapi/ppapi_internal.gyp:ppapi_host',
384 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 384 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
385 '../ppapi/ppapi_internal.gyp:ppapi_shared', 385 '../ppapi/ppapi_internal.gyp:ppapi_shared',
386 ], 386 ],
387 }, { # enable_plugins==0 387 }, { # enable_plugins==0
388 'sources/': [ 388 'sources/': [
389 ['exclude', '^renderer/pepper/'], 389 ['exclude', '^renderer/pepper/'],
390 ], 390 ],
391 'sources!': [
392 'renderer/render_widget_fullscreen_pepper.cc',
393 'renderer/render_widget_fullscreen_pepper.h',
394 ],
391 }], 395 }],
392 ['java_bridge==1', { 396 ['java_bridge==1', {
393 'defines': [ 397 'defines': [
394 'ENABLE_JAVA_BRIDGE', 398 'ENABLE_JAVA_BRIDGE',
395 ], 399 ],
396 }, { 400 }, {
397 'sources!': [ 401 'sources!': [
398 'renderer/java/java_bridge_channel.cc', 402 'renderer/java/java_bridge_channel.cc',
399 'renderer/java/java_bridge_channel.h', 403 'renderer/java/java_bridge_channel.h',
400 'renderer/java/java_bridge_dispatcher.cc', 404 'renderer/java/java_bridge_dispatcher.cc',
401 'renderer/java/java_bridge_dispatcher.h', 405 'renderer/java/java_bridge_dispatcher.h',
402 ], 406 ],
403 }], 407 }],
404 ], 408 ],
405 'target_conditions': [ 409 'target_conditions': [
406 ['OS=="android"', { 410 ['OS=="android"', {
407 'sources/': [ 411 'sources/': [
408 ['include', '^renderer/render_view_linux\\.cc$'], 412 ['include', '^renderer/render_view_linux\\.cc$'],
409 ], 413 ],
410 }], 414 }],
411 ], 415 ],
412 } 416 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698