| 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("//build/util/branding.gni") | 5 import("//build/util/branding.gni") |
| 6 import("//ui/vector_icons/vector_icons.gni") | 6 import("//ui/vector_icons/vector_icons.gni") |
| 7 | 7 |
| 8 aggregate_vector_icons("chrome_vector_icons") { | 8 aggregate_vector_icons("chrome_vector_icons") { |
| 9 icon_directory = "." | 9 icon_directory = "." |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "caret_down.icon", | 25 "caret_down.icon", |
| 26 "caret_up.1x.icon", | 26 "caret_up.1x.icon", |
| 27 "caret_up.icon", | 27 "caret_up.icon", |
| 28 "certificate.icon", | 28 "certificate.icon", |
| 29 "close_all.icon", | 29 "close_all.icon", |
| 30 "code.icon", | 30 "code.icon", |
| 31 "cookie.icon", | 31 "cookie.icon", |
| 32 "crashed_tab.icon", | 32 "crashed_tab.icon", |
| 33 "credit_card.1x.icon", | 33 "credit_card.1x.icon", |
| 34 "credit_card.icon", | 34 "credit_card.icon", |
| 35 "ic_edit.icon", |
| 35 "eol.icon", | 36 "eol.icon", |
| 36 "extension.icon", | 37 "extension.icon", |
| 37 "extension_crashed.icon", | 38 "extension_crashed.icon", |
| 38 "file_download.icon", | 39 "file_download.icon", |
| 39 "file_download_incognito.1x.icon", | 40 "file_download_incognito.1x.icon", |
| 40 "file_download_incognito.icon", | 41 "file_download_incognito.icon", |
| 41 "file_download_shelf.icon", | 42 "file_download_shelf.icon", |
| 42 "folder.1x.icon", | 43 "folder.1x.icon", |
| 43 "folder.icon", | 44 "folder.icon", |
| 44 "folder_managed.1x.icon", | 45 "folder_managed.1x.icon", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 source_set("vector_icons") { | 116 source_set("vector_icons") { |
| 116 sources = get_target_outputs(":chrome_vector_icons") | 117 sources = get_target_outputs(":chrome_vector_icons") |
| 117 sources += [ "//ui/gfx/vector_icon_types.h" ] | 118 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 118 | 119 |
| 119 deps = [ | 120 deps = [ |
| 120 ":chrome_vector_icons", | 121 ":chrome_vector_icons", |
| 121 "//base", | 122 "//base", |
| 122 "//skia", | 123 "//skia", |
| 123 ] | 124 ] |
| 124 } | 125 } |
| OLD | NEW |