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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 ['OS=="mac"', { | 150 ['OS=="mac"', { |
151 'dependencies': [ | 151 'dependencies': [ |
152 '../ui.gyp:ui_test_support', | 152 '../ui.gyp:ui_test_support', |
153 ], | 153 ], |
154 }], | 154 }], |
155 ['toolkit_views==1', { | 155 ['toolkit_views==1', { |
156 'dependencies': [ | 156 'dependencies': [ |
157 # Compositor is needed by message_center_view_unittest.cc | 157 # Compositor is needed by message_center_view_unittest.cc |
158 # and for the fonts used by bounded_label_unittest.cc. | 158 # and for the fonts used by bounded_label_unittest.cc. |
159 '../compositor/compositor.gyp:compositor', | 159 '../compositor/compositor.gyp:compositor', |
160 '../compositor/compositor.gyp:compositor_test_support', | |
161 '../views/views.gyp:views', | 160 '../views/views.gyp:views', |
162 '../views/views.gyp:views_test_support', | 161 '../views/views.gyp:views_test_support', |
163 ], | 162 ], |
164 'sources': [ | 163 'sources': [ |
165 'views/bounded_label_unittest.cc', | 164 'views/bounded_label_unittest.cc', |
166 'views/message_center_view_unittest.cc', | 165 'views/message_center_view_unittest.cc', |
167 'views/message_popup_collection_unittest.cc', | 166 'views/message_popup_collection_unittest.cc', |
168 ], | 167 ], |
169 }], | 168 }], |
170 ['notifications==0', { # Android and iOS. | 169 ['notifications==0', { # Android and iOS. |
171 'sources/': [ | 170 'sources/': [ |
172 # Exclude everything except main(). | 171 # Exclude everything except main(). |
173 ['exclude', '\\.(cc|mm)$'], | 172 ['exclude', '\\.(cc|mm)$'], |
174 ['include', '^test/run_all_unittests\\.cc$'], | 173 ['include', '^test/run_all_unittests\\.cc$'], |
175 ], | 174 ], |
176 }], | 175 }], |
177 ], | 176 ], |
178 }, # target_name: message_center_unittests | 177 }, # target_name: message_center_unittests |
179 ], | 178 ], |
180 } | 179 } |
OLD | NEW |