| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "tab_media_capturing.icon", | 56 "tab_media_capturing.icon", |
| 57 "tab_media_recording.icon", | 57 "tab_media_recording.icon", |
| 58 "tab_usb_connected.1x.icon", | 58 "tab_usb_connected.1x.icon", |
| 59 "tab_usb_connected.icon", | 59 "tab_usb_connected.icon", |
| 60 "tablet.icon", | 60 "tablet.icon", |
| 61 "translate.icon", | 61 "translate.icon", |
| 62 "zoom_minus.icon", | 62 "zoom_minus.icon", |
| 63 "zoom_plus.icon", | 63 "zoom_plus.icon", |
| 64 "${branding_path_component}/product.icon", | 64 "${branding_path_component}/product.icon", |
| 65 ] | 65 ] |
| 66 |
| 67 if (is_mac) { |
| 68 icons += [ "new_tab_mac_touchbar.icon" ] |
| 69 } |
| 66 } | 70 } |
| 67 | 71 |
| 68 source_set("vector_icons") { | 72 source_set("vector_icons") { |
| 69 sources = get_target_outputs(":chrome_vector_icons") | 73 sources = get_target_outputs(":chrome_vector_icons") |
| 70 sources += [ "//ui/gfx/vector_icon_types.h" ] | 74 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 71 | 75 |
| 72 deps = [ | 76 deps = [ |
| 73 ":chrome_vector_icons", | 77 ":chrome_vector_icons", |
| 74 "//base", | 78 "//base", |
| 75 "//skia", | 79 "//skia", |
| 76 ] | 80 ] |
| 77 } | 81 } |
| OLD | NEW |