| 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 | 6 |
| 7 action("aggregate_vector_icons") { | 7 action("aggregate_vector_icons") { |
| 8 visibility = [ ":*" ] | 8 visibility = [ ":*" ] |
| 9 | 9 |
| 10 script = "aggregate_vector_icons.py" | 10 script = "aggregate_vector_icons.py" |
| 11 | 11 |
| 12 icons = [ | 12 icons = [ |
| 13 "account_box.icon", | 13 "account_box.icon", |
| 14 "account_child.icon", | 14 "account_child.icon", |
| 15 "account_child_circle.icon", | 15 "account_child_circle.icon", |
| 16 "account_circle.icon", | 16 "account_circle.icon", |
| 17 "apps.icon", | 17 "apps.icon", |
| 18 "autologin.icon", | 18 "autologin.icon", |
| 19 "bar_close.1x.icon", | 19 "bar_close.1x.icon", |
| 20 "bar_close.icon", | 20 "bar_close.icon", |
| 21 "blocked_badge.icon", | 21 "blocked_badge.icon", |
| 22 "bluetooth_connected.icon", | 22 "bluetooth_connected.icon", |
| 23 "browser_tools.icon", |
| 24 "browser_tools_error.icon", |
| 25 "browser_tools_update.icon", |
| 23 "business.icon", | 26 "business.icon", |
| 24 "check_circle.1x.icon", | 27 "check_circle.1x.icon", |
| 25 "check_circle.icon", | 28 "check_circle.icon", |
| 26 "checkbox_active.icon", | 29 "checkbox_active.icon", |
| 27 "checkbox_normal.icon", | 30 "checkbox_normal.icon", |
| 28 "close_all.icon", | 31 "close_all.icon", |
| 29 "code.icon", | 32 "code.icon", |
| 30 "combobox_arrow_mac_disabled.icon", | 33 "combobox_arrow_mac_disabled.icon", |
| 31 "combobox_arrow_mac_enabled.icon", | 34 "combobox_arrow_mac_enabled.icon", |
| 32 "cookie.icon", | 35 "cookie.icon", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "media_router_warning.icon", | 81 "media_router_warning.icon", |
| 79 "menu_check.1x.icon", | 82 "menu_check.1x.icon", |
| 80 "menu_check.icon", | 83 "menu_check.icon", |
| 81 "menu_radio_empty.icon", | 84 "menu_radio_empty.icon", |
| 82 "menu_radio_selected.icon", | 85 "menu_radio_selected.icon", |
| 83 "microphone.icon", | 86 "microphone.icon", |
| 84 "midi.icon", | 87 "midi.icon", |
| 85 "mixed_content.icon", | 88 "mixed_content.icon", |
| 86 "mode_edit.icon", | 89 "mode_edit.icon", |
| 87 "my_location.icon", | 90 "my_location.icon", |
| 91 "navigate_back.1x.icon", |
| 92 "navigate_back.icon", |
| 93 "navigate_forward.1x.icon", |
| 94 "navigate_forward.icon", |
| 95 "navigate_home.1x.icon", |
| 96 "navigate_home.icon", |
| 97 "navigate_reload.1x.icon", |
| 98 "navigate_reload.icon", |
| 99 "navigate_stop.1x.icon", |
| 100 "navigate_stop.icon", |
| 88 "notifications.icon", | 101 "notifications.icon", |
| 89 "notifications_off.icon", | 102 "notifications_off.icon", |
| 90 "omnibox_calculator.1x.icon", | 103 "omnibox_calculator.1x.icon", |
| 91 "omnibox_calculator.icon", | 104 "omnibox_calculator.icon", |
| 92 "omnibox_extension_app.1x.icon", | 105 "omnibox_extension_app.1x.icon", |
| 93 "omnibox_extension_app.icon", | 106 "omnibox_extension_app.icon", |
| 94 "omnibox_http.icon", | 107 "omnibox_http.icon", |
| 95 "omnibox_keyword_search.icon", | 108 "omnibox_keyword_search.icon", |
| 96 "omnibox_search.icon", | 109 "omnibox_search.icon", |
| 97 "omnibox_star.1x.icon", | 110 "omnibox_star.1x.icon", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "../vector_icon_types.h", | 207 "../vector_icon_types.h", |
| 195 "../vector_icons_public.h", | 208 "../vector_icons_public.h", |
| 196 ] | 209 ] |
| 197 | 210 |
| 198 deps = [ | 211 deps = [ |
| 199 ":aggregate_vector_icons", | 212 ":aggregate_vector_icons", |
| 200 "//base", | 213 "//base", |
| 201 "//skia", | 214 "//skia", |
| 202 ] | 215 ] |
| 203 } | 216 } |
| OLD | NEW |