OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//ui/vector_icons/vector_icons.gni") | 8 import("//ui/vector_icons/vector_icons.gni") |
9 | 9 |
10 aggregate_vector_icons("message_center_vector_icons") { | 10 aggregate_vector_icons("message_center_vector_icons") { |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 if (is_mac) { | 261 if (is_mac) { |
262 deps += [ "//ui/gfx:test_support" ] | 262 deps += [ "//ui/gfx:test_support" ] |
263 } | 263 } |
264 | 264 |
265 if (toolkit_views && !is_mac) { | 265 if (toolkit_views && !is_mac) { |
266 sources += [ | 266 sources += [ |
267 "views/bounded_label_unittest.cc", | 267 "views/bounded_label_unittest.cc", |
268 "views/message_center_view_unittest.cc", | 268 "views/message_center_view_unittest.cc", |
269 "views/message_list_view_unittest.cc", | 269 "views/message_list_view_unittest.cc", |
270 "views/message_popup_collection_unittest.cc", | 270 "views/message_popup_collection_unittest.cc", |
| 271 "views/notification_view_md_unittest.cc", |
271 "views/notification_view_unittest.cc", | 272 "views/notification_view_unittest.cc", |
272 "views/notifier_settings_view_unittest.cc", | 273 "views/notifier_settings_view_unittest.cc", |
273 ] | 274 ] |
274 deps += [ | 275 deps += [ |
275 # Compositor is needed by message_center_view_unittest.cc and for the | 276 # Compositor is needed by message_center_view_unittest.cc and for the |
276 # fonts used by bounded_label_unittest.cc. | 277 # fonts used by bounded_label_unittest.cc. |
277 "//ui/compositor", | 278 "//ui/compositor", |
278 "//ui/display", | 279 "//ui/display", |
279 "//ui/views", | 280 "//ui/views", |
280 "//ui/views:test_support", | 281 "//ui/views:test_support", |
281 ] | 282 ] |
282 } | 283 } |
283 | 284 |
284 if (!is_ios) { | 285 if (!is_ios) { |
285 sources += [ "mojo/struct_traits_unittest.cc" ] | 286 sources += [ "mojo/struct_traits_unittest.cc" ] |
286 deps += [ | 287 deps += [ |
287 "//mojo/edk/system", | 288 "//mojo/edk/system", |
288 "//ui/gfx:test_support", | 289 "//ui/gfx:test_support", |
289 "//ui/message_center/mojo:test_interfaces", | 290 "//ui/message_center/mojo:test_interfaces", |
290 ] | 291 ] |
291 } | 292 } |
292 } # !is_ios && !is_android | 293 } # !is_ios && !is_android |
293 } | 294 } |
OLD | NEW |