| 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 = [ |
| 11 "account_box.icon", | 11 "account_box.icon", |
| 12 "account_child.icon", | 12 "account_child.icon", |
| 13 "account_child_circle.icon", | 13 "account_child_circle.icon", |
| 14 "account_circle.icon", | 14 "account_circle.icon", |
| 15 "apps.icon", | 15 "apps.icon", |
| 16 "autologin.icon", | 16 "autologin.icon", |
| 17 "bar_close.1x.icon", | 17 "bar_close.1x.icon", |
| 18 "bar_close.icon", | 18 "bar_close.icon", |
| 19 "blocked_badge.icon", | 19 "blocked_badge.icon", |
| 20 "browser_tools.icon", | 20 "browser_tools.icon", |
| 21 "browser_tools_error.icon", | 21 "browser_tools_error.icon", |
| 22 "browser_tools_update.icon", | 22 "browser_tools_update.icon", |
| 23 "business.icon", | 23 "business.icon", |
| 24 "check_circle.1x.icon", |
| 24 "check_circle.icon", | 25 "check_circle.icon", |
| 25 "checkbox_active.icon", | 26 "checkbox_active.icon", |
| 26 "checkbox_normal.icon", | 27 "checkbox_normal.icon", |
| 27 "chrome_product.icon", | 28 "chrome_product.icon", |
| 28 "close_all.icon", | 29 "close_all.icon", |
| 29 "code.icon", | 30 "code.icon", |
| 30 "combobox_arrow_mac_disabled.icon", | 31 "combobox_arrow_mac_disabled.icon", |
| 31 "combobox_arrow_mac_enabled.icon", | 32 "combobox_arrow_mac_enabled.icon", |
| 32 "cookie.icon", | 33 "cookie.icon", |
| 33 "crashed_tab.icon", | 34 "crashed_tab.icon", |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "../vector_icon_types.h", | 232 "../vector_icon_types.h", |
| 232 "../vector_icons_public.h", | 233 "../vector_icons_public.h", |
| 233 ] | 234 ] |
| 234 | 235 |
| 235 deps = [ | 236 deps = [ |
| 236 ":aggregate_vector_icons", | 237 ":aggregate_vector_icons", |
| 237 "//base", | 238 "//base", |
| 238 "//skia", | 239 "//skia", |
| 239 ] | 240 ] |
| 240 } | 241 } |
| OLD | NEW |