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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 "//base", | 193 "//base", |
194 "//base/allocator", | 194 "//base/allocator", |
195 "//base/test:test_support", | 195 "//base/test:test_support", |
196 "//skia", | 196 "//skia", |
197 "//testing/gtest", | 197 "//testing/gtest", |
198 "//ui/base", | 198 "//ui/base", |
199 "//ui/events", | 199 "//ui/events", |
200 "//ui/gfx", | 200 "//ui/gfx", |
201 "//ui/gfx/geometry", | 201 "//ui/gfx/geometry", |
202 "//ui/gl", | 202 "//ui/gl", |
| 203 "//ui/gl:test_support", |
203 "//ui/resources", | 204 "//ui/resources", |
204 "//ui/resources:ui_test_pak", | 205 "//ui/resources:ui_test_pak", |
205 "//url", | 206 "//url", |
206 ] | 207 ] |
207 | 208 |
208 if (enable_notifications && !is_android) { | 209 if (enable_notifications && !is_android) { |
209 sources += [ | 210 sources += [ |
210 "cocoa/notification_controller_unittest.mm", | 211 "cocoa/notification_controller_unittest.mm", |
211 "cocoa/popup_collection_unittest.mm", | 212 "cocoa/popup_collection_unittest.mm", |
212 "cocoa/popup_controller_unittest.mm", | 213 "cocoa/popup_controller_unittest.mm", |
(...skipping 22 matching lines...) Expand all Loading... |
235 deps += [ | 236 deps += [ |
236 # Compositor is needed by message_center_view_unittest.cc and for the | 237 # Compositor is needed by message_center_view_unittest.cc and for the |
237 # fonts used by bounded_label_unittest.cc. | 238 # fonts used by bounded_label_unittest.cc. |
238 "//ui/compositor", | 239 "//ui/compositor", |
239 "//ui/views", | 240 "//ui/views", |
240 "//ui/views:test_support", | 241 "//ui/views:test_support", |
241 ] | 242 ] |
242 } | 243 } |
243 } # enable_notifications && !is_android | 244 } # enable_notifications && !is_android |
244 } | 245 } |
OLD | NEW |