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