| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 "system_tray_cast.1x.icon", | 209 "system_tray_cast.1x.icon", |
| 210 "system_tray_cast.icon", | 210 "system_tray_cast.icon", |
| 211 "system_tray_night_light.1x.icon", | 211 "system_tray_night_light.1x.icon", |
| 212 "system_tray_night_light.icon", | 212 "system_tray_night_light.icon", |
| 213 "system_tray_recording.1x.icon", | 213 "system_tray_recording.1x.icon", |
| 214 "system_tray_recording.icon", | 214 "system_tray_recording.icon", |
| 215 "system_tray_rotation_lock_auto.1x.icon", | 215 "system_tray_rotation_lock_auto.1x.icon", |
| 216 "system_tray_rotation_lock_auto.icon", | 216 "system_tray_rotation_lock_auto.icon", |
| 217 "system_tray_rotation_lock_locked.1x.icon", | 217 "system_tray_rotation_lock_locked.1x.icon", |
| 218 "system_tray_rotation_lock_locked.icon", | 218 "system_tray_rotation_lock_locked.icon", |
| 219 "system_tray_screen_share.1x.icon", | |
| 220 "system_tray_screen_share.icon", | |
| 221 "system_tray_tracing.1x.icon", | 219 "system_tray_tracing.1x.icon", |
| 222 "system_tray_tracing.icon", | 220 "system_tray_tracing.icon", |
| 223 "system_tray_update.1x.icon", | 221 "system_tray_update.1x.icon", |
| 224 "system_tray_update.icon", | 222 "system_tray_update.icon", |
| 225 "system_tray_volume_mute.1x.icon", | 223 "system_tray_volume_mute.1x.icon", |
| 226 "system_tray_volume_mute.icon", | 224 "system_tray_volume_mute.icon", |
| 227 "touch_calibration_complete_check.1x.icon", | 225 "touch_calibration_complete_check.1x.icon", |
| 228 "touch_calibration_complete_check.icon", | 226 "touch_calibration_complete_check.icon", |
| 229 "touch_calibration_hand.icon", | 227 "touch_calibration_hand.icon", |
| 230 "window_control_back.1x.icon", | 228 "window_control_back.1x.icon", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 247 source_set("vector_icons") { | 245 source_set("vector_icons") { |
| 248 sources = get_target_outputs(":ash_vector_icons") | 246 sources = get_target_outputs(":ash_vector_icons") |
| 249 | 247 |
| 250 deps = [ | 248 deps = [ |
| 251 ":ash_vector_icons", | 249 ":ash_vector_icons", |
| 252 "//base", | 250 "//base", |
| 253 "//skia", | 251 "//skia", |
| 254 "//ui/gfx", | 252 "//ui/gfx", |
| 255 ] | 253 ] |
| 256 } | 254 } |
| OLD | NEW |