| 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 "palette_action_capture_region.1x.icon", | 11 "palette_action_capture_region.1x.icon", |
| 12 "palette_action_capture_region.icon", | 12 "palette_action_capture_region.icon", |
| 13 "palette_action_capture_screen.1x.icon", | 13 "palette_action_capture_screen.1x.icon", |
| 14 "palette_action_capture_screen.icon", | 14 "palette_action_capture_screen.icon", |
| 15 "palette_action_create_note.1x.icon", | 15 "palette_action_create_note.1x.icon", |
| 16 "palette_action_create_note.icon", | 16 "palette_action_create_note.icon", |
| 17 "palette_mode_laser_pointer.1x.icon", | 17 "palette_mode_laser_pointer.1x.icon", |
| 18 "palette_mode_laser_pointer.icon", | 18 "palette_mode_laser_pointer.icon", |
| 19 "palette_mode_magnify.1x.icon", | 19 "palette_mode_magnify.1x.icon", |
| 20 "palette_mode_magnify.icon", | 20 "palette_mode_magnify.icon", |
| 21 "palette_tray_icon_default.1x.icon", | 21 "palette_tray_icon_default.1x.icon", |
| 22 "palette_tray_icon_default.icon", | 22 "palette_tray_icon_default.icon", |
| 23 "palette_tray_icon_laser_pointer.1x.icon", | 23 "palette_tray_icon_laser_pointer.1x.icon", |
| 24 "palette_tray_icon_laser_pointer.icon", | 24 "palette_tray_icon_laser_pointer.icon", |
| 25 "palette_tray_icon_magnify.1x.icon", | 25 "palette_tray_icon_magnify.1x.icon", |
| 26 "palette_tray_icon_magnify.icon", | 26 "palette_tray_icon_magnify.icon", |
| 27 "shelf_app_list.1x.icon", |
| 28 "shelf_app_list.icon", |
| 29 "shelf_notifications.1x.icon", |
| 30 "shelf_notifications.icon", |
| 27 "system_menu_accessibility.1x.icon", | 31 "system_menu_accessibility.1x.icon", |
| 28 "system_menu_accessibility.icon", | 32 "system_menu_accessibility.icon", |
| 29 "system_menu_arrow_right.1x.icon", | 33 "system_menu_arrow_right.1x.icon", |
| 30 "system_menu_arrow_right.icon", | 34 "system_menu_arrow_right.icon", |
| 31 "system_menu_bluetooth.1x.icon", | 35 "system_menu_bluetooth.1x.icon", |
| 32 "system_menu_bluetooth.icon", | 36 "system_menu_bluetooth.icon", |
| 33 "system_menu_bluetooth_disabled.1x.icon", | 37 "system_menu_bluetooth_disabled.1x.icon", |
| 34 "system_menu_bluetooth_disabled.icon", | 38 "system_menu_bluetooth_disabled.icon", |
| 35 "system_menu_brightness.1x.icon", | 39 "system_menu_brightness.1x.icon", |
| 36 "system_menu_brightness.icon", | 40 "system_menu_brightness.icon", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 source_set("vector_icons") { | 113 source_set("vector_icons") { |
| 110 sources = get_target_outputs(":aggregate_vector_icons") | 114 sources = get_target_outputs(":aggregate_vector_icons") |
| 111 sources += [ "//ui/gfx/vector_icon_types.h" ] | 115 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 112 | 116 |
| 113 deps = [ | 117 deps = [ |
| 114 ":aggregate_vector_icons", | 118 ":aggregate_vector_icons", |
| 115 "//base", | 119 "//base", |
| 116 "//skia", | 120 "//skia", |
| 117 ] | 121 ] |
| 118 } | 122 } |
| OLD | NEW |