| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "network_badge_technology_lte.1x.icon", | 49 "network_badge_technology_lte.1x.icon", |
| 50 "network_badge_technology_lte.icon", | 50 "network_badge_technology_lte.icon", |
| 51 "network_badge_technology_lte_advanced.1x.icon", | 51 "network_badge_technology_lte_advanced.1x.icon", |
| 52 "network_badge_technology_lte_advanced.icon", | 52 "network_badge_technology_lte_advanced.icon", |
| 53 "network_badge_vpn.1x.icon", | 53 "network_badge_vpn.1x.icon", |
| 54 "network_badge_vpn.icon", | 54 "network_badge_vpn.icon", |
| 55 "network_ethernet.1x.icon", | 55 "network_ethernet.1x.icon", |
| 56 "network_ethernet.icon", | 56 "network_ethernet.icon", |
| 57 "network_vpn.1x.icon", | 57 "network_vpn.1x.icon", |
| 58 "network_vpn.icon", | 58 "network_vpn.icon", |
| 59 "notification_accessibility_braille.icon", |
| 59 "notification_display_error.icon", | 60 "notification_display_error.icon", |
| 60 "notification_feedback_button.1x.icon", | 61 "notification_feedback_button.1x.icon", |
| 61 "notification_feedback_button.icon", | 62 "notification_feedback_button.icon", |
| 62 "palette_action_capture_region.1x.icon", | 63 "palette_action_capture_region.1x.icon", |
| 63 "palette_action_capture_region.icon", | 64 "palette_action_capture_region.icon", |
| 64 "palette_action_capture_screen.1x.icon", | 65 "palette_action_capture_screen.1x.icon", |
| 65 "palette_action_capture_screen.icon", | 66 "palette_action_capture_screen.icon", |
| 66 "palette_action_create_note.1x.icon", | 67 "palette_action_create_note.1x.icon", |
| 67 "palette_action_create_note.icon", | 68 "palette_action_create_note.icon", |
| 68 "palette_mode_laser_pointer.1x.icon", | 69 "palette_mode_laser_pointer.1x.icon", |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 source_set("vector_icons") { | 242 source_set("vector_icons") { |
| 242 sources = get_target_outputs(":ash_vector_icons") | 243 sources = get_target_outputs(":ash_vector_icons") |
| 243 sources += [ "//ui/gfx/vector_icon_types.h" ] | 244 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 244 | 245 |
| 245 deps = [ | 246 deps = [ |
| 246 ":ash_vector_icons", | 247 ":ash_vector_icons", |
| 247 "//base", | 248 "//base", |
| 248 "//skia", | 249 "//skia", |
| 249 ] | 250 ] |
| 250 } | 251 } |
| OLD | NEW |