| 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 | 7 |
| 8 component("message_center") { | 8 component("message_center") { |
| 9 defines = [ "MESSAGE_CENTER_IMPLEMENTATION" ] | 9 defines = [ "MESSAGE_CENTER_IMPLEMENTATION" ] |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "notification_delegate.h", | 47 "notification_delegate.h", |
| 48 "message_center_impl.cc", | 48 "message_center_impl.cc", |
| 49 "message_center_impl.h", | 49 "message_center_impl.h", |
| 50 "message_center_observer.h", | 50 "message_center_observer.h", |
| 51 "message_center_style.cc", | 51 "message_center_style.cc", |
| 52 "message_center_style.h", | 52 "message_center_style.h", |
| 53 "message_center_tray.cc", | 53 "message_center_tray.cc", |
| 54 "message_center_tray.h", | 54 "message_center_tray.h", |
| 55 "message_center_tray_delegate.h", | 55 "message_center_tray_delegate.h", |
| 56 "message_center_types.h", | 56 "message_center_types.h", |
| 57 "message_center_switches.h", |
| 58 "message_center_switches.cc", |
| 57 "notification.cc", | 59 "notification.cc", |
| 58 "notification.h", | 60 "notification.h", |
| 59 "notification_blocker.cc", | 61 "notification_blocker.cc", |
| 60 "notification_blocker.h", | 62 "notification_blocker.h", |
| 61 "notification_list.cc", | 63 "notification_list.cc", |
| 62 "notification_list.h", | 64 "notification_list.h", |
| 63 "notification_types.cc", | 65 "notification_types.cc", |
| 64 "notification_types.h", | 66 "notification_types.h", |
| 65 "notifier_settings.cc", | 67 "notifier_settings.cc", |
| 66 "notifier_settings.h", | 68 "notifier_settings.h", |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 deps += [ | 215 deps += [ |
| 214 # Compositor is needed by message_center_view_unittest.cc and for the | 216 # Compositor is needed by message_center_view_unittest.cc and for the |
| 215 # fonts used by bounded_label_unittest.cc. | 217 # fonts used by bounded_label_unittest.cc. |
| 216 "//ui/compositor", | 218 "//ui/compositor", |
| 217 "//ui/views", | 219 "//ui/views", |
| 218 "//ui/views:test_support", | 220 "//ui/views:test_support", |
| 219 ] | 221 ] |
| 220 } | 222 } |
| 221 } # enable_notifications | 223 } # enable_notifications |
| 222 } | 224 } |
| OLD | NEW |