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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 ], | 227 ], |
228 }], | 228 }], |
229 ['toolkit_uses_gtk == 0', {'sources/': [['exclude', '_gtk_unittest\\.cc$
']]}], | 229 ['toolkit_uses_gtk == 0', {'sources/': [['exclude', '_gtk_unittest\\.cc$
']]}], |
230 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], | 230 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], |
231 ['OS!="win"', {'sources/': [['exclude', '_win_unittest\\.cc$']]}], | 231 ['OS!="win"', {'sources/': [['exclude', '_win_unittest\\.cc$']]}], |
232 ['OS=="win" and use_aura == 0', { | 232 ['OS=="win" and use_aura == 0', { |
233 'sources': [ | 233 'sources': [ |
234 'printing_context_win_unittest.cc', | 234 'printing_context_win_unittest.cc', |
235 ] | 235 ] |
236 }], | 236 }], |
| 237 ['use_cups==1', { |
| 238 'defines': [ |
| 239 'USE_CUPS', |
| 240 ], |
| 241 'sources': [ |
| 242 'backend/cups_helper_unittest.cc', |
| 243 ], |
| 244 }], |
237 ['toolkit_uses_gtk == 1', { | 245 ['toolkit_uses_gtk == 1', { |
238 'dependencies': [ | 246 'dependencies': [ |
239 '../build/linux/system.gyp:gtk', | 247 '../build/linux/system.gyp:gtk', |
240 ], | 248 ], |
241 'conditions': [ | 249 'conditions': [ |
242 ['linux_use_tcmalloc == 1', { | 250 ['linux_use_tcmalloc == 1', { |
243 'dependencies': [ | 251 'dependencies': [ |
244 '../base/allocator/allocator.gyp:allocator', | 252 '../base/allocator/allocator.gyp:allocator', |
245 ], | 253 ], |
246 }], | 254 }], |
(...skipping 29 matching lines...) Expand all Loading... |
276 '<!@(python cups_config_helper.py --cflags)', | 284 '<!@(python cups_config_helper.py --cflags)', |
277 ], | 285 ], |
278 }], | 286 }], |
279 ], | 287 ], |
280 }, | 288 }, |
281 }], | 289 }], |
282 ], | 290 ], |
283 }, | 291 }, |
284 ], | 292 ], |
285 } | 293 } |
OLD | NEW |