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 28 matching lines...) Expand all Loading... |
39 "system_menu_brightness.1x.icon", | 39 "system_menu_brightness.1x.icon", |
40 "system_menu_brightness.icon", | 40 "system_menu_brightness.icon", |
41 "system_menu_business.1x.icon", | 41 "system_menu_business.1x.icon", |
42 "system_menu_business.icon", | 42 "system_menu_business.icon", |
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", |
| 50 "system_menu_help.icon", |
49 "system_menu_keyboard.1x.icon", | 51 "system_menu_keyboard.1x.icon", |
50 "system_menu_keyboard.icon", | 52 "system_menu_keyboard.icon", |
51 "system_menu_rotation_lock_auto.1x.icon", | 53 "system_menu_rotation_lock_auto.1x.icon", |
52 "system_menu_rotation_lock_auto.icon", | 54 "system_menu_rotation_lock_auto.icon", |
53 "system_menu_rotation_lock_locked.1x.icon", | 55 "system_menu_rotation_lock_locked.1x.icon", |
54 "system_menu_rotation_lock_locked.icon", | 56 "system_menu_rotation_lock_locked.icon", |
55 "system_menu_screen_share.1x.icon", | 57 "system_menu_screen_share.1x.icon", |
56 "system_menu_screen_share.icon", | 58 "system_menu_screen_share.icon", |
57 "system_menu_sms.icon", | 59 "system_menu_sms.icon", |
58 "system_menu_supervised_user.1x.icon", | 60 "system_menu_supervised_user.1x.icon", |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 source_set("vector_icons") { | 115 source_set("vector_icons") { |
114 sources = get_target_outputs(":aggregate_vector_icons") | 116 sources = get_target_outputs(":aggregate_vector_icons") |
115 sources += [ "//ui/gfx/vector_icon_types.h" ] | 117 sources += [ "//ui/gfx/vector_icon_types.h" ] |
116 | 118 |
117 deps = [ | 119 deps = [ |
118 ":aggregate_vector_icons", | 120 ":aggregate_vector_icons", |
119 "//base", | 121 "//base", |
120 "//skia", | 122 "//skia", |
121 ] | 123 ] |
122 } | 124 } |
OLD | NEW |