| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "views/padded_button.cc", | 108 "views/padded_button.cc", |
| 109 "views/padded_button.h", | 109 "views/padded_button.h", |
| 110 "views/popup_alignment_delegate.cc", | 110 "views/popup_alignment_delegate.cc", |
| 111 "views/popup_alignment_delegate.h", | 111 "views/popup_alignment_delegate.h", |
| 112 "views/proportional_image_view.cc", | 112 "views/proportional_image_view.cc", |
| 113 "views/proportional_image_view.h", | 113 "views/proportional_image_view.h", |
| 114 "views/toast_contents_view.cc", | 114 "views/toast_contents_view.cc", |
| 115 "views/toast_contents_view.h", | 115 "views/toast_contents_view.h", |
| 116 ] | 116 ] |
| 117 deps += [ | 117 deps += [ |
| 118 "//ui/compositor", |
| 118 "//ui/events", | 119 "//ui/events", |
| 119 "//ui/views", | 120 "//ui/views", |
| 120 "//ui/compositor", | |
| 121 ] | 121 ] |
| 122 } | 122 } |
| 123 | 123 |
| 124 if (use_ash) { | 124 if (use_ash) { |
| 125 sources += [ | 125 sources += [ |
| 126 "views/message_bubble_base.cc", | 126 "views/message_bubble_base.cc", |
| 127 "views/message_bubble_base.h", | 127 "views/message_bubble_base.h", |
| 128 "views/message_center_bubble.cc", | 128 "views/message_center_bubble.cc", |
| 129 "views/message_center_bubble.h", | 129 "views/message_center_bubble.h", |
| 130 ] | 130 ] |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 deps += [ | 225 deps += [ |
| 226 # Compositor is needed by message_center_view_unittest.cc and for the | 226 # Compositor is needed by message_center_view_unittest.cc and for the |
| 227 # fonts used by bounded_label_unittest.cc. | 227 # fonts used by bounded_label_unittest.cc. |
| 228 "//ui/compositor", | 228 "//ui/compositor", |
| 229 "//ui/views", | 229 "//ui/views", |
| 230 "//ui/views:test_support", | 230 "//ui/views:test_support", |
| 231 ] | 231 ] |
| 232 } | 232 } |
| 233 } # enable_notifications && !is_android | 233 } # enable_notifications && !is_android |
| 234 } | 234 } |
| OLD | NEW |