| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "network_badge_technology_hspa.1x.icon", | 116 "network_badge_technology_hspa.1x.icon", |
| 117 "network_badge_technology_hspa.icon", | 117 "network_badge_technology_hspa.icon", |
| 118 "network_badge_technology_hspa_plus.1x.icon", | 118 "network_badge_technology_hspa_plus.1x.icon", |
| 119 "network_badge_technology_hspa_plus.icon", | 119 "network_badge_technology_hspa_plus.icon", |
| 120 "network_badge_technology_lte.1x.icon", | 120 "network_badge_technology_lte.1x.icon", |
| 121 "network_badge_technology_lte.icon", | 121 "network_badge_technology_lte.icon", |
| 122 "network_badge_technology_lte_advanced.1x.icon", | 122 "network_badge_technology_lte_advanced.1x.icon", |
| 123 "network_badge_technology_lte_advanced.icon", | 123 "network_badge_technology_lte_advanced.icon", |
| 124 "network_badge_vpn.1x.icon", | 124 "network_badge_vpn.1x.icon", |
| 125 "network_badge_vpn.icon", | 125 "network_badge_vpn.icon", |
| 126 "network_ethernet.1x.icon", |
| 127 "network_ethernet.icon", |
| 128 "network_vpn.1x.icon", |
| 129 "network_vpn.icon", |
| 126 "notifications.icon", | 130 "notifications.icon", |
| 127 "notifications_off.icon", | 131 "notifications_off.icon", |
| 128 "omnibox_calculator.1x.icon", | 132 "omnibox_calculator.1x.icon", |
| 129 "omnibox_calculator.icon", | 133 "omnibox_calculator.icon", |
| 130 "omnibox_extension_app.1x.icon", | 134 "omnibox_extension_app.1x.icon", |
| 131 "omnibox_extension_app.icon", | 135 "omnibox_extension_app.icon", |
| 132 "omnibox_http.icon", | 136 "omnibox_http.icon", |
| 133 "omnibox_keyword_search.icon", | 137 "omnibox_keyword_search.icon", |
| 134 "omnibox_search.icon", | 138 "omnibox_search.icon", |
| 135 "omnibox_star.1x.icon", | 139 "omnibox_star.1x.icon", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "../vector_icon_types.h", | 235 "../vector_icon_types.h", |
| 232 "../vector_icons_public.h", | 236 "../vector_icons_public.h", |
| 233 ] | 237 ] |
| 234 | 238 |
| 235 deps = [ | 239 deps = [ |
| 236 ":aggregate_vector_icons", | 240 ":aggregate_vector_icons", |
| 237 "//base", | 241 "//base", |
| 238 "//skia", | 242 "//skia", |
| 239 ] | 243 ] |
| 240 } | 244 } |
| OLD | NEW |