| 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 import("//ui/vector_icons/vector_icons.gni") | 5 import("//ui/vector_icons/vector_icons.gni") |
| 6 | 6 |
| 7 aggregate_vector_icons("chrome_vector_icons") { | 7 aggregate_vector_icons("chrome_vector_icons") { |
| 8 icon_directory = "." | 8 icon_directory = "." |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "folder_supervised.icon", | 28 "folder_supervised.icon", |
| 29 "incognito.1x.icon", | 29 "incognito.1x.icon", |
| 30 "incognito.icon", | 30 "incognito.icon", |
| 31 "laptop.icon", | 31 "laptop.icon", |
| 32 "navigate_home.1x.icon", | 32 "navigate_home.1x.icon", |
| 33 "navigate_home.icon", | 33 "navigate_home.icon", |
| 34 "navigate_reload.1x.icon", | 34 "navigate_reload.1x.icon", |
| 35 "navigate_reload.icon", | 35 "navigate_reload.icon", |
| 36 "navigate_stop.1x.icon", | 36 "navigate_stop.1x.icon", |
| 37 "navigate_stop.icon", | 37 "navigate_stop.icon", |
| 38 "new_tab.icon", |
| 38 "overflow_chevron.1x.icon", | 39 "overflow_chevron.1x.icon", |
| 39 "overflow_chevron.icon", | 40 "overflow_chevron.icon", |
| 40 "smartphone.icon", | 41 "smartphone.icon", |
| 41 "tab.icon", | 42 "tab.icon", |
| 42 "tab_audio.1x.icon", | 43 "tab_audio.1x.icon", |
| 43 "tab_audio.icon", | 44 "tab_audio.icon", |
| 44 "tab_audio_muting.1x.icon", | 45 "tab_audio_muting.1x.icon", |
| 45 "tab_audio_muting.icon", | 46 "tab_audio_muting.icon", |
| 46 "tab_bluetooth_connected.icon", | 47 "tab_bluetooth_connected.icon", |
| 47 "tab_close_hovered_pressed.1x.icon", | 48 "tab_close_hovered_pressed.1x.icon", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 62 source_set("vector_icons") { | 63 source_set("vector_icons") { |
| 63 sources = get_target_outputs(":chrome_vector_icons") | 64 sources = get_target_outputs(":chrome_vector_icons") |
| 64 sources += [ "//ui/gfx/vector_icon_types.h" ] | 65 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 65 | 66 |
| 66 deps = [ | 67 deps = [ |
| 67 ":chrome_vector_icons", | 68 ":chrome_vector_icons", |
| 68 "//base", | 69 "//base", |
| 69 "//skia", | 70 "//skia", |
| 70 ] | 71 ] |
| 71 } | 72 } |
| OLD | NEW |