| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "laptop.icon", | 50 "laptop.icon", |
| 51 "lock.icon", | 51 "lock.icon", |
| 52 "mixed_content.icon", | 52 "mixed_content.icon", |
| 53 "my_location.icon", | 53 "my_location.icon", |
| 54 "navigate_home.1x.icon", | 54 "navigate_home.1x.icon", |
| 55 "navigate_home.icon", | 55 "navigate_home.icon", |
| 56 "navigate_reload.1x.icon", | 56 "navigate_reload.1x.icon", |
| 57 "navigate_reload.icon", | 57 "navigate_reload.icon", |
| 58 "navigate_stop.1x.icon", | 58 "navigate_stop.1x.icon", |
| 59 "navigate_stop.icon", | 59 "navigate_stop.icon", |
| 60 "open_in_phone.icon", | |
| 61 "overflow_chevron.1x.icon", | 60 "overflow_chevron.1x.icon", |
| 62 "overflow_chevron.icon", | 61 "overflow_chevron.icon", |
| 63 "paintbrush.icon", | 62 "paintbrush.icon", |
| 64 "photo_camera.icon", | 63 "photo_camera.icon", |
| 65 "remove_box.icon", | 64 "remove_box.icon", |
| 66 "sad_tab.icon", | 65 "sad_tab.icon", |
| 67 "settings.icon", | 66 "settings.icon", |
| 68 "smartphone.icon", | 67 "smartphone.icon", |
| 69 "subresource_filter_active.icon", | 68 "subresource_filter_active.icon", |
| 70 "supervisor_account.icon", | 69 "supervisor_account.icon", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 94 "${branding_path_component}/product.icon", | 93 "${branding_path_component}/product.icon", |
| 95 ] | 94 ] |
| 96 | 95 |
| 97 if (is_mac) { | 96 if (is_mac) { |
| 98 icons += [ | 97 icons += [ |
| 99 "default_favicon.icon", | 98 "default_favicon.icon", |
| 100 "google_search_mac_touchbar.icon", | 99 "google_search_mac_touchbar.icon", |
| 101 "new_tab_mac_touchbar.icon", | 100 "new_tab_mac_touchbar.icon", |
| 102 ] | 101 ] |
| 103 } | 102 } |
| 103 |
| 104 if (is_win) { |
| 105 icons += [ "open_in_phone.icon" ] |
| 106 } |
| 104 } | 107 } |
| 105 | 108 |
| 106 source_set("vector_icons") { | 109 source_set("vector_icons") { |
| 107 sources = get_target_outputs(":chrome_vector_icons") | 110 sources = get_target_outputs(":chrome_vector_icons") |
| 108 sources += [ "//ui/gfx/vector_icon_types.h" ] | 111 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 109 | 112 |
| 110 deps = [ | 113 deps = [ |
| 111 ":chrome_vector_icons", | 114 ":chrome_vector_icons", |
| 112 "//base", | 115 "//base", |
| 113 "//skia", | 116 "//skia", |
| 114 ] | 117 ] |
| 115 } | 118 } |
| OLD | NEW |