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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 ['OS=="linux" and chromeos==1', { | 171 ['OS=="linux" and chromeos==1', { |
172 'defines': [ | 172 'defines': [ |
173 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 173 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
174 # of the print backend and enables a custom implementation instead. | 174 # of the print backend and enables a custom implementation instead. |
175 'PRINT_BACKEND_AVAILABLE', | 175 'PRINT_BACKEND_AVAILABLE', |
176 ], | 176 ], |
177 'sources': [ | 177 'sources': [ |
178 'backend/print_backend_chromeos.cc', | 178 'backend/print_backend_chromeos.cc', |
179 ], | 179 ], |
180 }], | 180 }], |
181 ['OS=="linux" and chromeos==0', { | 181 ['toolkit_uses_gtk==1 and chromeos==0', { |
182 'sources': [ | 182 'sources': [ |
183 'printing_context_gtk.cc', | 183 'printing_context_gtk.cc', |
184 'printing_context_gtk.h', | 184 'printing_context_gtk.h', |
185 ], | 185 ], |
186 }], | 186 }], |
187 ], | 187 ], |
188 }, | 188 }, |
189 { | 189 { |
190 'target_name': 'printing_unittests', | 190 'target_name': 'printing_unittests', |
191 'type': 'executable', | 191 'type': 'executable', |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 '<!@(python cups_config_helper.py --cflags)', | 257 '<!@(python cups_config_helper.py --cflags)', |
258 ], | 258 ], |
259 }], | 259 }], |
260 ], | 260 ], |
261 }, | 261 }, |
262 }], | 262 }], |
263 ], | 263 ], |
264 }, | 264 }, |
265 ], | 265 ], |
266 } | 266 } |
OLD | NEW |