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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 'sources/': [['exclude', '_posix\\.cc$']] | 103 'sources/': [['exclude', '_posix\\.cc$']] |
104 }], | 104 }], |
105 ['toolkit_uses_gtk == 1', { | 105 ['toolkit_uses_gtk == 1', { |
106 'dependencies': [ | 106 'dependencies': [ |
107 # For FT_Init_FreeType and friends. | 107 # For FT_Init_FreeType and friends. |
108 '../build/linux/system.gyp:freetype2', | 108 '../build/linux/system.gyp:freetype2', |
109 '../build/linux/system.gyp:gtk', | 109 '../build/linux/system.gyp:gtk', |
110 '../build/linux/system.gyp:gtkprint', | 110 '../build/linux/system.gyp:gtkprint', |
111 ], | 111 ], |
112 }], | 112 }], |
| 113 ['use_aura==1', { |
| 114 'sources/': [ |
| 115 ['exclude', '^printing_context_win.cc'], |
| 116 ['exclude', '^printing_context_win.h'], |
| 117 ], |
| 118 }], |
113 ['OS=="mac" and use_skia==0', { | 119 ['OS=="mac" and use_skia==0', { |
114 'sources/': [ | 120 'sources/': [ |
115 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], | 121 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], |
116 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], | 122 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], |
117 ], | 123 ], |
118 }], | 124 }], |
119 ['OS=="win"', { | 125 ['OS=="win"', { |
120 'defines': [ | 126 'defines': [ |
121 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 127 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
122 # of the print backend and enables a custom implementation instead. | 128 # of the print backend and enables a custom implementation instead. |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 ], | 235 ], |
230 }, | 236 }, |
231 }], | 237 }], |
232 ], | 238 ], |
233 }, | 239 }, |
234 }], | 240 }], |
235 ], | 241 ], |
236 }, | 242 }, |
237 ], | 243 ], |
238 } | 244 } |
OLD | NEW |