| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "navigate_back.1x.icon", | 90 "navigate_back.1x.icon", |
| 91 "navigate_back.icon", | 91 "navigate_back.icon", |
| 92 "navigate_forward.1x.icon", | 92 "navigate_forward.1x.icon", |
| 93 "navigate_forward.icon", | 93 "navigate_forward.icon", |
| 94 "navigate_home.1x.icon", | 94 "navigate_home.1x.icon", |
| 95 "navigate_home.icon", | 95 "navigate_home.icon", |
| 96 "navigate_reload.1x.icon", | 96 "navigate_reload.1x.icon", |
| 97 "navigate_reload.icon", | 97 "navigate_reload.icon", |
| 98 "navigate_stop.1x.icon", | 98 "navigate_stop.1x.icon", |
| 99 "navigate_stop.icon", | 99 "navigate_stop.icon", |
| 100 "network_badge_add_other.1x.icon", | |
| 101 "network_badge_add_other.icon", | |
| 102 "network_badge_captive_portal.1x.icon", | |
| 103 "network_badge_captive_portal.icon", | |
| 104 "network_badge_roaming.1x.icon", | |
| 105 "network_badge_roaming.icon", | |
| 106 "network_badge_secure.1x.icon", | |
| 107 "network_badge_secure.icon", | |
| 108 "network_badge_technology_1x.1x.icon", | |
| 109 "network_badge_technology_1x.icon", | |
| 110 "network_badge_technology_3g.1x.icon", | |
| 111 "network_badge_technology_3g.icon", | |
| 112 "network_badge_technology_4g.1x.icon", | |
| 113 "network_badge_technology_4g.icon", | |
| 114 "network_badge_technology_edge.1x.icon", | |
| 115 "network_badge_technology_edge.icon", | |
| 116 "network_badge_technology_evdo.1x.icon", | |
| 117 "network_badge_technology_evdo.icon", | |
| 118 "network_badge_technology_gprs.1x.icon", | |
| 119 "network_badge_technology_gprs.icon", | |
| 120 "network_badge_technology_hspa.1x.icon", | |
| 121 "network_badge_technology_hspa.icon", | |
| 122 "network_badge_technology_hspa_plus.1x.icon", | |
| 123 "network_badge_technology_hspa_plus.icon", | |
| 124 "network_badge_technology_lte.1x.icon", | |
| 125 "network_badge_technology_lte.icon", | |
| 126 "network_badge_technology_lte_advanced.1x.icon", | |
| 127 "network_badge_technology_lte_advanced.icon", | |
| 128 "network_badge_vpn.1x.icon", | |
| 129 "network_badge_vpn.icon", | |
| 130 "network_ethernet.1x.icon", | |
| 131 "network_ethernet.icon", | |
| 132 "network_vpn.1x.icon", | |
| 133 "network_vpn.icon", | |
| 134 "notifications.icon", | 100 "notifications.icon", |
| 135 "notifications_off.icon", | 101 "notifications_off.icon", |
| 136 "omnibox_calculator.1x.icon", | 102 "omnibox_calculator.1x.icon", |
| 137 "omnibox_calculator.icon", | 103 "omnibox_calculator.icon", |
| 138 "omnibox_extension_app.1x.icon", | 104 "omnibox_extension_app.1x.icon", |
| 139 "omnibox_extension_app.icon", | 105 "omnibox_extension_app.icon", |
| 140 "omnibox_http.icon", | 106 "omnibox_http.icon", |
| 141 "omnibox_keyword_search.icon", | 107 "omnibox_keyword_search.icon", |
| 142 "omnibox_search.icon", | 108 "omnibox_search.icon", |
| 143 "omnibox_star.1x.icon", | 109 "omnibox_star.1x.icon", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 "../vector_icon_types.h", | 205 "../vector_icon_types.h", |
| 240 "../vector_icons_public.h", | 206 "../vector_icons_public.h", |
| 241 ] | 207 ] |
| 242 | 208 |
| 243 deps = [ | 209 deps = [ |
| 244 ":aggregate_vector_icons", | 210 ":aggregate_vector_icons", |
| 245 "//base", | 211 "//base", |
| 246 "//skia", | 212 "//skia", |
| 247 ] | 213 ] |
| 248 } | 214 } |
| OLD | NEW |