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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 ], | 235 ], |
236 }], | 236 }], |
237 ], | 237 ], |
238 }, | 238 }, |
239 { | 239 { |
240 'target_name': 'printing_unittests', | 240 'target_name': 'printing_unittests', |
241 'type': 'executable', | 241 'type': 'executable', |
242 'dependencies': [ | 242 'dependencies': [ |
243 'printing', | 243 'printing', |
244 '../testing/gtest.gyp:gtest', | 244 '../testing/gtest.gyp:gtest', |
| 245 '../base/base.gyp:run_all_unittests', |
245 '../base/base.gyp:test_support_base', | 246 '../base/base.gyp:test_support_base', |
246 '../ui/ui.gyp:ui', | 247 '../ui/ui.gyp:ui', |
247 ], | 248 ], |
248 'sources': [ | 249 'sources': [ |
249 'backend/print_backend_unittest.cc', | 250 'backend/print_backend_unittest.cc', |
250 'emf_win_unittest.cc', | 251 'emf_win_unittest.cc', |
251 'printing_test.h', | 252 'printing_test.h', |
252 'page_number_unittest.cc', | 253 'page_number_unittest.cc', |
253 'page_range_unittest.cc', | 254 'page_range_unittest.cc', |
254 'page_setup_unittest.cc', | 255 'page_setup_unittest.cc', |
255 'pdf_metafile_cg_mac_unittest.cc', | 256 'pdf_metafile_cg_mac_unittest.cc', |
256 'printed_page_unittest.cc', | 257 'printed_page_unittest.cc', |
257 'run_all_unittests.cc', | |
258 'units_unittest.cc', | 258 'units_unittest.cc', |
259 ], | 259 ], |
260 'conditions': [ | 260 'conditions': [ |
261 ['enable_printing==0', { | 261 ['enable_printing==0', { |
262 'sources/': [ | 262 'sources/': [ |
263 ['exclude', '.'], | 263 ['exclude', '.'], |
264 ['include', 'run_all_unittests.cc'], | |
265 ], | 264 ], |
266 }], | 265 }], |
267 ['toolkit_uses_gtk == 0', {'sources/': [['exclude', '_gtk_unittest\\.cc$
']]}], | 266 ['toolkit_uses_gtk == 0', {'sources/': [['exclude', '_gtk_unittest\\.cc$
']]}], |
268 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], | 267 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], |
269 ['OS!="win"', {'sources/': [['exclude', '_win_unittest\\.cc$']]}], | 268 ['OS!="win"', {'sources/': [['exclude', '_win_unittest\\.cc$']]}], |
270 ['OS=="win" and use_aura == 0', { | 269 ['OS=="win" and use_aura == 0', { |
271 'sources': [ | 270 'sources': [ |
272 'printing_context_win_unittest.cc', | 271 'printing_context_win_unittest.cc', |
273 ] | 272 ] |
274 }], | 273 }], |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 '<!@(python cups_config_helper.py --cflags)', | 325 '<!@(python cups_config_helper.py --cflags)', |
327 ], | 326 ], |
328 }], | 327 }], |
329 ], | 328 ], |
330 }, | 329 }, |
331 }], | 330 }], |
332 ], | 331 ], |
333 }, | 332 }, |
334 ], | 333 ], |
335 } | 334 } |
OLD | NEW |