| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 9 'includes': [ |
| 10 '../build/common.gypi', | 10 '../build/common.gypi', |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 '../testing/gtest.gyp:gtestmain', | 82 '../testing/gtest.gyp:gtestmain', |
| 83 ], | 83 ], |
| 84 'sources': [ | 84 'sources': [ |
| 85 'emf_win_unittest.cc', | 85 'emf_win_unittest.cc', |
| 86 'printing_test.h', | 86 'printing_test.h', |
| 87 'page_number_unittest.cc', | 87 'page_number_unittest.cc', |
| 88 'page_overlays_unittest.cc', | 88 'page_overlays_unittest.cc', |
| 89 'page_range_unittest.cc', | 89 'page_range_unittest.cc', |
| 90 'page_setup_unittest.cc', | 90 'page_setup_unittest.cc', |
| 91 'printing_context_win_unittest.cc', | 91 'printing_context_win_unittest.cc', |
| 92 'run_all_unittests.cc', |
| 92 'units_unittest.cc', | 93 'units_unittest.cc', |
| 93 ], | 94 ], |
| 94 'conditions': [ | 95 'conditions': [ |
| 95 ['OS!="linux"', {'sources/': [['exclude', '_linux_unittest\\.cc$']]}], | 96 ['OS!="linux"', {'sources/': [['exclude', '_linux_unittest\\.cc$']]}], |
| 96 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], | 97 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], |
| 97 ['OS!="win"', { | 98 ['OS!="win"', { |
| 98 'sources/': [ | 99 'sources/': [ |
| 99 ['exclude', '_win_unittest\\.cc$'], | 100 ['exclude', '_win_unittest\\.cc$'], |
| 100 | 101 |
| 101 # Most of the printing functionailty is Windows only for now. | 102 # Most of the printing functionailty is Windows only for now. |
| 102 ['exclude', '.*'], | 103 ['exclude', '.*'], |
| 103 ['include', 'page_range_unittest.cc'], | 104 ['include', 'page_range_unittest.cc'], |
| 104 ['include', 'page_setup_unittest.cc'], | 105 ['include', 'page_setup_unittest.cc'], |
| 105 ['include', 'units_unittest.cc'], | 106 ['include', 'units_unittest.cc'], |
| 106 ] | 107 ] |
| 107 }, { # else: OS=="win" | 108 }, { # else: OS=="win" |
| 108 'sources/': [['exclude', '_posix_unittest\\.cc$']] | 109 'sources/': [['exclude', '_posix_unittest\\.cc$']] |
| 109 }], | 110 }], |
| 110 ], | 111 ], |
| 111 }, | 112 }, |
| 112 ], | 113 ], |
| 113 } | 114 } |
| OLD | NEW |