| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 = "//ui/gfx/vector_icons/aggregate_vector_icons.py" | 8 script = "//ui/gfx/vector_icons/aggregate_vector_icons.py" |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| 11 "browser_tools.icon", | 11 "browser_tools.icon", |
| 12 "browser_tools_error.icon", | 12 "browser_tools_error.icon", |
| 13 "browser_tools_update.icon", | 13 "browser_tools_update.icon", |
| 14 "caret_down.1x.icon", |
| 15 "caret_down.icon", |
| 16 "caret_up.1x.icon", |
| 17 "caret_up.icon", |
| 14 "laptop.icon", | 18 "laptop.icon", |
| 15 "navigate_back.1x.icon", | 19 "navigate_back.1x.icon", |
| 16 "navigate_back.icon", | 20 "navigate_back.icon", |
| 17 "navigate_forward.1x.icon", | 21 "navigate_forward.1x.icon", |
| 18 "navigate_forward.icon", | 22 "navigate_forward.icon", |
| 19 "navigate_home.1x.icon", | 23 "navigate_home.1x.icon", |
| 20 "navigate_home.icon", | 24 "navigate_home.icon", |
| 21 "navigate_reload.1x.icon", | 25 "navigate_reload.1x.icon", |
| 22 "navigate_reload.icon", | 26 "navigate_reload.icon", |
| 23 "navigate_stop.1x.icon", | 27 "navigate_stop.1x.icon", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 source_set("vector_icons") { | 70 source_set("vector_icons") { |
| 67 sources = get_target_outputs(":aggregate_vector_icons") | 71 sources = get_target_outputs(":aggregate_vector_icons") |
| 68 sources += [ "//ui/gfx/vector_icon_types.h" ] | 72 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 69 | 73 |
| 70 deps = [ | 74 deps = [ |
| 71 ":aggregate_vector_icons", | 75 ":aggregate_vector_icons", |
| 72 "//base", | 76 "//base", |
| 73 "//skia", | 77 "//skia", |
| 74 ] | 78 ] |
| 75 } | 79 } |
| OLD | NEW |