| 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", |
| 148 "zoom_minus.icon", | 162 "zoom_minus.icon", |
| 149 "zoom_plus.icon", | 163 "zoom_plus.icon", |
| 150 "${branding_path_component}/product.icon", | 164 "${branding_path_component}/product.icon", |
| 151 ] | 165 ] |
| 152 | 166 |
| 153 output_cc = "$target_gen_dir/vector_icons.cc" | 167 output_cc = "$target_gen_dir/vector_icons.cc" |
| 154 output_h = "$target_gen_dir/vector_icons.h" | 168 output_h = "$target_gen_dir/vector_icons.h" |
| 155 | 169 |
| 156 inputs = icons | 170 inputs = icons |
| 157 inputs += [ | 171 inputs += [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 180 "../vector_icon_types.h", | 194 "../vector_icon_types.h", |
| 181 "../vector_icons_public.h", | 195 "../vector_icons_public.h", |
| 182 ] | 196 ] |
| 183 | 197 |
| 184 deps = [ | 198 deps = [ |
| 185 ":aggregate_vector_icons", | 199 ":aggregate_vector_icons", |
| 186 "//base", | 200 "//base", |
| 187 "//skia", | 201 "//skia", |
| 188 ] | 202 ] |
| 189 } | 203 } |
| OLD | NEW |