| 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 }], | |
| 119 ['OS=="mac" and use_skia==0', { | 113 ['OS=="mac" and use_skia==0', { |
| 120 'sources/': [ | 114 'sources/': [ |
| 121 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], | 115 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], |
| 122 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], | 116 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], |
| 123 ], | 117 ], |
| 124 }], | 118 }], |
| 125 ['OS=="win"', { | 119 ['OS=="win"', { |
| 126 'defines': [ | 120 'defines': [ |
| 127 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 121 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
| 128 # of the print backend and enables a custom implementation instead. | 122 # of the print backend and enables a custom implementation instead. |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 ], | 229 ], |
| 236 }, | 230 }, |
| 237 }], | 231 }], |
| 238 ], | 232 ], |
| 239 }, | 233 }, |
| 240 }], | 234 }], |
| 241 ], | 235 ], |
| 242 }, | 236 }, |
| 243 ], | 237 ], |
| 244 } | 238 } |
| OLD | NEW |