| 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 = [ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "navigate_back.1x.icon", | 32 "navigate_back.1x.icon", |
| 33 "navigate_back.icon", | 33 "navigate_back.icon", |
| 34 "navigate_forward.1x.icon", | 34 "navigate_forward.1x.icon", |
| 35 "navigate_forward.icon", | 35 "navigate_forward.icon", |
| 36 "navigate_home.1x.icon", | 36 "navigate_home.1x.icon", |
| 37 "navigate_home.icon", | 37 "navigate_home.icon", |
| 38 "navigate_reload.1x.icon", | 38 "navigate_reload.1x.icon", |
| 39 "navigate_reload.icon", | 39 "navigate_reload.icon", |
| 40 "navigate_stop.1x.icon", | 40 "navigate_stop.1x.icon", |
| 41 "navigate_stop.icon", | 41 "navigate_stop.icon", |
| 42 "new_tab.icon", |
| 42 "overflow_chevron.1x.icon", | 43 "overflow_chevron.1x.icon", |
| 43 "overflow_chevron.icon", | 44 "overflow_chevron.icon", |
| 44 "smartphone.icon", | 45 "smartphone.icon", |
| 45 "tab.icon", | 46 "tab.icon", |
| 46 "tab_audio.1x.icon", | 47 "tab_audio.1x.icon", |
| 47 "tab_audio.icon", | 48 "tab_audio.icon", |
| 48 "tab_audio_muting.1x.icon", | 49 "tab_audio_muting.1x.icon", |
| 49 "tab_audio_muting.icon", | 50 "tab_audio_muting.icon", |
| 50 "tab_bluetooth_connected.icon", | 51 "tab_bluetooth_connected.icon", |
| 51 "tab_close_hovered_pressed.1x.icon", | 52 "tab_close_hovered_pressed.1x.icon", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 source_set("vector_icons") { | 89 source_set("vector_icons") { |
| 89 sources = get_target_outputs(":aggregate_vector_icons") | 90 sources = get_target_outputs(":aggregate_vector_icons") |
| 90 sources += [ "//ui/gfx/vector_icon_types.h" ] | 91 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 91 | 92 |
| 92 deps = [ | 93 deps = [ |
| 93 ":aggregate_vector_icons", | 94 ":aggregate_vector_icons", |
| 94 "//base", | 95 "//base", |
| 95 "//skia", | 96 "//skia", |
| 96 ] | 97 ] |
| 97 } | 98 } |
| OLD | NEW |