| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 action("aggregate_vector_icons") { | 5 action("aggregate_vector_icons") { |
| 6 visibility = [ ":*" ] | 6 visibility = [ ":*" ] |
| 7 | 7 |
| 8 script = "//ui/gfx/vector_icons/aggregate_vector_icons.py" | 8 script = "//ui/gfx/vector_icons/aggregate_vector_icons.py" |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 "system_tray_rotation_lock_locked.1x.icon", | 191 "system_tray_rotation_lock_locked.1x.icon", |
| 192 "system_tray_rotation_lock_locked.icon", | 192 "system_tray_rotation_lock_locked.icon", |
| 193 "system_tray_screen_share.1x.icon", | 193 "system_tray_screen_share.1x.icon", |
| 194 "system_tray_screen_share.icon", | 194 "system_tray_screen_share.icon", |
| 195 "system_tray_tracing.1x.icon", | 195 "system_tray_tracing.1x.icon", |
| 196 "system_tray_tracing.icon", | 196 "system_tray_tracing.icon", |
| 197 "system_tray_update.1x.icon", | 197 "system_tray_update.1x.icon", |
| 198 "system_tray_update.icon", | 198 "system_tray_update.icon", |
| 199 "system_tray_volume_mute.1x.icon", | 199 "system_tray_volume_mute.1x.icon", |
| 200 "system_tray_volume_mute.icon", | 200 "system_tray_volume_mute.icon", |
| 201 "window_control_back.1x.icon", |
| 202 "window_control_back.icon", |
| 203 "window_control_close.1x.icon", |
| 204 "window_control_close.icon", |
| 205 "window_control_left_snapped.1x.icon", |
| 206 "window_control_left_snapped.icon", |
| 207 "window_control_maximize.1x.icon", |
| 208 "window_control_maximize.icon", |
| 209 "window_control_minimize.1x.icon", |
| 210 "window_control_minimize.icon", |
| 211 "window_control_restore.1x.icon", |
| 212 "window_control_restore.icon", |
| 213 "window_control_right_snapped.1x.icon", |
| 214 "window_control_right_snapped.icon", |
| 201 ] | 215 ] |
| 202 | 216 |
| 203 output_cc = "$target_gen_dir/vector_icons.cc" | 217 output_cc = "$target_gen_dir/vector_icons.cc" |
| 204 output_h = "$target_gen_dir/vector_icons.h" | 218 output_h = "$target_gen_dir/vector_icons.h" |
| 205 | 219 |
| 206 inputs = icons | 220 inputs = icons |
| 207 inputs += [ | 221 inputs += [ |
| 208 "vector_icons.cc.template", | 222 "vector_icons.cc.template", |
| 209 "vector_icons.h.template", | 223 "vector_icons.h.template", |
| 210 ] | 224 ] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 226 source_set("vector_icons") { | 240 source_set("vector_icons") { |
| 227 sources = get_target_outputs(":aggregate_vector_icons") | 241 sources = get_target_outputs(":aggregate_vector_icons") |
| 228 sources += [ "//ui/gfx/vector_icon_types.h" ] | 242 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 229 | 243 |
| 230 deps = [ | 244 deps = [ |
| 231 ":aggregate_vector_icons", | 245 ":aggregate_vector_icons", |
| 232 "//base", | 246 "//base", |
| 233 "//skia", | 247 "//skia", |
| 234 ] | 248 ] |
| 235 } | 249 } |
| OLD | NEW |