| 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") { |
| 11 icon_directory = "vector_icons" | 11 icon_directory = "vector_icons" |
| 12 | 12 |
| 13 icons = [ | 13 icons = [ |
| 14 "notification_settings_button.1x.icon", |
| 15 "notification_settings_button.icon", |
| 14 "notification_close_button.1x.icon", | 16 "notification_close_button.1x.icon", |
| 15 "notification_close_button.icon", | 17 "notification_close_button.icon", |
| 16 ] | 18 ] |
| 17 } | 19 } |
| 18 | 20 |
| 19 # TODO(msw|mukai|dewittj): Move ash-specific files: crbug.com/585175 | 21 # TODO(msw|mukai|dewittj): Move ash-specific files: crbug.com/585175 |
| 20 component("message_center") { | 22 component("message_center") { |
| 21 deps = [ | 23 deps = [ |
| 22 "//base", | 24 "//base", |
| 23 "//ui/base", | 25 "//ui/base", |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 if (!is_ios) { | 273 if (!is_ios) { |
| 272 sources += [ "mojo/struct_traits_unittest.cc" ] | 274 sources += [ "mojo/struct_traits_unittest.cc" ] |
| 273 deps += [ | 275 deps += [ |
| 274 "//mojo/edk/system", | 276 "//mojo/edk/system", |
| 275 "//ui/gfx:test_support", | 277 "//ui/gfx:test_support", |
| 276 "//ui/message_center/mojo:test_interfaces", | 278 "//ui/message_center/mojo:test_interfaces", |
| 277 ] | 279 ] |
| 278 } | 280 } |
| 279 } # !is_ios && !is_android | 281 } # !is_ios && !is_android |
| 280 } | 282 } |
| OLD | NEW |