| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "folder_managed.icon", | 42 "folder_managed.icon", |
| 43 "folder_supervised.1x.icon", | 43 "folder_supervised.1x.icon", |
| 44 "folder_supervised.icon", | 44 "folder_supervised.icon", |
| 45 "globe.icon", | 45 "globe.icon", |
| 46 "image.icon", | 46 "image.icon", |
| 47 "incognito.1x.icon", | 47 "incognito.1x.icon", |
| 48 "incognito.icon", | 48 "incognito.icon", |
| 49 "laptop.icon", | 49 "laptop.icon", |
| 50 "lock.icon", | 50 "lock.icon", |
| 51 "mixed_content.icon", | 51 "mixed_content.icon", |
| 52 "mode_edit.icon", | |
| 53 "my_location.icon", | 52 "my_location.icon", |
| 54 "navigate_home.1x.icon", | 53 "navigate_home.1x.icon", |
| 55 "navigate_home.icon", | 54 "navigate_home.icon", |
| 56 "navigate_reload.1x.icon", | 55 "navigate_reload.1x.icon", |
| 57 "navigate_reload.icon", | 56 "navigate_reload.icon", |
| 58 "navigate_stop.1x.icon", | 57 "navigate_stop.1x.icon", |
| 59 "navigate_stop.icon", | 58 "navigate_stop.icon", |
| 60 "open_in_phone.icon", | 59 "open_in_phone.icon", |
| 61 "overflow_chevron.1x.icon", | 60 "overflow_chevron.1x.icon", |
| 62 "overflow_chevron.icon", | 61 "overflow_chevron.icon", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 source_set("vector_icons") { | 101 source_set("vector_icons") { |
| 103 sources = get_target_outputs(":chrome_vector_icons") | 102 sources = get_target_outputs(":chrome_vector_icons") |
| 104 sources += [ "//ui/gfx/vector_icon_types.h" ] | 103 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 105 | 104 |
| 106 deps = [ | 105 deps = [ |
| 107 ":chrome_vector_icons", | 106 ":chrome_vector_icons", |
| 108 "//base", | 107 "//base", |
| 109 "//skia", | 108 "//skia", |
| 110 ] | 109 ] |
| 111 } | 110 } |
| OLD | NEW |