| 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 action("aggregate_vector_icons") { | 5 action("aggregate_vector_icons") { |
| 6 visibility = [ ":*" ] | 6 visibility = [ ":*" ] |
| 7 | 7 |
| 8 script = "//ui/gfx/vector_icons/aggregate_vector_icons.py" | 8 script = "//ui/gfx/vector_icons/aggregate_vector_icons.py" |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| 11 "ime_menu_emoticon.1x.icon", | 11 "ime_menu_emoticon.1x.icon", |
| 12 "ime_menu_emoticon.icon", | 12 "ime_menu_emoticon.icon", |
| 13 "ime_menu_microphone.1x.icon", | 13 "ime_menu_microphone.1x.icon", |
| 14 "ime_menu_microphone.icon", | 14 "ime_menu_microphone.icon", |
| 15 "ime_menu_write.1x.icon", | 15 "ime_menu_write.1x.icon", |
| 16 "ime_menu_write.icon", | 16 "ime_menu_write.icon", |
| 17 "network_badge_add_other.1x.icon", |
| 18 "network_badge_add_other.icon", |
| 19 "network_badge_captive_portal.1x.icon", |
| 20 "network_badge_captive_portal.icon", |
| 21 "network_badge_roaming.1x.icon", |
| 22 "network_badge_roaming.icon", |
| 23 "network_badge_secure.1x.icon", |
| 24 "network_badge_secure.icon", |
| 25 "network_badge_technology_1x.1x.icon", |
| 26 "network_badge_technology_1x.icon", |
| 27 "network_badge_technology_3g.1x.icon", |
| 28 "network_badge_technology_3g.icon", |
| 29 "network_badge_technology_4g.1x.icon", |
| 30 "network_badge_technology_4g.icon", |
| 31 "network_badge_technology_edge.1x.icon", |
| 32 "network_badge_technology_edge.icon", |
| 33 "network_badge_technology_evdo.1x.icon", |
| 34 "network_badge_technology_evdo.icon", |
| 35 "network_badge_technology_gprs.1x.icon", |
| 36 "network_badge_technology_gprs.icon", |
| 37 "network_badge_technology_hspa.1x.icon", |
| 38 "network_badge_technology_hspa.icon", |
| 39 "network_badge_technology_hspa_plus.1x.icon", |
| 40 "network_badge_technology_hspa_plus.icon", |
| 41 "network_badge_technology_lte.1x.icon", |
| 42 "network_badge_technology_lte.icon", |
| 43 "network_badge_technology_lte_advanced.1x.icon", |
| 44 "network_badge_technology_lte_advanced.icon", |
| 45 "network_badge_vpn.1x.icon", |
| 46 "network_badge_vpn.icon", |
| 47 "network_ethernet.1x.icon", |
| 48 "network_ethernet.icon", |
| 49 "network_vpn.1x.icon", |
| 50 "network_vpn.icon", |
| 17 "palette_action_capture_region.1x.icon", | 51 "palette_action_capture_region.1x.icon", |
| 18 "palette_action_capture_region.icon", | 52 "palette_action_capture_region.icon", |
| 19 "palette_action_capture_screen.1x.icon", | 53 "palette_action_capture_screen.1x.icon", |
| 20 "palette_action_capture_screen.icon", | 54 "palette_action_capture_screen.icon", |
| 21 "palette_action_create_note.1x.icon", | 55 "palette_action_create_note.1x.icon", |
| 22 "palette_action_create_note.icon", | 56 "palette_action_create_note.icon", |
| 23 "palette_mode_laser_pointer.1x.icon", | 57 "palette_mode_laser_pointer.1x.icon", |
| 24 "palette_mode_laser_pointer.icon", | 58 "palette_mode_laser_pointer.icon", |
| 25 "palette_mode_magnify.1x.icon", | 59 "palette_mode_magnify.1x.icon", |
| 26 "palette_mode_magnify.icon", | 60 "palette_mode_magnify.icon", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 source_set("vector_icons") { | 203 source_set("vector_icons") { |
| 170 sources = get_target_outputs(":aggregate_vector_icons") | 204 sources = get_target_outputs(":aggregate_vector_icons") |
| 171 sources += [ "//ui/gfx/vector_icon_types.h" ] | 205 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 172 | 206 |
| 173 deps = [ | 207 deps = [ |
| 174 ":aggregate_vector_icons", | 208 ":aggregate_vector_icons", |
| 175 "//base", | 209 "//base", |
| 176 "//skia", | 210 "//skia", |
| 177 ] | 211 ] |
| 178 } | 212 } |
| OLD | NEW |