| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "system_menu_computer.1x.icon", | 69 "system_menu_computer.1x.icon", |
| 70 "system_menu_computer.icon", | 70 "system_menu_computer.icon", |
| 71 "system_menu_gamepad.1x.icon", | 71 "system_menu_gamepad.1x.icon", |
| 72 "system_menu_gamepad.icon", | 72 "system_menu_gamepad.icon", |
| 73 "system_menu_hdmi.1x.icon", | 73 "system_menu_hdmi.1x.icon", |
| 74 "system_menu_hdmi.icon", | 74 "system_menu_hdmi.icon", |
| 75 "system_menu_headset.1x.icon", | 75 "system_menu_headset.1x.icon", |
| 76 "system_menu_headset.icon", | 76 "system_menu_headset.icon", |
| 77 "system_menu_help.1x.icon", | 77 "system_menu_help.1x.icon", |
| 78 "system_menu_help.icon", | 78 "system_menu_help.icon", |
| 79 "system_menu_info.1x.icon", |
| 80 "system_menu_info.icon", |
| 79 "system_menu_keyboard.1x.icon", | 81 "system_menu_keyboard.1x.icon", |
| 80 "system_menu_keyboard.icon", | 82 "system_menu_keyboard.icon", |
| 81 "system_menu_lock.1x.icon", | 83 "system_menu_lock.1x.icon", |
| 82 "system_menu_lock.icon", | 84 "system_menu_lock.icon", |
| 83 "system_menu_mouse.1x.icon", | 85 "system_menu_mouse.1x.icon", |
| 84 "system_menu_mouse.icon", | 86 "system_menu_mouse.icon", |
| 85 "system_menu_phone.1x.icon", | 87 "system_menu_phone.1x.icon", |
| 86 "system_menu_phone.icon", | 88 "system_menu_phone.icon", |
| 87 "system_menu_power.1x.icon", | 89 "system_menu_power.1x.icon", |
| 88 "system_menu_power.icon", | 90 "system_menu_power.icon", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 source_set("vector_icons") { | 169 source_set("vector_icons") { |
| 168 sources = get_target_outputs(":aggregate_vector_icons") | 170 sources = get_target_outputs(":aggregate_vector_icons") |
| 169 sources += [ "//ui/gfx/vector_icon_types.h" ] | 171 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 170 | 172 |
| 171 deps = [ | 173 deps = [ |
| 172 ":aggregate_vector_icons", | 174 ":aggregate_vector_icons", |
| 173 "//base", | 175 "//base", |
| 174 "//skia", | 176 "//skia", |
| 175 ] | 177 ] |
| 176 } | 178 } |
| OLD | NEW |