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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 ], | 157 ], |
158 }, # target_name: message_center_test_support | 158 }, # target_name: message_center_test_support |
159 { | 159 { |
160 'target_name': 'message_center_unittests', | 160 'target_name': 'message_center_unittests', |
161 'type': 'executable', | 161 'type': 'executable', |
162 'dependencies': [ | 162 'dependencies': [ |
163 '../../base/base.gyp:base', | 163 '../../base/base.gyp:base', |
164 '../../base/base.gyp:test_support_base', | 164 '../../base/base.gyp:test_support_base', |
165 '../../skia/skia.gyp:skia', | 165 '../../skia/skia.gyp:skia', |
166 '../../testing/gtest.gyp:gtest', | 166 '../../testing/gtest.gyp:gtest', |
| 167 '../../url/url.gyp:url_lib', |
167 '../events/events.gyp:events', | 168 '../events/events.gyp:events', |
168 '../gfx/gfx.gyp:gfx', | 169 '../gfx/gfx.gyp:gfx', |
169 '../ui.gyp:run_ui_unittests', | |
170 '../ui.gyp:ui', | 170 '../ui.gyp:ui', |
171 '../../url/url.gyp:url_lib', | 171 '../ui_unittests.gyp:run_ui_unittests', |
172 'message_center', | 172 'message_center', |
173 'message_center_test_support', | 173 'message_center_test_support', |
174 ], | 174 ], |
175 'sources': [ | 175 'sources': [ |
176 'cocoa/notification_controller_unittest.mm', | 176 'cocoa/notification_controller_unittest.mm', |
177 'cocoa/popup_collection_unittest.mm', | 177 'cocoa/popup_collection_unittest.mm', |
178 'cocoa/popup_controller_unittest.mm', | 178 'cocoa/popup_controller_unittest.mm', |
179 'cocoa/settings_controller_unittest.mm', | 179 'cocoa/settings_controller_unittest.mm', |
180 'cocoa/status_item_view_unittest.mm', | 180 'cocoa/status_item_view_unittest.mm', |
181 'cocoa/tray_controller_unittest.mm', | 181 'cocoa/tray_controller_unittest.mm', |
182 'cocoa/tray_view_controller_unittest.mm', | 182 'cocoa/tray_view_controller_unittest.mm', |
183 'message_center_tray_unittest.cc', | 183 'message_center_tray_unittest.cc', |
184 'message_center_impl_unittest.cc', | 184 'message_center_impl_unittest.cc', |
185 'notification_list_unittest.cc', | 185 'notification_list_unittest.cc', |
186 'test/run_all_unittests.cc', | 186 'test/run_all_unittests.cc', |
187 ], | 187 ], |
188 'conditions': [ | 188 'conditions': [ |
189 ['OS=="mac"', { | 189 ['OS=="mac"', { |
190 'dependencies': [ | 190 'dependencies': [ |
191 '../ui.gyp:ui_test_support', | 191 '../ui_unittests.gyp:ui_test_support', |
192 ], | 192 ], |
193 }], | 193 }], |
194 ['toolkit_views==1', { | 194 ['toolkit_views==1', { |
195 'dependencies': [ | 195 'dependencies': [ |
196 # Compositor is needed by message_center_view_unittest.cc | 196 # Compositor is needed by message_center_view_unittest.cc |
197 # and for the fonts used by bounded_label_unittest.cc. | 197 # and for the fonts used by bounded_label_unittest.cc. |
198 '../compositor/compositor.gyp:compositor', | 198 '../compositor/compositor.gyp:compositor', |
199 '../views/views.gyp:views', | 199 '../views/views.gyp:views', |
200 '../views/views.gyp:views_test_support', | 200 '../views/views.gyp:views_test_support', |
201 ], | 201 ], |
(...skipping 13 matching lines...) Expand all Loading... |
215 # See http://crbug.com/162998#c4 for why this is needed. | 215 # See http://crbug.com/162998#c4 for why this is needed. |
216 ['OS=="linux" and linux_use_tcmalloc==1', { | 216 ['OS=="linux" and linux_use_tcmalloc==1', { |
217 'dependencies': [ | 217 'dependencies': [ |
218 '../../base/allocator/allocator.gyp:allocator', | 218 '../../base/allocator/allocator.gyp:allocator', |
219 ], | 219 ], |
220 }], | 220 }], |
221 ], | 221 ], |
222 }, # target_name: message_center_unittests | 222 }, # target_name: message_center_unittests |
223 ], | 223 ], |
224 } | 224 } |
OLD | NEW |