| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 "//ui/gfx", | 209 "//ui/gfx", |
| 210 "//ui/gfx/geometry", | 210 "//ui/gfx/geometry", |
| 211 "//ui/gl", | 211 "//ui/gl", |
| 212 "//ui/gl:test_support", | 212 "//ui/gl:test_support", |
| 213 "//ui/resources", | 213 "//ui/resources", |
| 214 "//ui/resources:ui_test_pak", | 214 "//ui/resources:ui_test_pak", |
| 215 "//url", | 215 "//url", |
| 216 ] | 216 ] |
| 217 | 217 |
| 218 data_deps = [ | 218 data_deps = [ |
| 219 "//third_party/mesa:osmesa", |
| 219 "//ui/resources:ui_test_pak_data", | 220 "//ui/resources:ui_test_pak_data", |
| 220 ] | 221 ] |
| 221 | 222 |
| 222 if (enable_notifications && !is_android) { | 223 if (enable_notifications && !is_android) { |
| 223 sources += [ | 224 sources += [ |
| 224 "cocoa/notification_controller_unittest.mm", | 225 "cocoa/notification_controller_unittest.mm", |
| 225 "cocoa/popup_collection_unittest.mm", | 226 "cocoa/popup_collection_unittest.mm", |
| 226 "cocoa/popup_controller_unittest.mm", | 227 "cocoa/popup_controller_unittest.mm", |
| 227 "message_center_impl_unittest.cc", | 228 "message_center_impl_unittest.cc", |
| 228 "message_center_tray_unittest.cc", | 229 "message_center_tray_unittest.cc", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 247 # Compositor is needed by message_center_view_unittest.cc and for the | 248 # Compositor is needed by message_center_view_unittest.cc and for the |
| 248 # fonts used by bounded_label_unittest.cc. | 249 # fonts used by bounded_label_unittest.cc. |
| 249 "//ui/compositor", | 250 "//ui/compositor", |
| 250 "//ui/display", | 251 "//ui/display", |
| 251 "//ui/views", | 252 "//ui/views", |
| 252 "//ui/views:test_support", | 253 "//ui/views:test_support", |
| 253 ] | 254 ] |
| 254 } | 255 } |
| 255 } # enable_notifications && !is_android | 256 } # enable_notifications && !is_android |
| 256 } | 257 } |
| OLD | NEW |