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 24 matching lines...) Expand all Loading... |
35 "system_menu_brightness.1x.icon", | 35 "system_menu_brightness.1x.icon", |
36 "system_menu_brightness.icon", | 36 "system_menu_brightness.icon", |
37 "system_menu_business.1x.icon", | 37 "system_menu_business.1x.icon", |
38 "system_menu_business.icon", | 38 "system_menu_business.icon", |
39 "system_menu_caps_lock.1x.icon", | 39 "system_menu_caps_lock.1x.icon", |
40 "system_menu_caps_lock.icon", | 40 "system_menu_caps_lock.icon", |
41 "system_menu_cast.1x.icon", | 41 "system_menu_cast.1x.icon", |
42 "system_menu_cast.icon", | 42 "system_menu_cast.icon", |
43 "system_menu_child_user.1x.icon", | 43 "system_menu_child_user.1x.icon", |
44 "system_menu_child_user.icon", | 44 "system_menu_child_user.icon", |
| 45 "system_menu_help.1x.icon", |
| 46 "system_menu_help.icon", |
45 "system_menu_keyboard.1x.icon", | 47 "system_menu_keyboard.1x.icon", |
46 "system_menu_keyboard.icon", | 48 "system_menu_keyboard.icon", |
47 "system_menu_rotation_lock_auto.1x.icon", | 49 "system_menu_rotation_lock_auto.1x.icon", |
48 "system_menu_rotation_lock_auto.icon", | 50 "system_menu_rotation_lock_auto.icon", |
49 "system_menu_rotation_lock_locked.1x.icon", | 51 "system_menu_rotation_lock_locked.1x.icon", |
50 "system_menu_rotation_lock_locked.icon", | 52 "system_menu_rotation_lock_locked.icon", |
51 "system_menu_screen_share.1x.icon", | 53 "system_menu_screen_share.1x.icon", |
52 "system_menu_screen_share.icon", | 54 "system_menu_screen_share.icon", |
53 "system_menu_sms.icon", | 55 "system_menu_sms.icon", |
54 "system_menu_supervised_user.1x.icon", | 56 "system_menu_supervised_user.1x.icon", |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 source_set("vector_icons") { | 111 source_set("vector_icons") { |
110 sources = get_target_outputs(":aggregate_vector_icons") | 112 sources = get_target_outputs(":aggregate_vector_icons") |
111 sources += [ "//ui/gfx/vector_icon_types.h" ] | 113 sources += [ "//ui/gfx/vector_icon_types.h" ] |
112 | 114 |
113 deps = [ | 115 deps = [ |
114 ":aggregate_vector_icons", | 116 ":aggregate_vector_icons", |
115 "//base", | 117 "//base", |
116 "//skia", | 118 "//skia", |
117 ] | 119 ] |
118 } | 120 } |
OLD | NEW |