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") { |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 "views/notification_view.cc", | 143 "views/notification_view.cc", |
144 "views/notification_view.h", | 144 "views/notification_view.h", |
145 "views/notifier_settings_view.cc", | 145 "views/notifier_settings_view.cc", |
146 "views/notifier_settings_view.h", | 146 "views/notifier_settings_view.h", |
147 "views/padded_button.cc", | 147 "views/padded_button.cc", |
148 "views/padded_button.h", | 148 "views/padded_button.h", |
149 "views/popup_alignment_delegate.cc", | 149 "views/popup_alignment_delegate.cc", |
150 "views/popup_alignment_delegate.h", | 150 "views/popup_alignment_delegate.h", |
151 "views/proportional_image_view.cc", | 151 "views/proportional_image_view.cc", |
152 "views/proportional_image_view.h", | 152 "views/proportional_image_view.h", |
| 153 "views/slide_out_controller.cc", |
| 154 "views/slide_out_controller.h", |
153 "views/toast_contents_view.cc", | 155 "views/toast_contents_view.cc", |
154 "views/toast_contents_view.h", | 156 "views/toast_contents_view.h", |
155 ] | 157 ] |
156 deps += [ | 158 deps += [ |
157 "//ui/compositor", | 159 "//ui/compositor", |
158 "//ui/events", | 160 "//ui/events", |
159 "//ui/views", | 161 "//ui/views", |
160 ] | 162 ] |
161 } | 163 } |
162 } else { | 164 } else { |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 ":message_center", | 216 ":message_center", |
215 ":test_support", | 217 ":test_support", |
216 "//base", | 218 "//base", |
217 "//base/test:test_support", | 219 "//base/test:test_support", |
218 "//skia", | 220 "//skia", |
219 "//testing/gmock", | 221 "//testing/gmock", |
220 "//testing/gtest", | 222 "//testing/gtest", |
221 "//ui/base", | 223 "//ui/base", |
222 "//ui/base:test_support", | 224 "//ui/base:test_support", |
223 "//ui/events", | 225 "//ui/events", |
| 226 "//ui/events:test_support", |
224 "//ui/gfx", | 227 "//ui/gfx", |
225 "//ui/gfx/geometry", | 228 "//ui/gfx/geometry", |
226 "//ui/gl", | 229 "//ui/gl", |
227 "//ui/gl:test_support", | 230 "//ui/gl:test_support", |
228 "//ui/resources", | 231 "//ui/resources", |
229 "//ui/resources:ui_test_pak", | 232 "//ui/resources:ui_test_pak", |
230 "//url", | 233 "//url", |
231 ] | 234 ] |
232 | 235 |
233 data_deps = [ | 236 data_deps = [ |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 if (!is_ios) { | 276 if (!is_ios) { |
274 sources += [ "mojo/struct_traits_unittest.cc" ] | 277 sources += [ "mojo/struct_traits_unittest.cc" ] |
275 deps += [ | 278 deps += [ |
276 "//mojo/edk/system", | 279 "//mojo/edk/system", |
277 "//ui/gfx:test_support", | 280 "//ui/gfx:test_support", |
278 "//ui/message_center/mojo:test_interfaces", | 281 "//ui/message_center/mojo:test_interfaces", |
279 ] | 282 ] |
280 } | 283 } |
281 } # !is_ios && !is_android | 284 } # !is_ios && !is_android |
282 } | 285 } |
OLD | NEW |