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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 'sources/': [ | 224 'sources/': [ |
225 ['exclude', '.'], | 225 ['exclude', '.'], |
226 ['include', 'run_all_unittests.cc'], | 226 ['include', 'run_all_unittests.cc'], |
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 'backend/win_helper_unittest.cc', |
235 ] | 235 ], |
| 236 'conditions': [ |
| 237 ['use_aura==0', { |
| 238 'sources': [ 'printing_context_win_unittest.cc' ] |
| 239 }] |
| 240 ], |
236 }], | 241 }], |
237 ['use_cups==1', { | 242 ['use_cups==1', { |
238 'defines': [ | 243 'defines': [ |
239 'USE_CUPS', | 244 'USE_CUPS', |
240 ], | 245 ], |
241 'sources': [ | 246 'sources': [ |
242 'backend/cups_helper_unittest.cc', | 247 'backend/cups_helper_unittest.cc', |
243 ], | 248 ], |
244 }], | 249 }], |
245 ['toolkit_uses_gtk == 1', { | 250 ['toolkit_uses_gtk == 1', { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 '<!@(python cups_config_helper.py --cflags)', | 289 '<!@(python cups_config_helper.py --cflags)', |
285 ], | 290 ], |
286 }], | 291 }], |
287 ], | 292 ], |
288 }, | 293 }, |
289 }], | 294 }], |
290 ], | 295 ], |
291 }, | 296 }, |
292 ], | 297 ], |
293 } | 298 } |
OLD | NEW |