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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 ], | 90 ], |
91 'sources': [ | 91 'sources': [ |
92 'emf_win_unittest.cc', | 92 'emf_win_unittest.cc', |
93 'printing_test.h', | 93 'printing_test.h', |
94 'page_number_unittest.cc', | 94 'page_number_unittest.cc', |
95 'page_overlays_unittest.cc', | 95 'page_overlays_unittest.cc', |
96 'page_range_unittest.cc', | 96 'page_range_unittest.cc', |
97 'page_setup_unittest.cc', | 97 'page_setup_unittest.cc', |
98 'pdf_metafile_mac_unittest.cc', | 98 'pdf_metafile_mac_unittest.cc', |
99 'pdf_ps_metafile_cairo_unittest.cc', | 99 'pdf_ps_metafile_cairo_unittest.cc', |
| 100 'printed_page_unittest.cc', |
100 'printing_context_win_unittest.cc', | 101 'printing_context_win_unittest.cc', |
101 'run_all_unittests.cc', | 102 'run_all_unittests.cc', |
102 'units_unittest.cc', | 103 'units_unittest.cc', |
103 ], | 104 ], |
104 'conditions': [ | 105 'conditions': [ |
105 ['OS!="linux"', {'sources/': [['exclude', '_cairo_unittest\\.cc$']]}], | 106 ['OS!="linux"', {'sources/': [['exclude', '_cairo_unittest\\.cc$']]}], |
106 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], | 107 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], |
107 ['OS!="win"', {'sources/': [['exclude', '_win_unittest\\.cc$']] | 108 ['OS!="win"', {'sources/': [['exclude', '_win_unittest\\.cc$']] |
108 }, { # else: OS=="win" | 109 }, { # else: OS=="win" |
109 'sources/': [['exclude', '_cairo_unittest\\.cc$']] | 110 'sources/': [['exclude', '_cairo_unittest\\.cc$']] |
(...skipping 16 matching lines...) Expand all Loading... |
126 ], | 127 ], |
127 }, | 128 }, |
128 ], | 129 ], |
129 } | 130 } |
130 | 131 |
131 # Local Variables: | 132 # Local Variables: |
132 # tab-width:2 | 133 # tab-width:2 |
133 # indent-tabs-mode:nil | 134 # indent-tabs-mode:nil |
134 # End: | 135 # End: |
135 # vim: set expandtab tabstop=2 shiftwidth=2: | 136 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |