| 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("//ui/vector_icons/vector_icons.gni") | 6 import("//ui/vector_icons/vector_icons.gni") |
| 6 | 7 |
| 7 aggregate_vector_icons("chrome_vector_icons") { | 8 aggregate_vector_icons("chrome_vector_icons") { |
| 8 icon_directory = "." | 9 icon_directory = "." |
| 9 | 10 |
| 10 icons = [ | 11 icons = [ |
| 11 "autologin.icon", | 12 "autologin.icon", |
| 12 "bluetooth_connected.icon", | 13 "bluetooth_connected.icon", |
| 13 "browser_tools.icon", | 14 "browser_tools.icon", |
| 14 "browser_tools_error.icon", | 15 "browser_tools_error.icon", |
| 15 "browser_tools_update.icon", | 16 "browser_tools_update.icon", |
| 16 "caret_down.1x.icon", | 17 "caret_down.1x.icon", |
| 17 "caret_down.icon", | 18 "caret_down.icon", |
| 18 "caret_up.1x.icon", | 19 "caret_up.1x.icon", |
| 19 "caret_up.icon", | 20 "caret_up.icon", |
| 20 "crashed_tab.icon", | 21 "crashed_tab.icon", |
| 21 "credit_card.1x.icon", | 22 "credit_card.1x.icon", |
| 22 "credit_card.icon", | 23 "credit_card.icon", |
| 24 "file_download.icon", |
| 25 "file_download_incognito.1x.icon", |
| 26 "file_download_incognito.icon", |
| 27 "file_download_shelf.icon", |
| 23 "folder.1x.icon", | 28 "folder.1x.icon", |
| 24 "folder.icon", | 29 "folder.icon", |
| 25 "folder_managed.1x.icon", | 30 "folder_managed.1x.icon", |
| 26 "folder_managed.icon", | 31 "folder_managed.icon", |
| 27 "folder_supervised.1x.icon", | 32 "folder_supervised.1x.icon", |
| 28 "folder_supervised.icon", | 33 "folder_supervised.icon", |
| 29 "incognito.1x.icon", | 34 "incognito.1x.icon", |
| 30 "incognito.icon", | 35 "incognito.icon", |
| 31 "laptop.icon", | 36 "laptop.icon", |
| 32 "navigate_home.1x.icon", | 37 "navigate_home.1x.icon", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 49 "tab_close_normal.1x.icon", | 54 "tab_close_normal.1x.icon", |
| 50 "tab_close_normal.icon", | 55 "tab_close_normal.icon", |
| 51 "tab_media_capturing.icon", | 56 "tab_media_capturing.icon", |
| 52 "tab_media_recording.icon", | 57 "tab_media_recording.icon", |
| 53 "tab_usb_connected.1x.icon", | 58 "tab_usb_connected.1x.icon", |
| 54 "tab_usb_connected.icon", | 59 "tab_usb_connected.icon", |
| 55 "tablet.icon", | 60 "tablet.icon", |
| 56 "translate.icon", | 61 "translate.icon", |
| 57 "zoom_minus.icon", | 62 "zoom_minus.icon", |
| 58 "zoom_plus.icon", | 63 "zoom_plus.icon", |
| 64 "${branding_path_component}/product.icon", |
| 59 ] | 65 ] |
| 60 } | 66 } |
| 61 | 67 |
| 62 source_set("vector_icons") { | 68 source_set("vector_icons") { |
| 63 sources = get_target_outputs(":chrome_vector_icons") | 69 sources = get_target_outputs(":chrome_vector_icons") |
| 64 sources += [ "//ui/gfx/vector_icon_types.h" ] | 70 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 65 | 71 |
| 66 deps = [ | 72 deps = [ |
| 67 ":chrome_vector_icons", | 73 ":chrome_vector_icons", |
| 68 "//base", | 74 "//base", |
| 69 "//skia", | 75 "//skia", |
| 70 ] | 76 ] |
| 71 } | 77 } |
| OLD | NEW |