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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 23030005: Android: exclude dead code from android build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes for build breakage Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/extensions/api/api.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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'renderer', 8 'target_name': 'renderer',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 }], 403 }],
404 ['enable_printing==0', { 404 ['enable_printing==0', {
405 'sources/': [ 405 'sources/': [
406 ['exclude', '^renderer/printing/'] 406 ['exclude', '^renderer/printing/']
407 ] 407 ]
408 }], 408 }],
409 ['OS=="android"', { 409 ['OS=="android"', {
410 'sources!': [ 410 'sources!': [
411 'renderer/prerender/prerender_media_load_deferrer.cc', 411 'renderer/prerender/prerender_media_load_deferrer.cc',
412 'renderer/prerender/prerender_media_load_deferrer.h', 412 'renderer/prerender/prerender_media_load_deferrer.h',
413 'renderer/extensions/api_definitions_natives.cc',
414 'renderer/extensions/app_window_custom_bindings.cc',
415 'renderer/extensions/chrome_v8_extension.cc',
416 'renderer/extensions/chrome_v8_extension_handler.cc',
417 'renderer/extensions/context_menus_custom_bindings.cc',
418 'renderer/extensions/extension_custom_bindings.cc',
419 'renderer/extensions/file_browser_handler_custom_bindings.cc',
420 'renderer/extensions/page_actions_custom_bindings.cc',
421 'renderer/extensions/render_view_observer_natives.cc',
422 'renderer/extensions/send_request_natives.cc',
423 'renderer/extensions/tabs_custom_bindings.cc',
424 'renderer/extensions/tts_custom_bindings.cc',
413 ], 425 ],
414 'defines': [ 426 'defines': [
415 'ENABLE_MOBILE_YOUTUBE_PLUGIN', 427 'ENABLE_MOBILE_YOUTUBE_PLUGIN',
416 ], 428 ],
417 }], 429 }],
418 ['OS=="win"', { 430 ['OS=="win"', {
419 'include_dirs': [ 431 'include_dirs': [
420 '<(DEPTH)/third_party/wtl/include', 432 '<(DEPTH)/third_party/wtl/include',
421 ], 433 ],
422 'conditions': [ 434 'conditions': [
423 ['win_use_allocator_shim==1', { 435 ['win_use_allocator_shim==1', {
424 'dependencies': [ 436 'dependencies': [
425 '<(allocator_target)', 437 '<(allocator_target)',
426 ], 438 ],
427 'export_dependent_settings': [ 439 'export_dependent_settings': [
428 '<(allocator_target)', 440 '<(allocator_target)',
429 ], 441 ],
430 }], 442 }],
431 ], 443 ],
432 }], 444 }],
433 ], 445 ],
434 }, 446 },
435 ], 447 ],
436 } 448 }
OLDNEW
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/extensions/api/api.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698