| 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", | |
| 272 "views/notification_view_unittest.cc", | 271 "views/notification_view_unittest.cc", |
| 273 "views/notifier_settings_view_unittest.cc", | 272 "views/notifier_settings_view_unittest.cc", |
| 274 ] | 273 ] |
| 275 deps += [ | 274 deps += [ |
| 276 # Compositor is needed by message_center_view_unittest.cc and for the | 275 # Compositor is needed by message_center_view_unittest.cc and for the |
| 277 # fonts used by bounded_label_unittest.cc. | 276 # fonts used by bounded_label_unittest.cc. |
| 278 "//ui/compositor", | 277 "//ui/compositor", |
| 279 "//ui/display", | 278 "//ui/display", |
| 280 "//ui/views", | 279 "//ui/views", |
| 281 "//ui/views:test_support", | 280 "//ui/views:test_support", |
| 282 ] | 281 ] |
| 283 } | 282 } |
| 284 | 283 |
| 285 if (!is_ios) { | 284 if (!is_ios) { |
| 286 sources += [ "mojo/struct_traits_unittest.cc" ] | 285 sources += [ "mojo/struct_traits_unittest.cc" ] |
| 287 deps += [ | 286 deps += [ |
| 288 "//mojo/edk/system", | 287 "//mojo/edk/system", |
| 289 "//ui/gfx:test_support", | 288 "//ui/gfx:test_support", |
| 290 "//ui/message_center/mojo:test_interfaces", | 289 "//ui/message_center/mojo:test_interfaces", |
| 291 ] | 290 ] |
| 292 } | 291 } |
| 293 } # !is_ios && !is_android | 292 } # !is_ios && !is_android |
| 294 } | 293 } |
| OLD | NEW |