| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 ['OS=="mac"', { | 344 ['OS=="mac"', { |
| 345 'dependencies': [ | 345 'dependencies': [ |
| 346 '../third_party/mach_override/mach_override.gyp:mach_override', | 346 '../third_party/mach_override/mach_override.gyp:mach_override', |
| 347 ], | 347 ], |
| 348 }], | 348 }], |
| 349 ['enable_printing==0', { | 349 ['enable_printing==0', { |
| 350 'sources/': [ | 350 'sources/': [ |
| 351 ['exclude', '^renderer/printing/'] | 351 ['exclude', '^renderer/printing/'] |
| 352 ] | 352 ] |
| 353 }], | 353 }], |
| 354 ['win_pdf_metafile_for_printing', { | 354 ['win_pdf_metafile_for_printing==1', { |
| 355 'sources': [ | 355 'sources': [ |
| 356 'renderer/printing/print_web_view_helper_pdf_win.cc', | 356 'renderer/printing/print_web_view_helper_pdf_win.cc', |
| 357 ], | 357 ], |
| 358 }, { | 358 }, { |
| 359 'sources': [ | 359 'sources': [ |
| 360 'renderer/printing/print_web_view_helper_win.cc', | 360 'renderer/printing/print_web_view_helper_win.cc', |
| 361 ], | 361 ], |
| 362 }], | 362 }], |
| 363 ['OS=="android"', { | 363 ['OS=="android"', { |
| 364 'sources!': [ | 364 'sources!': [ |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 }], | 399 }], |
| 400 ['enable_printing!=0', { | 400 ['enable_printing!=0', { |
| 401 'dependencies': [ | 401 'dependencies': [ |
| 402 '../printing/printing.gyp:printing', | 402 '../printing/printing.gyp:printing', |
| 403 ], | 403 ], |
| 404 }], | 404 }], |
| 405 ], | 405 ], |
| 406 }, | 406 }, |
| 407 ], | 407 ], |
| 408 } | 408 } |
| OLD | NEW |