| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "subresource_filter_active.icon", | 115 "subresource_filter_active.icon", |
| 116 "supervisor_account.icon", | 116 "supervisor_account.icon", |
| 117 "supervisor_account_circle.icon", | 117 "supervisor_account_circle.icon", |
| 118 "sync_problem.icon", | 118 "sync_problem.icon", |
| 119 "translate.icon", | 119 "translate.icon", |
| 120 "user_account_avatar.icon", | 120 "user_account_avatar.icon", |
| 121 "videocam.icon", | 121 "videocam.icon", |
| 122 "warning.icon", | 122 "warning.icon", |
| 123 "warning_badge.icon", | 123 "warning_badge.icon", |
| 124 "web.icon", | 124 "web.icon", |
| 125 "window_control_back.1x.icon", | |
| 126 "window_control_back.icon", | |
| 127 "window_control_close.1x.icon", | |
| 128 "window_control_close.icon", | |
| 129 "window_control_left_snapped.1x.icon", | |
| 130 "window_control_left_snapped.icon", | |
| 131 "window_control_maximize.1x.icon", | |
| 132 "window_control_maximize.icon", | |
| 133 "window_control_minimize.1x.icon", | |
| 134 "window_control_minimize.icon", | |
| 135 "window_control_restore.1x.icon", | |
| 136 "window_control_restore.icon", | |
| 137 "window_control_right_snapped.1x.icon", | |
| 138 "window_control_right_snapped.icon", | |
| 139 "zoom_minus.icon", | 125 "zoom_minus.icon", |
| 140 "zoom_plus.icon", | 126 "zoom_plus.icon", |
| 141 "${branding_path_component}/product.icon", | 127 "${branding_path_component}/product.icon", |
| 142 ] | 128 ] |
| 143 | 129 |
| 144 output_cc = "$target_gen_dir/vector_icons.cc" | 130 output_cc = "$target_gen_dir/vector_icons.cc" |
| 145 output_h = "$target_gen_dir/vector_icons.h" | 131 output_h = "$target_gen_dir/vector_icons.h" |
| 146 | 132 |
| 147 inputs = icons | 133 inputs = icons |
| 148 inputs += [ | 134 inputs += [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 171 "../vector_icon_types.h", | 157 "../vector_icon_types.h", |
| 172 "../vector_icons_public.h", | 158 "../vector_icons_public.h", |
| 173 ] | 159 ] |
| 174 | 160 |
| 175 deps = [ | 161 deps = [ |
| 176 ":aggregate_vector_icons", | 162 ":aggregate_vector_icons", |
| 177 "//base", | 163 "//base", |
| 178 "//skia", | 164 "//skia", |
| 179 ] | 165 ] |
| 180 } | 166 } |
| OLD | NEW |