| 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', |
| 160 '../views/views.gyp:views', | 161 '../views/views.gyp:views', |
| 161 '../views/views.gyp:views_test_support', | 162 '../views/views.gyp:views_test_support', |
| 162 ], | 163 ], |
| 163 'sources': [ | 164 'sources': [ |
| 164 'views/bounded_label_unittest.cc', | 165 'views/bounded_label_unittest.cc', |
| 165 'views/message_center_view_unittest.cc', | 166 'views/message_center_view_unittest.cc', |
| 166 'views/message_popup_collection_unittest.cc', | 167 'views/message_popup_collection_unittest.cc', |
| 167 ], | 168 ], |
| 168 }], | 169 }], |
| 169 ['notifications==0', { # Android and iOS. | 170 ['notifications==0', { # Android and iOS. |
| 170 'sources/': [ | 171 'sources/': [ |
| 171 # Exclude everything except main(). | 172 # Exclude everything except main(). |
| 172 ['exclude', '\\.(cc|mm)$'], | 173 ['exclude', '\\.(cc|mm)$'], |
| 173 ['include', '^test/run_all_unittests\\.cc$'], | 174 ['include', '^test/run_all_unittests\\.cc$'], |
| 174 ], | 175 ], |
| 175 }], | 176 }], |
| 176 ], | 177 ], |
| 177 }, # target_name: message_center_unittests | 178 }, # target_name: message_center_unittests |
| 178 ], | 179 ], |
| 179 } | 180 } |
| OLD | NEW |