| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "views/message_popup_collection.cc", | 116 "views/message_popup_collection.cc", |
| 117 "views/message_popup_collection.h", | 117 "views/message_popup_collection.h", |
| 118 "views/message_view.cc", | 118 "views/message_view.cc", |
| 119 "views/message_view.h", | 119 "views/message_view.h", |
| 120 "views/message_view_context_menu_controller.cc", | 120 "views/message_view_context_menu_controller.cc", |
| 121 "views/message_view_context_menu_controller.h", | 121 "views/message_view_context_menu_controller.h", |
| 122 "views/message_view_factory.cc", | 122 "views/message_view_factory.cc", |
| 123 "views/message_view_factory.h", | 123 "views/message_view_factory.h", |
| 124 "views/notification_button.cc", | 124 "views/notification_button.cc", |
| 125 "views/notification_button.h", | 125 "views/notification_button.h", |
| 126 "views/notification_progress_bar.cc", | |
| 127 "views/notification_progress_bar.h", | |
| 128 "views/notification_view.cc", | 126 "views/notification_view.cc", |
| 129 "views/notification_view.h", | 127 "views/notification_view.h", |
| 130 "views/notifier_settings_view.cc", | 128 "views/notifier_settings_view.cc", |
| 131 "views/notifier_settings_view.h", | 129 "views/notifier_settings_view.h", |
| 132 "views/padded_button.cc", | 130 "views/padded_button.cc", |
| 133 "views/padded_button.h", | 131 "views/padded_button.h", |
| 134 "views/popup_alignment_delegate.cc", | 132 "views/popup_alignment_delegate.cc", |
| 135 "views/popup_alignment_delegate.h", | 133 "views/popup_alignment_delegate.h", |
| 136 "views/proportional_image_view.cc", | 134 "views/proportional_image_view.cc", |
| 137 "views/proportional_image_view.h", | 135 "views/proportional_image_view.h", |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 # Compositor is needed by message_center_view_unittest.cc and for the | 246 # Compositor is needed by message_center_view_unittest.cc and for the |
| 249 # fonts used by bounded_label_unittest.cc. | 247 # fonts used by bounded_label_unittest.cc. |
| 250 "//ui/compositor", | 248 "//ui/compositor", |
| 251 "//ui/display", | 249 "//ui/display", |
| 252 "//ui/views", | 250 "//ui/views", |
| 253 "//ui/views:test_support", | 251 "//ui/views:test_support", |
| 254 ] | 252 ] |
| 255 } | 253 } |
| 256 } # enable_notifications && !is_android | 254 } # enable_notifications && !is_android |
| 257 } | 255 } |
| OLD | NEW |