| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "system_tray_rotation_lock_locked.icon", | 223 "system_tray_rotation_lock_locked.icon", |
| 224 "system_tray_tracing.1x.icon", | 224 "system_tray_tracing.1x.icon", |
| 225 "system_tray_tracing.icon", | 225 "system_tray_tracing.icon", |
| 226 "system_tray_update.1x.icon", | 226 "system_tray_update.1x.icon", |
| 227 "system_tray_update.icon", | 227 "system_tray_update.icon", |
| 228 "system_tray_volume_mute.1x.icon", | 228 "system_tray_volume_mute.1x.icon", |
| 229 "system_tray_volume_mute.icon", | 229 "system_tray_volume_mute.icon", |
| 230 "touch_calibration_complete_check.1x.icon", | 230 "touch_calibration_complete_check.1x.icon", |
| 231 "touch_calibration_complete_check.icon", | 231 "touch_calibration_complete_check.icon", |
| 232 "touch_calibration_hand.icon", | 232 "touch_calibration_hand.icon", |
| 233 "tray_action_new_lock_screen_note.1x.icon", |
| 234 "tray_action_new_lock_screen_note.icon", |
| 233 "window_control_back.1x.icon", | 235 "window_control_back.1x.icon", |
| 234 "window_control_back.icon", | 236 "window_control_back.icon", |
| 235 "window_control_close.1x.icon", | 237 "window_control_close.1x.icon", |
| 236 "window_control_close.icon", | 238 "window_control_close.icon", |
| 237 "window_control_left_snapped.1x.icon", | 239 "window_control_left_snapped.1x.icon", |
| 238 "window_control_left_snapped.icon", | 240 "window_control_left_snapped.icon", |
| 239 "window_control_maximize.1x.icon", | 241 "window_control_maximize.1x.icon", |
| 240 "window_control_maximize.icon", | 242 "window_control_maximize.icon", |
| 241 "window_control_minimize.1x.icon", | 243 "window_control_minimize.1x.icon", |
| 242 "window_control_minimize.icon", | 244 "window_control_minimize.icon", |
| 243 "window_control_restore.1x.icon", | 245 "window_control_restore.1x.icon", |
| 244 "window_control_restore.icon", | 246 "window_control_restore.icon", |
| 245 "window_control_right_snapped.1x.icon", | 247 "window_control_right_snapped.1x.icon", |
| 246 "window_control_right_snapped.icon", | 248 "window_control_right_snapped.icon", |
| 247 ] | 249 ] |
| 248 } | 250 } |
| 249 | 251 |
| 250 source_set("vector_icons") { | 252 source_set("vector_icons") { |
| 251 sources = get_target_outputs(":ash_vector_icons") | 253 sources = get_target_outputs(":ash_vector_icons") |
| 252 | 254 |
| 253 deps = [ | 255 deps = [ |
| 254 ":ash_vector_icons", | 256 ":ash_vector_icons", |
| 255 "//base", | 257 "//base", |
| 256 "//skia", | 258 "//skia", |
| 257 "//ui/gfx", | 259 "//ui/gfx", |
| 258 ] | 260 ] |
| 259 } | 261 } |
| OLD | NEW |