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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 icons += [ | 98 icons += [ |
99 "default_favicon.icon", | 99 "default_favicon.icon", |
100 "google_search_mac_touchbar.icon", | 100 "google_search_mac_touchbar.icon", |
101 "new_tab_mac_touchbar.icon", | 101 "new_tab_mac_touchbar.icon", |
102 ] | 102 ] |
103 } | 103 } |
104 | 104 |
105 if (is_win) { | 105 if (is_win) { |
106 icons += [ "open_in_phone.icon" ] | 106 icons += [ "open_in_phone.icon" ] |
107 } | 107 } |
| 108 |
| 109 if (is_chromeos) { |
| 110 icons += [ "arc_migrate_encryption_notification.icon" ] |
| 111 } |
108 } | 112 } |
109 | 113 |
110 source_set("vector_icons") { | 114 source_set("vector_icons") { |
111 sources = get_target_outputs(":chrome_vector_icons") | 115 sources = get_target_outputs(":chrome_vector_icons") |
112 sources += [ "//ui/gfx/vector_icon_types.h" ] | 116 sources += [ "//ui/gfx/vector_icon_types.h" ] |
113 | 117 |
114 deps = [ | 118 deps = [ |
115 ":chrome_vector_icons", | 119 ":chrome_vector_icons", |
116 "//base", | 120 "//base", |
117 "//skia", | 121 "//skia", |
118 ] | 122 ] |
119 } | 123 } |
OLD | NEW |