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 20 matching lines...) Expand all Loading... |
31 'backend/print_backend_dummy.cc', | 31 'backend/print_backend_dummy.cc', |
32 'emf_win.cc', | 32 'emf_win.cc', |
33 'emf_win.h', | 33 'emf_win.h', |
34 'image.cc', | 34 'image.cc', |
35 'image_cairo.cc', | 35 'image_cairo.cc', |
36 'image_mac.cc', | 36 'image_mac.cc', |
37 'image_win.cc', | 37 'image_win.cc', |
38 'image.h', | 38 'image.h', |
39 'metafile.h', | 39 'metafile.h', |
40 'metafile_impl.h', | 40 'metafile_impl.h', |
| 41 'metafile_skia_wrapper.h', |
| 42 'metafile_skia_wrapper.cc', |
41 'page_number.cc', | 43 'page_number.cc', |
42 'page_number.h', | 44 'page_number.h', |
43 'page_overlays.cc', | 45 'page_overlays.cc', |
44 'page_overlays.h', | 46 'page_overlays.h', |
45 'page_range.cc', | 47 'page_range.cc', |
46 'page_range.h', | 48 'page_range.h', |
47 'page_setup.cc', | 49 'page_setup.cc', |
48 'page_setup.h', | 50 'page_setup.h', |
49 'pdf_metafile_cairo_linux.cc', | 51 'pdf_metafile_cairo_linux.cc', |
50 'pdf_metafile_cairo_linux.h', | 52 'pdf_metafile_cairo_linux.h', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 'conditions': [ | 93 'conditions': [ |
92 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"',{ | 94 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"',{ |
93 'sources/': [['exclude', '_cairo\\.cc$']] | 95 'sources/': [['exclude', '_cairo\\.cc$']] |
94 }], | 96 }], |
95 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], | 97 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], |
96 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']] | 98 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']] |
97 }, { # else: OS=="win" | 99 }, { # else: OS=="win" |
98 'sources/': [['exclude', '_posix\\.cc$']] | 100 'sources/': [['exclude', '_posix\\.cc$']] |
99 }], | 101 }], |
100 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 102 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
101 'sources': [ | |
102 'metafile_skia_wrapper.cc', | |
103 'metafile_skia_wrapper.h', | |
104 ], | |
105 'dependencies': [ | 103 'dependencies': [ |
106 # For FT_Init_FreeType and friends. | 104 # For FT_Init_FreeType and friends. |
107 '../build/linux/system.gyp:freetype2', | 105 '../build/linux/system.gyp:freetype2', |
108 '../build/linux/system.gyp:gtk', | 106 '../build/linux/system.gyp:gtk', |
109 '../build/linux/system.gyp:gtkprint', | 107 '../build/linux/system.gyp:gtkprint', |
110 ], | 108 ], |
111 }], | 109 }], |
112 ['OS=="mac"', | 110 ['OS=="mac"', |
113 {'sources/': [['exclude', 'pdf_metafile_skia\\.(cc|h)$']]} | 111 {'sources/': [ |
114 ], | 112 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], |
| 113 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], |
| 114 ]}], |
115 ['OS=="win"', { | 115 ['OS=="win"', { |
116 'defines': [ | 116 'defines': [ |
117 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 117 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
118 # of the print backend and enables a custom implementation instead. | 118 # of the print backend and enables a custom implementation instead. |
119 'PRINT_BACKEND_AVAILABLE', | 119 'PRINT_BACKEND_AVAILABLE', |
120 ], | 120 ], |
121 'sources': [ | 121 'sources': [ |
122 'backend/win_helper.cc', | 122 'backend/win_helper.cc', |
123 'backend/win_helper.h', | 123 'backend/win_helper.h', |
124 'backend/print_backend_win.cc', | 124 'backend/print_backend_win.cc', |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 ], | 224 ], |
225 }, | 225 }, |
226 ], | 226 ], |
227 } | 227 } |
228 | 228 |
229 # Local Variables: | 229 # Local Variables: |
230 # tab-width:2 | 230 # tab-width:2 |
231 # indent-tabs-mode:nil | 231 # indent-tabs-mode:nil |
232 # End: | 232 # End: |
233 # vim: set expandtab tabstop=2 shiftwidth=2: | 233 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |