| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 'page_overlays.cc', | 44 'page_overlays.cc', |
| 45 'page_overlays.h', | 45 'page_overlays.h', |
| 46 'page_range.cc', | 46 'page_range.cc', |
| 47 'page_range.h', | 47 'page_range.h', |
| 48 'page_setup.cc', | 48 'page_setup.cc', |
| 49 'page_setup.h', | 49 'page_setup.h', |
| 50 'pdf_metafile_cairo_linux.cc', | 50 'pdf_metafile_cairo_linux.cc', |
| 51 'pdf_metafile_cairo_linux.h', | 51 'pdf_metafile_cairo_linux.h', |
| 52 'pdf_metafile_cg_mac.cc', | 52 'pdf_metafile_cg_mac.cc', |
| 53 'pdf_metafile_cg_mac.h', | 53 'pdf_metafile_cg_mac.h', |
| 54 'pdf_metafile_skia.h', |
| 55 'pdf_metafile_skia.cc', |
| 54 'printed_document_cairo.cc', | 56 'printed_document_cairo.cc', |
| 55 'printed_document.cc', | 57 'printed_document.cc', |
| 56 'printed_document.h', | 58 'printed_document.h', |
| 57 'printed_document_mac.cc', | 59 'printed_document_mac.cc', |
| 58 'printed_document_posix.cc', | 60 'printed_document_posix.cc', |
| 59 'printed_document_win.cc', | 61 'printed_document_win.cc', |
| 60 'printed_page.cc', | 62 'printed_page.cc', |
| 61 'printed_page.h', | 63 'printed_page.h', |
| 62 'printed_pages_source.h', | 64 'printed_pages_source.h', |
| 63 'printing_context.cc', | 65 'printing_context.cc', |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 'native_metafile_skia_wrapper.cc', | 102 'native_metafile_skia_wrapper.cc', |
| 101 'native_metafile_skia_wrapper.h', | 103 'native_metafile_skia_wrapper.h', |
| 102 ], | 104 ], |
| 103 'dependencies': [ | 105 'dependencies': [ |
| 104 # For FT_Init_FreeType and friends. | 106 # For FT_Init_FreeType and friends. |
| 105 '../build/linux/system.gyp:freetype2', | 107 '../build/linux/system.gyp:freetype2', |
| 106 '../build/linux/system.gyp:gtk', | 108 '../build/linux/system.gyp:gtk', |
| 107 '../build/linux/system.gyp:gtkprint', | 109 '../build/linux/system.gyp:gtkprint', |
| 108 ], | 110 ], |
| 109 }], | 111 }], |
| 112 ['OS=="mac"', |
| 113 {'sources/': [['exclude', 'pdf_metafile_skia\\.(cc|h)$']]} |
| 114 ], |
| 110 ['OS=="win"', { | 115 ['OS=="win"', { |
| 111 'defines': [ | 116 'defines': [ |
| 112 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 117 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
| 113 # of the print backend and enables a custom implementation instead. | 118 # of the print backend and enables a custom implementation instead. |
| 114 'PRINT_BACKEND_AVAILABLE', | 119 'PRINT_BACKEND_AVAILABLE', |
| 115 ], | 120 ], |
| 116 'sources': [ | 121 'sources': [ |
| 117 'backend/win_helper.cc', | 122 'backend/win_helper.cc', |
| 118 'backend/win_helper.h', | 123 'backend/win_helper.h', |
| 119 'backend/print_backend_win.cc', | 124 'backend/print_backend_win.cc', |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 ], | 202 ], |
| 198 }, | 203 }, |
| 199 ], | 204 ], |
| 200 } | 205 } |
| 201 | 206 |
| 202 # Local Variables: | 207 # Local Variables: |
| 203 # tab-width:2 | 208 # tab-width:2 |
| 204 # indent-tabs-mode:nil | 209 # indent-tabs-mode:nil |
| 205 # End: | 210 # End: |
| 206 # vim: set expandtab tabstop=2 shiftwidth=2: | 211 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |