| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 = "aggregate_vector_icons.py" | 8 script = "aggregate_vector_icons.py" |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "omnibox_star.icon", | 107 "omnibox_star.icon", |
| 108 "overflow_chevron.1x.icon", | 108 "overflow_chevron.1x.icon", |
| 109 "overflow_chevron.icon", | 109 "overflow_chevron.icon", |
| 110 "paintbrush.icon", | 110 "paintbrush.icon", |
| 111 "palette_action_capture_region.1x.icon", | 111 "palette_action_capture_region.1x.icon", |
| 112 "palette_action_capture_region.icon", | 112 "palette_action_capture_region.icon", |
| 113 "palette_action_capture_screen.1x.icon", | 113 "palette_action_capture_screen.1x.icon", |
| 114 "palette_action_capture_screen.icon", | 114 "palette_action_capture_screen.icon", |
| 115 "palette_action_create_note.1x.icon", | 115 "palette_action_create_note.1x.icon", |
| 116 "palette_action_create_note.icon", | 116 "palette_action_create_note.icon", |
| 117 "palette_mode_laser_pointer.1x.icon", |
| 118 "palette_mode_laser_pointer.icon", |
| 117 "palette_mode_magnify.1x.icon", | 119 "palette_mode_magnify.1x.icon", |
| 118 "palette_mode_magnify.icon", | 120 "palette_mode_magnify.icon", |
| 119 "palette_tray_icon_default.1x.icon", | 121 "palette_tray_icon_default.1x.icon", |
| 120 "palette_tray_icon_default.icon", | 122 "palette_tray_icon_default.icon", |
| 123 "palette_tray_icon_laser_pointer.1x.icon", |
| 124 "palette_tray_icon_laser_pointer.icon", |
| 121 "palette_tray_icon_magnify.1x.icon", | 125 "palette_tray_icon_magnify.1x.icon", |
| 122 "palette_tray_icon_magnify.icon", | 126 "palette_tray_icon_magnify.icon", |
| 123 "pdf.1x.icon", | 127 "pdf.1x.icon", |
| 124 "pdf.icon", | 128 "pdf.icon", |
| 125 "photo_camera.icon", | 129 "photo_camera.icon", |
| 126 "protocol_handler.icon", | 130 "protocol_handler.icon", |
| 127 "radio_button_active.icon", | 131 "radio_button_active.icon", |
| 128 "radio_button_normal.icon", | 132 "radio_button_normal.icon", |
| 129 "remove_box.icon", | 133 "remove_box.icon", |
| 130 "remove_circle.icon", | 134 "remove_circle.icon", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 "../vector_icon_types.h", | 277 "../vector_icon_types.h", |
| 274 "../vector_icons_public.h", | 278 "../vector_icons_public.h", |
| 275 ] | 279 ] |
| 276 | 280 |
| 277 deps = [ | 281 deps = [ |
| 278 ":aggregate_vector_icons", | 282 ":aggregate_vector_icons", |
| 279 "//base", | 283 "//base", |
| 280 "//skia", | 284 "//skia", |
| 281 ] | 285 ] |
| 282 } | 286 } |
| OLD | NEW |