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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 '../build/linux/system.gyp:gtk', | 104 '../build/linux/system.gyp:gtk', |
105 '../build/linux/system.gyp:gtkprint', | 105 '../build/linux/system.gyp:gtkprint', |
106 ], | 106 ], |
107 }], | 107 }], |
108 ['OS=="mac" and use_skia==0', { | 108 ['OS=="mac" and use_skia==0', { |
109 'sources/': [ | 109 'sources/': [ |
110 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], | 110 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], |
111 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], | 111 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], |
112 ], | 112 ], |
113 }], | 113 }], |
| 114 # Mac-Aura does not support printing. |
| 115 ['OS=="mac" and use_aura==1',{ |
| 116 'sources!': [ |
| 117 'printed_document_mac.cc', |
| 118 'printing_context_mac.mm', |
| 119 'printing_context_mac.h', |
| 120 ], |
| 121 }], |
114 ['OS=="mac" and use_aura==0',{ | 122 ['OS=="mac" and use_aura==0',{ |
115 'sources': [ | 123 'sources': [ |
116 'printing_context_mac.mm', | 124 'printing_context_mac.mm', |
117 'printing_context_mac.h', | 125 'printing_context_mac.h', |
118 ], | 126 ], |
119 }], | 127 }], |
120 ['OS=="win"', { | 128 ['OS=="win"', { |
121 'conditions': [ | 129 'conditions': [ |
122 ['use_aura==1', { | 130 ['use_aura==1', { |
123 'sources!': [ | 131 'sources!': [ |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 '<!@(python cups_config_helper.py --cflags)', | 266 '<!@(python cups_config_helper.py --cflags)', |
259 ], | 267 ], |
260 }], | 268 }], |
261 ], | 269 ], |
262 }, | 270 }, |
263 }], | 271 }], |
264 ], | 272 ], |
265 }, | 273 }, |
266 ], | 274 ], |
267 } | 275 } |
OLD | NEW |