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 component("message_center") { | 9 component("message_center") { |
10 deps = [ | 10 deps = [ |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 "views/message_list_view.cc", | 94 "views/message_list_view.cc", |
95 "views/message_list_view.h", | 95 "views/message_list_view.h", |
96 "views/message_popup_collection.cc", | 96 "views/message_popup_collection.cc", |
97 "views/message_popup_collection.h", | 97 "views/message_popup_collection.h", |
98 "views/message_view.cc", | 98 "views/message_view.cc", |
99 "views/message_view.h", | 99 "views/message_view.h", |
100 "views/message_view_context_menu_controller.cc", | 100 "views/message_view_context_menu_controller.cc", |
101 "views/message_view_context_menu_controller.h", | 101 "views/message_view_context_menu_controller.h", |
102 "views/notification_button.cc", | 102 "views/notification_button.cc", |
103 "views/notification_button.h", | 103 "views/notification_button.h", |
| 104 "views/notification_progress_bar.cc", |
| 105 "views/notification_progress_bar.h", |
104 "views/notification_view.cc", | 106 "views/notification_view.cc", |
105 "views/notification_view.h", | 107 "views/notification_view.h", |
106 "views/notifier_settings_view.cc", | 108 "views/notifier_settings_view.cc", |
107 "views/notifier_settings_view.h", | 109 "views/notifier_settings_view.h", |
108 "views/padded_button.cc", | 110 "views/padded_button.cc", |
109 "views/padded_button.h", | 111 "views/padded_button.h", |
110 "views/popup_alignment_delegate.cc", | 112 "views/popup_alignment_delegate.cc", |
111 "views/popup_alignment_delegate.h", | 113 "views/popup_alignment_delegate.h", |
112 "views/proportional_image_view.cc", | 114 "views/proportional_image_view.cc", |
113 "views/proportional_image_view.h", | 115 "views/proportional_image_view.h", |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 deps += [ | 227 deps += [ |
226 # Compositor is needed by message_center_view_unittest.cc and for the | 228 # Compositor is needed by message_center_view_unittest.cc and for the |
227 # fonts used by bounded_label_unittest.cc. | 229 # fonts used by bounded_label_unittest.cc. |
228 "//ui/compositor", | 230 "//ui/compositor", |
229 "//ui/views", | 231 "//ui/views", |
230 "//ui/views:test_support", | 232 "//ui/views:test_support", |
231 ] | 233 ] |
232 } | 234 } |
233 } # enable_notifications && !is_android | 235 } # enable_notifications && !is_android |
234 } | 236 } |
OLD | NEW |