| 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 "bar_close.1x.icon", | |
| 19 "bar_close.icon", | |
| 20 "blocked_badge.icon", | 18 "blocked_badge.icon", |
| 21 "business.icon", | 19 "business.icon", |
| 22 "check_circle.1x.icon", | 20 "check_circle.1x.icon", |
| 23 "check_circle.icon", | 21 "check_circle.icon", |
| 24 "close_all.icon", | 22 "close_all.icon", |
| 25 "code.icon", | 23 "code.icon", |
| 26 "cookie.icon", | 24 "cookie.icon", |
| 27 "default_favicon.icon", | 25 "default_favicon.icon", |
| 28 "eol.icon", | 26 "eol.icon", |
| 29 "error_circle.icon", | 27 "error_circle.icon", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "../vector_icon_types.h", | 104 "../vector_icon_types.h", |
| 107 "../vector_icons_public.h", | 105 "../vector_icons_public.h", |
| 108 ] | 106 ] |
| 109 | 107 |
| 110 deps = [ | 108 deps = [ |
| 111 ":aggregate_vector_icons", | 109 ":aggregate_vector_icons", |
| 112 "//base", | 110 "//base", |
| 113 "//skia", | 111 "//skia", |
| 114 ] | 112 ] |
| 115 } | 113 } |
| OLD | NEW |