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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 22577010: Printing: Add a basic printing mode without print preview and cloud print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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 '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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 'dependencies': [ 389 'dependencies': [
390 '../build/linux/system.gyp:gtk', 390 '../build/linux/system.gyp:gtk',
391 '../sandbox/sandbox.gyp:sandbox', 391 '../sandbox/sandbox.gyp:sandbox',
392 ], 392 ],
393 }], 393 }],
394 ['enable_automation==0', { 394 ['enable_automation==0', {
395 'sources/': [ 395 'sources/': [
396 ['exclude', '^renderer/automation/'] 396 ['exclude', '^renderer/automation/']
397 ] 397 ]
398 }], 398 }],
399 ['enable_printing==0', {
400 'sources/': [
401 ['exclude', '^renderer/printing/print_web_view_helper.*']
cimamoglu1 2013/08/11 18:22:51 exclude the whole folder?
Lei Zhang 2013/08/12 06:06:15 Done.
402 ]
403 }],
399 ['OS=="android"', { 404 ['OS=="android"', {
400 'sources!': [ 405 'sources!': [
401 'renderer/prerender/prerender_media_load_deferrer.cc', 406 'renderer/prerender/prerender_media_load_deferrer.cc',
402 'renderer/prerender/prerender_media_load_deferrer.h', 407 'renderer/prerender/prerender_media_load_deferrer.h',
403 'renderer/printing/print_web_view_helper.cc',
404 ], 408 ],
405 'defines': [ 409 'defines': [
406 'ENABLE_MOBILE_YOUTUBE_PLUGIN', 410 'ENABLE_MOBILE_YOUTUBE_PLUGIN',
407 ], 411 ],
408 }], 412 }],
409 ['OS=="win"', { 413 ['OS=="win"', {
410 'include_dirs': [ 414 'include_dirs': [
411 '<(DEPTH)/third_party/wtl/include', 415 '<(DEPTH)/third_party/wtl/include',
412 ], 416 ],
413 'conditions': [ 417 'conditions': [
414 ['win_use_allocator_shim==1', { 418 ['win_use_allocator_shim==1', {
415 'dependencies': [ 419 'dependencies': [
416 '<(allocator_target)', 420 '<(allocator_target)',
417 ], 421 ],
418 'export_dependent_settings': [ 422 'export_dependent_settings': [
419 '<(allocator_target)', 423 '<(allocator_target)',
420 ], 424 ],
421 }], 425 }],
422 ], 426 ],
423 }], 427 }],
424 ], 428 ],
425 }, 429 },
426 ], 430 ],
427 } 431 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698