| 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 import("//ui/vector_icons/vector_icons.gni") | 8 import("//ui/vector_icons/vector_icons.gni") |
| 9 | 9 |
| 10 aggregate_vector_icons("message_center_vector_icons") { | 10 aggregate_vector_icons("message_center_vector_icons") { |
| 11 icon_directory = "vector_icons" | 11 icon_directory = "vector_icons" |
| 12 | 12 |
| 13 icons = [ | 13 icons = [ |
| 14 "notification_close_button.1x.icon", |
| 15 "notification_close_button.icon", |
| 16 "notification_expand_less.icon", |
| 17 "notification_expand_more.icon", |
| 14 "notification_settings_button.1x.icon", | 18 "notification_settings_button.1x.icon", |
| 15 "notification_settings_button.icon", | 19 "notification_settings_button.icon", |
| 16 "notification_close_button.1x.icon", | |
| 17 "notification_close_button.icon", | |
| 18 "product.1x.icon", | 20 "product.1x.icon", |
| 19 "product.icon", | 21 "product.icon", |
| 20 ] | 22 ] |
| 21 } | 23 } |
| 22 | 24 |
| 23 # TODO(msw|mukai|dewittj): Move ash-specific files: crbug.com/585175 | 25 # TODO(msw|mukai|dewittj): Move ash-specific files: crbug.com/585175 |
| 24 component("message_center") { | 26 component("message_center") { |
| 25 deps = [ | 27 deps = [ |
| 26 "//base", | 28 "//base", |
| 27 "//ui/base", | 29 "//ui/base", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "views/message_popup_collection.cc", | 136 "views/message_popup_collection.cc", |
| 135 "views/message_popup_collection.h", | 137 "views/message_popup_collection.h", |
| 136 "views/message_view.cc", | 138 "views/message_view.cc", |
| 137 "views/message_view.h", | 139 "views/message_view.h", |
| 138 "views/message_view_context_menu_controller.cc", | 140 "views/message_view_context_menu_controller.cc", |
| 139 "views/message_view_context_menu_controller.h", | 141 "views/message_view_context_menu_controller.h", |
| 140 "views/message_view_factory.cc", | 142 "views/message_view_factory.cc", |
| 141 "views/message_view_factory.h", | 143 "views/message_view_factory.h", |
| 142 "views/notification_button.cc", | 144 "views/notification_button.cc", |
| 143 "views/notification_button.h", | 145 "views/notification_button.h", |
| 146 "views/notification_header_view.cc", |
| 147 "views/notification_header_view.h", |
| 144 "views/notification_view.cc", | 148 "views/notification_view.cc", |
| 145 "views/notification_view.h", | 149 "views/notification_view.h", |
| 146 "views/notification_view_md.cc", | 150 "views/notification_view_md.cc", |
| 147 "views/notification_view_md.h", | 151 "views/notification_view_md.h", |
| 148 "views/notifier_settings_view.cc", | 152 "views/notifier_settings_view.cc", |
| 149 "views/notifier_settings_view.h", | 153 "views/notifier_settings_view.h", |
| 150 "views/padded_button.cc", | 154 "views/padded_button.cc", |
| 151 "views/padded_button.h", | 155 "views/padded_button.h", |
| 152 "views/popup_alignment_delegate.cc", | 156 "views/popup_alignment_delegate.cc", |
| 153 "views/popup_alignment_delegate.h", | 157 "views/popup_alignment_delegate.h", |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 if (!is_ios) { | 282 if (!is_ios) { |
| 279 sources += [ "mojo/struct_traits_unittest.cc" ] | 283 sources += [ "mojo/struct_traits_unittest.cc" ] |
| 280 deps += [ | 284 deps += [ |
| 281 "//mojo/edk/system", | 285 "//mojo/edk/system", |
| 282 "//ui/gfx:test_support", | 286 "//ui/gfx:test_support", |
| 283 "//ui/message_center/mojo:test_interfaces", | 287 "//ui/message_center/mojo:test_interfaces", |
| 284 ] | 288 ] |
| 285 } | 289 } |
| 286 } # !is_ios && !is_android | 290 } # !is_ios && !is_android |
| 287 } | 291 } |
| OLD | NEW |