| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 'printing_context_mac.h', | 125 'printing_context_mac.h', |
| 126 ], | 126 ], |
| 127 }], | 127 }], |
| 128 ['OS=="mac" and use_aura==0',{ | 128 ['OS=="mac" and use_aura==0',{ |
| 129 'sources': [ | 129 'sources': [ |
| 130 'printing_context_mac.mm', | 130 'printing_context_mac.mm', |
| 131 'printing_context_mac.h', | 131 'printing_context_mac.h', |
| 132 ], | 132 ], |
| 133 }], | 133 }], |
| 134 ['OS=="win"', { | 134 ['OS=="win"', { |
| 135 'dependencies': [ |
| 136 '../win8/win8.gyp:win8_util', |
| 137 ], |
| 135 'conditions': [ | 138 'conditions': [ |
| 136 ['use_aura==0', { | 139 ['use_aura==0', { |
| 137 'sources': [ | 140 'sources': [ |
| 138 'printing_context_win.cc', | 141 'printing_context_win.cc', |
| 139 'printing_context_win.h', | 142 'printing_context_win.h', |
| 140 ], | 143 ], |
| 141 }]], | 144 }]], |
| 142 'defines': [ | 145 'defines': [ |
| 143 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 146 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
| 144 # of the print backend and enables a custom implementation instead. | 147 # of the print backend and enables a custom implementation instead. |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 '<!@(python cups_config_helper.py --cflags)', | 290 '<!@(python cups_config_helper.py --cflags)', |
| 288 ], | 291 ], |
| 289 }], | 292 }], |
| 290 ], | 293 ], |
| 291 }, | 294 }, |
| 292 }], | 295 }], |
| 293 ], | 296 ], |
| 294 }, | 297 }, |
| 295 ], | 298 ], |
| 296 } | 299 } |
| OLD | NEW |