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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "system_menu_caps_lock.1x.icon", | 43 "system_menu_caps_lock.1x.icon", |
44 "system_menu_caps_lock.icon", | 44 "system_menu_caps_lock.icon", |
45 "system_menu_cast.1x.icon", | 45 "system_menu_cast.1x.icon", |
46 "system_menu_cast.icon", | 46 "system_menu_cast.icon", |
47 "system_menu_child_user.1x.icon", | 47 "system_menu_child_user.1x.icon", |
48 "system_menu_child_user.icon", | 48 "system_menu_child_user.icon", |
49 "system_menu_help.1x.icon", | 49 "system_menu_help.1x.icon", |
50 "system_menu_help.icon", | 50 "system_menu_help.icon", |
51 "system_menu_keyboard.1x.icon", | 51 "system_menu_keyboard.1x.icon", |
52 "system_menu_keyboard.icon", | 52 "system_menu_keyboard.icon", |
| 53 "system_menu_power.1x.icon", |
| 54 "system_menu_power.icon", |
53 "system_menu_rotation_lock_auto.1x.icon", | 55 "system_menu_rotation_lock_auto.1x.icon", |
54 "system_menu_rotation_lock_auto.icon", | 56 "system_menu_rotation_lock_auto.icon", |
55 "system_menu_rotation_lock_locked.1x.icon", | 57 "system_menu_rotation_lock_locked.1x.icon", |
56 "system_menu_rotation_lock_locked.icon", | 58 "system_menu_rotation_lock_locked.icon", |
57 "system_menu_screen_share.1x.icon", | 59 "system_menu_screen_share.1x.icon", |
58 "system_menu_screen_share.icon", | 60 "system_menu_screen_share.icon", |
59 "system_menu_sms.icon", | 61 "system_menu_sms.icon", |
60 "system_menu_supervised_user.1x.icon", | 62 "system_menu_supervised_user.1x.icon", |
61 "system_menu_supervised_user.icon", | 63 "system_menu_supervised_user.icon", |
62 "system_menu_timer.1x.icon", | 64 "system_menu_timer.1x.icon", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 source_set("vector_icons") { | 117 source_set("vector_icons") { |
116 sources = get_target_outputs(":aggregate_vector_icons") | 118 sources = get_target_outputs(":aggregate_vector_icons") |
117 sources += [ "//ui/gfx/vector_icon_types.h" ] | 119 sources += [ "//ui/gfx/vector_icon_types.h" ] |
118 | 120 |
119 deps = [ | 121 deps = [ |
120 ":aggregate_vector_icons", | 122 ":aggregate_vector_icons", |
121 "//base", | 123 "//base", |
122 "//skia", | 124 "//skia", |
123 ] | 125 ] |
124 } | 126 } |
OLD | NEW |