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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 'sources/': [['exclude', '_posix\\.cc$']] | 106 'sources/': [['exclude', '_posix\\.cc$']] |
107 }], | 107 }], |
108 ['toolkit_uses_gtk == 1', { | 108 ['toolkit_uses_gtk == 1', { |
109 'dependencies': [ | 109 'dependencies': [ |
110 # For FT_Init_FreeType and friends. | 110 # For FT_Init_FreeType and friends. |
111 '../build/linux/system.gyp:freetype2', | 111 '../build/linux/system.gyp:freetype2', |
112 '../build/linux/system.gyp:gtk', | 112 '../build/linux/system.gyp:gtk', |
113 '../build/linux/system.gyp:gtkprint', | 113 '../build/linux/system.gyp:gtkprint', |
114 ], | 114 ], |
115 }], | 115 }], |
116 ['OS=="mac" and use_skia==0', { | |
117 'sources/': [ | |
118 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], | |
119 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], | |
120 ], | |
121 }], | |
122 # Mac-Aura does not support printing. | 116 # Mac-Aura does not support printing. |
123 ['OS=="mac" and use_aura==1',{ | 117 ['OS=="mac" and use_aura==1',{ |
124 'sources!': [ | 118 'sources!': [ |
125 'printed_document_mac.cc', | 119 'printed_document_mac.cc', |
126 'printing_context_mac.mm', | 120 'printing_context_mac.mm', |
127 'printing_context_mac.h', | 121 'printing_context_mac.h', |
128 ], | 122 ], |
129 }], | 123 }], |
130 ['OS=="mac" and use_aura==0',{ | 124 ['OS=="mac" and use_aura==0',{ |
131 'sources': [ | 125 'sources': [ |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 '<!@(python cups_config_helper.py --cflags)', | 288 '<!@(python cups_config_helper.py --cflags)', |
295 ], | 289 ], |
296 }], | 290 }], |
297 ], | 291 ], |
298 }, | 292 }, |
299 }], | 293 }], |
300 ], | 294 ], |
301 }, | 295 }, |
302 ], | 296 ], |
303 } | 297 } |
OLD | NEW |