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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 323693002: Split printing utility IPC messages into its own file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win Created 6 years, 6 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_browser.gypi ('k') | chrome/chrome_tests_unit.gypi » ('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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 ['OS=="mac"', { 342 ['OS=="mac"', {
343 'dependencies': [ 343 'dependencies': [
344 '../third_party/mach_override/mach_override.gyp:mach_override', 344 '../third_party/mach_override/mach_override.gyp:mach_override',
345 ], 345 ],
346 }], 346 }],
347 ['enable_printing==0', { 347 ['enable_printing==0', {
348 'sources/': [ 348 'sources/': [
349 ['exclude', '^renderer/printing/'] 349 ['exclude', '^renderer/printing/']
350 ] 350 ]
351 }], 351 }],
352 ['win_pdf_metafile_for_printing', { 352 ['win_pdf_metafile_for_printing==1', {
353 'sources': [ 353 'sources': [
354 'renderer/printing/print_web_view_helper_pdf_win.cc', 354 'renderer/printing/print_web_view_helper_pdf_win.cc',
355 ], 355 ],
356 }, { 356 }, {
357 'sources': [ 357 'sources': [
358 'renderer/printing/print_web_view_helper_win.cc', 358 'renderer/printing/print_web_view_helper_win.cc',
359 ], 359 ],
360 }], 360 }],
361 ['OS=="android"', { 361 ['OS=="android"', {
362 'sources!': [ 362 'sources!': [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 }], 397 }],
398 ['enable_printing!=0', { 398 ['enable_printing!=0', {
399 'dependencies': [ 399 'dependencies': [
400 '../printing/printing.gyp:printing', 400 '../printing/printing.gyp:printing',
401 ], 401 ],
402 }], 402 }],
403 ], 403 ],
404 }, 404 },
405 ], 405 ],
406 } 406 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698