| 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", | |
| 26 "business.icon", | 23 "business.icon", |
| 27 "check_circle.1x.icon", | 24 "check_circle.1x.icon", |
| 28 "check_circle.icon", | 25 "check_circle.icon", |
| 29 "checkbox_active.icon", | 26 "checkbox_active.icon", |
| 30 "checkbox_normal.icon", | 27 "checkbox_normal.icon", |
| 31 "close_all.icon", | 28 "close_all.icon", |
| 32 "code.icon", | 29 "code.icon", |
| 33 "combobox_arrow_mac_disabled.icon", | 30 "combobox_arrow_mac_disabled.icon", |
| 34 "combobox_arrow_mac_enabled.icon", | 31 "combobox_arrow_mac_enabled.icon", |
| 35 "cookie.icon", | 32 "cookie.icon", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "media_router_warning.icon", | 78 "media_router_warning.icon", |
| 82 "menu_check.1x.icon", | 79 "menu_check.1x.icon", |
| 83 "menu_check.icon", | 80 "menu_check.icon", |
| 84 "menu_radio_empty.icon", | 81 "menu_radio_empty.icon", |
| 85 "menu_radio_selected.icon", | 82 "menu_radio_selected.icon", |
| 86 "microphone.icon", | 83 "microphone.icon", |
| 87 "midi.icon", | 84 "midi.icon", |
| 88 "mixed_content.icon", | 85 "mixed_content.icon", |
| 89 "mode_edit.icon", | 86 "mode_edit.icon", |
| 90 "my_location.icon", | 87 "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", | |
| 101 "notifications.icon", | 88 "notifications.icon", |
| 102 "notifications_off.icon", | 89 "notifications_off.icon", |
| 103 "omnibox_calculator.1x.icon", | 90 "omnibox_calculator.1x.icon", |
| 104 "omnibox_calculator.icon", | 91 "omnibox_calculator.icon", |
| 105 "omnibox_extension_app.1x.icon", | 92 "omnibox_extension_app.1x.icon", |
| 106 "omnibox_extension_app.icon", | 93 "omnibox_extension_app.icon", |
| 107 "omnibox_http.icon", | 94 "omnibox_http.icon", |
| 108 "omnibox_keyword_search.icon", | 95 "omnibox_keyword_search.icon", |
| 109 "omnibox_search.icon", | 96 "omnibox_search.icon", |
| 110 "omnibox_star.1x.icon", | 97 "omnibox_star.1x.icon", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "../vector_icon_types.h", | 194 "../vector_icon_types.h", |
| 208 "../vector_icons_public.h", | 195 "../vector_icons_public.h", |
| 209 ] | 196 ] |
| 210 | 197 |
| 211 deps = [ | 198 deps = [ |
| 212 ":aggregate_vector_icons", | 199 ":aggregate_vector_icons", |
| 213 "//base", | 200 "//base", |
| 214 "//skia", | 201 "//skia", |
| 215 ] | 202 ] |
| 216 } | 203 } |
| OLD | NEW |