| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "pdf.1x.icon", | 112 "pdf.1x.icon", |
| 113 "pdf.icon", | 113 "pdf.icon", |
| 114 "photo_camera.icon", | 114 "photo_camera.icon", |
| 115 "protocol_handler.icon", | 115 "protocol_handler.icon", |
| 116 "radio_button_active.icon", | 116 "radio_button_active.icon", |
| 117 "radio_button_normal.icon", | 117 "radio_button_normal.icon", |
| 118 "remove_box.icon", | 118 "remove_box.icon", |
| 119 "remove_circle.icon", | 119 "remove_circle.icon", |
| 120 "sad_tab.icon", | 120 "sad_tab.icon", |
| 121 "settings.icon", | 121 "settings.icon", |
| 122 "shelf_applist.1x.icon", | |
| 123 "shelf_applist.icon", | |
| 124 "shelf_keyboard.1x.icon", | 122 "shelf_keyboard.1x.icon", |
| 125 "shelf_keyboard.icon", | 123 "shelf_keyboard.icon", |
| 126 "shelf_logout.1x.icon", | 124 "shelf_logout.1x.icon", |
| 127 "shelf_logout.icon", | 125 "shelf_logout.icon", |
| 128 "shelf_notifications.1x.icon", | |
| 129 "shelf_notifications.icon", | |
| 130 "shelf_overflow.1x.icon", | 126 "shelf_overflow.1x.icon", |
| 131 "shelf_overflow.icon", | 127 "shelf_overflow.icon", |
| 132 "shelf_overview.1x.icon", | 128 "shelf_overview.1x.icon", |
| 133 "shelf_overview.icon", | 129 "shelf_overview.icon", |
| 134 "smartphone.icon", | 130 "smartphone.icon", |
| 135 "submenu_arrow.1x.icon", | 131 "submenu_arrow.1x.icon", |
| 136 "submenu_arrow.icon", | 132 "submenu_arrow.icon", |
| 137 "subresource_filter_active.icon", | 133 "subresource_filter_active.icon", |
| 138 "supervisor_account.icon", | 134 "supervisor_account.icon", |
| 139 "supervisor_account_circle.icon", | 135 "supervisor_account_circle.icon", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "../vector_icon_types.h", | 203 "../vector_icon_types.h", |
| 208 "../vector_icons_public.h", | 204 "../vector_icons_public.h", |
| 209 ] | 205 ] |
| 210 | 206 |
| 211 deps = [ | 207 deps = [ |
| 212 ":aggregate_vector_icons", | 208 ":aggregate_vector_icons", |
| 213 "//base", | 209 "//base", |
| 214 "//skia", | 210 "//skia", |
| 215 ] | 211 ] |
| 216 } | 212 } |
| OLD | NEW |