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