| 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 # NB: This is a deprecated vector icon target that should be removed. Add vector |
| 8 # icons to a more specific target, or ui/vector_icons if ui/ is the right place |
| 9 # for them. TODO(estade): remove this target. |
| 7 action("aggregate_vector_icons") { | 10 action("aggregate_vector_icons") { |
| 8 visibility = [ ":*" ] | 11 visibility = [ ":*" ] |
| 9 | 12 |
| 10 script = "aggregate_vector_icons.py" | 13 script = "aggregate_vector_icons.py" |
| 11 | 14 |
| 12 icons = [ | 15 icons = [ |
| 13 "account_box.icon", | 16 "account_box.icon", |
| 14 "account_child.icon", | 17 "account_child.icon", |
| 15 "account_child_circle.icon", | 18 "account_child_circle.icon", |
| 16 "account_circle.icon", | 19 "account_circle.icon", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "../vector_icon_types.h", | 97 "../vector_icon_types.h", |
| 95 "../vector_icons_public.h", | 98 "../vector_icons_public.h", |
| 96 ] | 99 ] |
| 97 | 100 |
| 98 deps = [ | 101 deps = [ |
| 99 ":aggregate_vector_icons", | 102 ":aggregate_vector_icons", |
| 100 "//base", | 103 "//base", |
| 101 "//skia", | 104 "//skia", |
| 102 ] | 105 ] |
| 103 } | 106 } |
| OLD | NEW |