| 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 11 matching lines...) Expand all Loading... |
| 22 "credit_card.icon", | 22 "credit_card.icon", |
| 23 "folder.1x.icon", | 23 "folder.1x.icon", |
| 24 "folder.icon", | 24 "folder.icon", |
| 25 "folder_managed.1x.icon", | 25 "folder_managed.1x.icon", |
| 26 "folder_managed.icon", | 26 "folder_managed.icon", |
| 27 "folder_supervised.1x.icon", | 27 "folder_supervised.1x.icon", |
| 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_back.1x.icon", | |
| 33 "navigate_back.icon", | |
| 34 "navigate_forward.1x.icon", | |
| 35 "navigate_forward.icon", | |
| 36 "navigate_home.1x.icon", | 32 "navigate_home.1x.icon", |
| 37 "navigate_home.icon", | 33 "navigate_home.icon", |
| 38 "navigate_reload.1x.icon", | 34 "navigate_reload.1x.icon", |
| 39 "navigate_reload.icon", | 35 "navigate_reload.icon", |
| 40 "navigate_stop.1x.icon", | 36 "navigate_stop.1x.icon", |
| 41 "navigate_stop.icon", | 37 "navigate_stop.icon", |
| 42 "overflow_chevron.1x.icon", | 38 "overflow_chevron.1x.icon", |
| 43 "overflow_chevron.icon", | 39 "overflow_chevron.icon", |
| 44 "smartphone.icon", | 40 "smartphone.icon", |
| 45 "tab.icon", | 41 "tab.icon", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 66 source_set("vector_icons") { | 62 source_set("vector_icons") { |
| 67 sources = get_target_outputs(":chrome_vector_icons") | 63 sources = get_target_outputs(":chrome_vector_icons") |
| 68 sources += [ "//ui/gfx/vector_icon_types.h" ] | 64 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 69 | 65 |
| 70 deps = [ | 66 deps = [ |
| 71 ":chrome_vector_icons", | 67 ":chrome_vector_icons", |
| 72 "//base", | 68 "//base", |
| 73 "//skia", | 69 "//skia", |
| 74 ] | 70 ] |
| 75 } | 71 } |
| OLD | NEW |