| 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("//components/vector_icons/vector_icons.gni") | 6 import("//components/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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "overflow_chevron.1x.icon", | 64 "overflow_chevron.1x.icon", |
| 65 "overflow_chevron.icon", | 65 "overflow_chevron.icon", |
| 66 "paintbrush.icon", | 66 "paintbrush.icon", |
| 67 "photo_camera.icon", | 67 "photo_camera.icon", |
| 68 "profile_switcher_outline.icon", | 68 "profile_switcher_outline.icon", |
| 69 "remove.1x.icon", | 69 "remove.1x.icon", |
| 70 "remove.icon", | 70 "remove.icon", |
| 71 "remove_box.icon", | 71 "remove_box.icon", |
| 72 "sad_tab.icon", | 72 "sad_tab.icon", |
| 73 "settings.icon", | 73 "settings.icon", |
| 74 "open_in_new.icon", |
| 74 "smartphone.icon", | 75 "smartphone.icon", |
| 75 "subresource_filter_active.icon", | 76 "subresource_filter_active.icon", |
| 76 "supervisor_account.icon", | 77 "supervisor_account.icon", |
| 77 "supervisor_account_circle.icon", | 78 "supervisor_account_circle.icon", |
| 78 "sync_problem.icon", | 79 "sync_problem.icon", |
| 79 "tab.icon", | 80 "tab.icon", |
| 80 "tab_audio.1x.icon", | 81 "tab_audio.1x.icon", |
| 81 "tab_audio.icon", | 82 "tab_audio.icon", |
| 82 "tab_audio_muting.1x.icon", | 83 "tab_audio_muting.1x.icon", |
| 83 "tab_audio_muting.icon", | 84 "tab_audio_muting.icon", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 source_set("vector_icons") { | 121 source_set("vector_icons") { |
| 121 sources = get_target_outputs(":chrome_vector_icons") | 122 sources = get_target_outputs(":chrome_vector_icons") |
| 122 | 123 |
| 123 deps = [ | 124 deps = [ |
| 124 ":chrome_vector_icons", | 125 ":chrome_vector_icons", |
| 125 "//base", | 126 "//base", |
| 126 "//skia", | 127 "//skia", |
| 127 "//ui/gfx", | 128 "//ui/gfx", |
| 128 ] | 129 ] |
| 129 } | 130 } |
| OLD | NEW |