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 12 matching lines...) Expand all Loading... |
23 "caret_down.1x.icon", | 23 "caret_down.1x.icon", |
24 "caret_down.icon", | 24 "caret_down.icon", |
25 "caret_up.1x.icon", | 25 "caret_up.1x.icon", |
26 "caret_up.icon", | 26 "caret_up.icon", |
27 "close_all.icon", | 27 "close_all.icon", |
28 "code.icon", | 28 "code.icon", |
29 "cookie.icon", | 29 "cookie.icon", |
30 "crashed_tab.icon", | 30 "crashed_tab.icon", |
31 "credit_card.1x.icon", | 31 "credit_card.1x.icon", |
32 "credit_card.icon", | 32 "credit_card.icon", |
| 33 "eol.icon", |
33 "extension.icon", | 34 "extension.icon", |
34 "extension_crashed.icon", | 35 "extension_crashed.icon", |
35 "file_download.icon", | 36 "file_download.icon", |
36 "file_download_incognito.1x.icon", | 37 "file_download_incognito.1x.icon", |
37 "file_download_incognito.icon", | 38 "file_download_incognito.icon", |
38 "file_download_shelf.icon", | 39 "file_download_shelf.icon", |
39 "folder.1x.icon", | 40 "folder.1x.icon", |
40 "folder.icon", | 41 "folder.icon", |
41 "folder_managed.1x.icon", | 42 "folder_managed.1x.icon", |
42 "folder_managed.icon", | 43 "folder_managed.icon", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "translate.icon", | 88 "translate.icon", |
88 "user_account_avatar.icon", | 89 "user_account_avatar.icon", |
89 "warning_badge.icon", | 90 "warning_badge.icon", |
90 "web.icon", | 91 "web.icon", |
91 "zoom_minus.icon", | 92 "zoom_minus.icon", |
92 "zoom_plus.icon", | 93 "zoom_plus.icon", |
93 "${branding_path_component}/product.icon", | 94 "${branding_path_component}/product.icon", |
94 ] | 95 ] |
95 | 96 |
96 if (is_mac) { | 97 if (is_mac) { |
97 icons += [ "new_tab_mac_touchbar.icon" ] | 98 icons += [ |
| 99 "default_favicon.icon", |
| 100 "google_search_mac_touchbar.icon", |
| 101 "new_tab_mac_touchbar.icon", |
| 102 ] |
98 } | 103 } |
99 } | 104 } |
100 | 105 |
101 source_set("vector_icons") { | 106 source_set("vector_icons") { |
102 sources = get_target_outputs(":chrome_vector_icons") | 107 sources = get_target_outputs(":chrome_vector_icons") |
103 sources += [ "//ui/gfx/vector_icon_types.h" ] | 108 sources += [ "//ui/gfx/vector_icon_types.h" ] |
104 | 109 |
105 deps = [ | 110 deps = [ |
106 ":chrome_vector_icons", | 111 ":chrome_vector_icons", |
107 "//base", | 112 "//base", |
108 "//skia", | 113 "//skia", |
109 ] | 114 ] |
110 } | 115 } |
OLD | NEW |