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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
111 '../build/linux/system.gyp:gtkprint', | 111 '../build/linux/system.gyp:gtkprint', |
112 ], | 112 ], |
113 }], | 113 }], |
114 ['OS=="mac" and use_skia==0', { | 114 ['OS=="mac" and use_skia==0', { |
115 'sources/': [ | 115 'sources/': [ |
116 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], | 116 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], |
117 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], | 117 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], |
118 ], | 118 ], |
119 }], | 119 }], |
120 ['OS=="win"', { | 120 ['OS=="win"', { |
121 'conditions': [ | |
122 ['use_aura==1', { | |
123 'sources!': [ | |
124 'image_aura.cc', | |
125 'printing_context_aura.cc', | |
126 'printed_document_aura.cc', | |
Lei Zhang
2011/10/13 21:51:44
nit: printed before printing.
| |
127 ], | |
128 }], | |
129 ], | |
121 'defines': [ | 130 'defines': [ |
122 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 131 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
123 # of the print backend and enables a custom implementation instead. | 132 # of the print backend and enables a custom implementation instead. |
124 'PRINT_BACKEND_AVAILABLE', | 133 'PRINT_BACKEND_AVAILABLE', |
125 ], | 134 ], |
126 'sources': [ | 135 'sources': [ |
127 'backend/win_helper.cc', | 136 'backend/win_helper.cc', |
128 'backend/win_helper.h', | 137 'backend/win_helper.h', |
129 'backend/print_backend_win.cc', | 138 'backend/print_backend_win.cc', |
130 ], | 139 ], |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
229 ], | 238 ], |
230 }, | 239 }, |
231 }], | 240 }], |
232 ], | 241 ], |
233 }, | 242 }, |
234 }], | 243 }], |
235 ], | 244 ], |
236 }, | 245 }, |
237 ], | 246 ], |
238 } | 247 } |
OLD | NEW |