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