| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//ui/vector_icons/vector_icons.gni") | 5 import("//ui/vector_icons/vector_icons.gni") |
| 6 | 6 |
| 7 aggregate_vector_icons("ash_vector_icons") { | 7 aggregate_vector_icons("ash_vector_icons") { |
| 8 icon_directory = "." | 8 icon_directory = "." |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 "window_control_minimize.icon", | 239 "window_control_minimize.icon", |
| 240 "window_control_restore.1x.icon", | 240 "window_control_restore.1x.icon", |
| 241 "window_control_restore.icon", | 241 "window_control_restore.icon", |
| 242 "window_control_right_snapped.1x.icon", | 242 "window_control_right_snapped.1x.icon", |
| 243 "window_control_right_snapped.icon", | 243 "window_control_right_snapped.icon", |
| 244 ] | 244 ] |
| 245 } | 245 } |
| 246 | 246 |
| 247 source_set("vector_icons") { | 247 source_set("vector_icons") { |
| 248 sources = get_target_outputs(":ash_vector_icons") | 248 sources = get_target_outputs(":ash_vector_icons") |
| 249 sources += [ "//ui/gfx/vector_icon_types.h" ] | |
| 250 | 249 |
| 251 deps = [ | 250 deps = [ |
| 252 ":ash_vector_icons", | 251 ":ash_vector_icons", |
| 253 "//base", | 252 "//base", |
| 254 "//skia", | 253 "//skia", |
| 254 "//ui/gfx", |
| 255 ] | 255 ] |
| 256 } | 256 } |
| OLD | NEW |