| 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 | 8 |
| 9 # TODO(msw|mukai|dewittj): Move ash-specific files: crbug.com/585175 | 9 # TODO(msw|mukai|dewittj): Move ash-specific files: crbug.com/585175 |
| 10 component("message_center") { | 10 component("message_center") { |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 | 231 |
| 232 if (is_mac) { | 232 if (is_mac) { |
| 233 deps += [ "//ui/gfx:test_support" ] | 233 deps += [ "//ui/gfx:test_support" ] |
| 234 } | 234 } |
| 235 | 235 |
| 236 if (toolkit_views && !is_mac) { | 236 if (toolkit_views && !is_mac) { |
| 237 sources += [ | 237 sources += [ |
| 238 "views/bounded_label_unittest.cc", | 238 "views/bounded_label_unittest.cc", |
| 239 "views/custom_notification_view_unittest.cc", | 239 "views/custom_notification_view_unittest.cc", |
| 240 "views/message_center_view_unittest.cc", | 240 "views/message_center_view_unittest.cc", |
| 241 "views/message_list_view_unittest.cc", |
| 241 "views/message_popup_collection_unittest.cc", | 242 "views/message_popup_collection_unittest.cc", |
| 242 "views/notification_view_unittest.cc", | 243 "views/notification_view_unittest.cc", |
| 243 "views/notifier_settings_view_unittest.cc", | 244 "views/notifier_settings_view_unittest.cc", |
| 244 ] | 245 ] |
| 245 deps += [ | 246 deps += [ |
| 246 # Compositor is needed by message_center_view_unittest.cc and for the | 247 # Compositor is needed by message_center_view_unittest.cc and for the |
| 247 # fonts used by bounded_label_unittest.cc. | 248 # fonts used by bounded_label_unittest.cc. |
| 248 "//ui/compositor", | 249 "//ui/compositor", |
| 249 "//ui/display", | 250 "//ui/display", |
| 250 "//ui/views", | 251 "//ui/views", |
| 251 "//ui/views:test_support", | 252 "//ui/views:test_support", |
| 252 ] | 253 ] |
| 253 } | 254 } |
| 254 | 255 |
| 255 if (!is_ios) { | 256 if (!is_ios) { |
| 256 sources += [ "mojo/struct_traits_unittest.cc" ] | 257 sources += [ "mojo/struct_traits_unittest.cc" ] |
| 257 deps += [ | 258 deps += [ |
| 258 "//mojo/edk/system", | 259 "//mojo/edk/system", |
| 259 "//ui/gfx:test_support", | 260 "//ui/gfx:test_support", |
| 260 "//ui/message_center/mojo:test_interfaces", | 261 "//ui/message_center/mojo:test_interfaces", |
| 261 ] | 262 ] |
| 262 } | 263 } |
| 263 } # enable_notifications && !is_android | 264 } # enable_notifications && !is_android |
| 264 } | 265 } |
| OLD | NEW |