OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |