OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 | 6 |
7 action("aggregate_vector_icons") { | 7 action("aggregate_vector_icons") { |
8 visibility = [ ":*" ] | 8 visibility = [ ":*" ] |
9 | 9 |
10 script = "aggregate_vector_icons.py" | 10 script = "aggregate_vector_icons.py" |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 "tab_media_recording.icon", | 138 "tab_media_recording.icon", |
139 "tab_usb_connected.1x.icon", | 139 "tab_usb_connected.1x.icon", |
140 "tab_usb_connected.icon", | 140 "tab_usb_connected.icon", |
141 "tablet.icon", | 141 "tablet.icon", |
142 "translate.icon", | 142 "translate.icon", |
143 "user_account_avatar.icon", | 143 "user_account_avatar.icon", |
144 "videocam.icon", | 144 "videocam.icon", |
145 "warning.icon", | 145 "warning.icon", |
146 "warning_badge.icon", | 146 "warning_badge.icon", |
147 "web.icon", | 147 "web.icon", |
148 "window_control_back.1x.icon", | |
149 "window_control_back.icon", | |
150 "window_control_close.1x.icon", | |
151 "window_control_close.icon", | |
152 "window_control_left_snapped.1x.icon", | |
153 "window_control_left_snapped.icon", | |
154 "window_control_maximize.1x.icon", | |
155 "window_control_maximize.icon", | |
156 "window_control_minimize.1x.icon", | |
157 "window_control_minimize.icon", | |
158 "window_control_restore.1x.icon", | |
159 "window_control_restore.icon", | |
160 "window_control_right_snapped.1x.icon", | |
161 "window_control_right_snapped.icon", | |
162 "zoom_minus.icon", | 148 "zoom_minus.icon", |
163 "zoom_plus.icon", | 149 "zoom_plus.icon", |
164 "${branding_path_component}/product.icon", | 150 "${branding_path_component}/product.icon", |
165 ] | 151 ] |
166 | 152 |
167 output_cc = "$target_gen_dir/vector_icons.cc" | 153 output_cc = "$target_gen_dir/vector_icons.cc" |
168 output_h = "$target_gen_dir/vector_icons.h" | 154 output_h = "$target_gen_dir/vector_icons.h" |
169 | 155 |
170 inputs = icons | 156 inputs = icons |
171 inputs += [ | 157 inputs += [ |
(...skipping 22 matching lines...) Expand all Loading... |
194 "../vector_icon_types.h", | 180 "../vector_icon_types.h", |
195 "../vector_icons_public.h", | 181 "../vector_icons_public.h", |
196 ] | 182 ] |
197 | 183 |
198 deps = [ | 184 deps = [ |
199 ":aggregate_vector_icons", | 185 ":aggregate_vector_icons", |
200 "//base", | 186 "//base", |
201 "//skia", | 187 "//skia", |
202 ] | 188 ] |
203 } | 189 } |
OLD | NEW |