| 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 # TODO(msw|mukai|dewittj): Move ash-specific files: crbug.com/585175 | 9 # TODO(msw|mukai|dewittj): Move ash-specific files: crbug.com/585175 |
| 10 component("message_center") { | 10 component("message_center") { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 } | 91 } |
| 92 | 92 |
| 93 # On Mac, toolkit-views builds still use the Cocoa UI. Keep this in sync | 93 # On Mac, toolkit-views builds still use the Cocoa UI. Keep this in sync |
| 94 # with message_center_unittests below. | 94 # with message_center_unittests below. |
| 95 if (toolkit_views && !is_mac) { | 95 if (toolkit_views && !is_mac) { |
| 96 sources += [ | 96 sources += [ |
| 97 "notification_delegate_views.cc", | 97 "notification_delegate_views.cc", |
| 98 "views/bounded_label.cc", | 98 "views/bounded_label.cc", |
| 99 "views/bounded_label.h", | 99 "views/bounded_label.h", |
| 100 "views/constants.h", | 100 "views/constants.h", |
| 101 "views/custom_notification_content_view_delegate.cc", |
| 102 "views/custom_notification_content_view_delegate.h", |
| 101 "views/custom_notification_view.cc", | 103 "views/custom_notification_view.cc", |
| 102 "views/custom_notification_view.h", | 104 "views/custom_notification_view.h", |
| 103 "views/desktop_popup_alignment_delegate.cc", | 105 "views/desktop_popup_alignment_delegate.cc", |
| 104 "views/desktop_popup_alignment_delegate.h", | 106 "views/desktop_popup_alignment_delegate.h", |
| 105 "views/message_bubble_base.cc", | 107 "views/message_bubble_base.cc", |
| 106 "views/message_bubble_base.h", | 108 "views/message_bubble_base.h", |
| 107 "views/message_center_bubble.cc", | 109 "views/message_center_bubble.cc", |
| 108 "views/message_center_bubble.h", | 110 "views/message_center_bubble.h", |
| 109 "views/message_center_button_bar.cc", | 111 "views/message_center_button_bar.cc", |
| 110 "views/message_center_button_bar.h", | 112 "views/message_center_button_bar.h", |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 if (!is_ios) { | 257 if (!is_ios) { |
| 256 sources += [ "mojo/struct_traits_unittest.cc" ] | 258 sources += [ "mojo/struct_traits_unittest.cc" ] |
| 257 deps += [ | 259 deps += [ |
| 258 "//mojo/edk/system", | 260 "//mojo/edk/system", |
| 259 "//ui/gfx:test_support", | 261 "//ui/gfx:test_support", |
| 260 "//ui/message_center/mojo:test_interfaces", | 262 "//ui/message_center/mojo:test_interfaces", |
| 261 ] | 263 ] |
| 262 } | 264 } |
| 263 } # enable_notifications && !is_android | 265 } # enable_notifications && !is_android |
| 264 } | 266 } |
| OLD | NEW |