| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'page_range.cc', | 48 'page_range.cc', |
| 49 'page_range.h', | 49 'page_range.h', |
| 50 'page_setup.cc', | 50 'page_setup.cc', |
| 51 'page_setup.h', | 51 'page_setup.h', |
| 52 'page_size_margins.cc', | 52 'page_size_margins.cc', |
| 53 'page_size_margins.h', | 53 'page_size_margins.h', |
| 54 'pdf_metafile_cg_mac.cc', | 54 'pdf_metafile_cg_mac.cc', |
| 55 'pdf_metafile_cg_mac.h', | 55 'pdf_metafile_cg_mac.h', |
| 56 'pdf_metafile_skia.h', | 56 'pdf_metafile_skia.h', |
| 57 'pdf_metafile_skia.cc', | 57 'pdf_metafile_skia.cc', |
| 58 'print_destination_interface.h', |
| 59 'print_destination_interface_none.cc', |
| 60 'print_destination_interface_win.cc', |
| 58 'printed_document_gtk.cc', | 61 'printed_document_gtk.cc', |
| 59 'printed_document.cc', | 62 'printed_document.cc', |
| 60 'printed_document.h', | 63 'printed_document.h', |
| 61 'printed_document_mac.cc', | 64 'printed_document_mac.cc', |
| 62 'printed_document_win.cc', | 65 'printed_document_win.cc', |
| 63 'printed_page.cc', | 66 'printed_page.cc', |
| 64 'printed_page.h', | 67 'printed_page.h', |
| 65 'printed_pages_source.h', | 68 'printed_pages_source.h', |
| 66 'printing_context.cc', | 69 'printing_context.cc', |
| 67 'printing_context.h', | 70 'printing_context.h', |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 'defines': [ | 142 'defines': [ |
| 140 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 143 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
| 141 # of the print backend and enables a custom implementation instead. | 144 # of the print backend and enables a custom implementation instead. |
| 142 'PRINT_BACKEND_AVAILABLE', | 145 'PRINT_BACKEND_AVAILABLE', |
| 143 ], | 146 ], |
| 144 'sources': [ | 147 'sources': [ |
| 145 'backend/win_helper.cc', | 148 'backend/win_helper.cc', |
| 146 'backend/win_helper.h', | 149 'backend/win_helper.h', |
| 147 'backend/print_backend_win.cc', | 150 'backend/print_backend_win.cc', |
| 148 ], | 151 ], |
| 152 'sources!': [ |
| 153 'print_destination_interface_none.cc', |
| 154 ], |
| 149 }], | 155 }], |
| 150 ['chromeos==1 or use_aura==1',{ | 156 ['chromeos==1 or use_aura==1',{ |
| 151 'sources': [ | 157 'sources': [ |
| 152 'printing_context_no_system_dialog.cc', | 158 'printing_context_no_system_dialog.cc', |
| 153 'printing_context_no_system_dialog.h', | 159 'printing_context_no_system_dialog.h', |
| 154 ], | 160 ], |
| 155 }], | 161 }], |
| 156 ['use_cups==1', { | 162 ['use_cups==1', { |
| 157 'dependencies': [ | 163 'dependencies': [ |
| 158 'cups', | 164 'cups', |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 '<!@(python cups_config_helper.py --cflags)', | 276 '<!@(python cups_config_helper.py --cflags)', |
| 271 ], | 277 ], |
| 272 }], | 278 }], |
| 273 ], | 279 ], |
| 274 }, | 280 }, |
| 275 }], | 281 }], |
| 276 ], | 282 ], |
| 277 }, | 283 }, |
| 278 ], | 284 ], |
| 279 } | 285 } |
| OLD | NEW |