Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: ash/resources/vector_icons/BUILD.gn

Issue 2316183003: Move a bunch of ash-only vector icons to ash/. (Closed)
Patch Set: drop the "id". Just "icon". It's cleaner. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 = [
11 "palette_action_capture_region.1x.icon",
12 "palette_action_capture_region.icon",
13 "palette_action_capture_screen.1x.icon",
14 "palette_action_capture_screen.icon",
15 "palette_action_create_note.1x.icon",
16 "palette_action_create_note.icon",
17 "palette_mode_laser_pointer.1x.icon",
18 "palette_mode_laser_pointer.icon",
19 "palette_mode_magnify.1x.icon",
20 "palette_mode_magnify.icon",
21 "palette_tray_icon_default.1x.icon",
22 "palette_tray_icon_default.icon",
23 "palette_tray_icon_laser_pointer.1x.icon",
24 "palette_tray_icon_laser_pointer.icon",
25 "palette_tray_icon_magnify.1x.icon",
26 "palette_tray_icon_magnify.icon",
27 "system_menu_accessibility.1x.icon",
28 "system_menu_accessibility.icon",
29 "system_menu_arrow_right.1x.icon",
30 "system_menu_arrow_right.icon",
31 "system_menu_bluetooth.1x.icon",
32 "system_menu_bluetooth.icon",
33 "system_menu_bluetooth_disabled.1x.icon",
34 "system_menu_bluetooth_disabled.icon",
35 "system_menu_brightness.1x.icon",
36 "system_menu_brightness.icon",
37 "system_menu_business.1x.icon",
38 "system_menu_business.icon",
39 "system_menu_caps_lock.1x.icon",
40 "system_menu_caps_lock.icon",
41 "system_menu_cast.1x.icon",
42 "system_menu_cast.icon",
43 "system_menu_child_user.1x.icon",
44 "system_menu_child_user.icon",
11 "system_menu_keyboard.1x.icon", 45 "system_menu_keyboard.1x.icon",
12 "system_menu_keyboard.icon", 46 "system_menu_keyboard.icon",
47 "system_menu_rotation_lock_auto.1x.icon",
48 "system_menu_rotation_lock_auto.icon",
49 "system_menu_rotation_lock_locked.1x.icon",
50 "system_menu_rotation_lock_locked.icon",
51 "system_menu_screen_share.1x.icon",
52 "system_menu_screen_share.icon",
53 "system_menu_sms.icon",
54 "system_menu_supervised_user.1x.icon",
55 "system_menu_supervised_user.icon",
56 "system_menu_timer.1x.icon",
57 "system_menu_timer.icon",
58 "system_menu_update.1x.icon",
59 "system_menu_update.icon",
60 "system_tray_accessibility.1x.icon",
61 "system_tray_accessibility.icon",
62 "system_tray_battery.1x.icon",
63 "system_tray_battery.icon",
64 "system_tray_battery_alert.1x.icon",
65 "system_tray_battery_alert.icon",
66 "system_tray_battery_bolt.1x.icon",
67 "system_tray_battery_bolt.icon",
68 "system_tray_battery_unreliable.1x.icon",
69 "system_tray_battery_unreliable.icon",
70 "system_tray_battery_x.1x.icon",
71 "system_tray_battery_x.icon",
72 "system_tray_caps_lock.1x.icon",
73 "system_tray_caps_lock.icon",
74 "system_tray_cast.1x.icon",
75 "system_tray_cast.icon",
76 "system_tray_rotation_lock_locked.1x.icon",
77 "system_tray_rotation_lock_locked.icon",
78 "system_tray_screen_share.1x.icon",
79 "system_tray_screen_share.icon",
80 "system_tray_update.1x.icon",
81 "system_tray_update.icon",
82 "system_tray_volume_mute.1x.icon",
83 "system_tray_volume_mute.icon",
13 ] 84 ]
14 85
15 output_cc = "$target_gen_dir/vector_icons.cc" 86 output_cc = "$target_gen_dir/vector_icons.cc"
16 output_h = "$target_gen_dir/vector_icons.h" 87 output_h = "$target_gen_dir/vector_icons.h"
17 88
18 inputs = icons 89 inputs = icons
19 inputs += [ 90 inputs += [
20 "vector_icons.cc.template", 91 "vector_icons.cc.template",
21 "vector_icons.h.template", 92 "vector_icons.h.template",
22 ] 93 ]
(...skipping 15 matching lines...) Expand all
38 source_set("vector_icons") { 109 source_set("vector_icons") {
39 sources = get_target_outputs(":aggregate_vector_icons") 110 sources = get_target_outputs(":aggregate_vector_icons")
40 sources += [ "//ui/gfx/vector_icon_types.h" ] 111 sources += [ "//ui/gfx/vector_icon_types.h" ]
41 112
42 deps = [ 113 deps = [
43 ":aggregate_vector_icons", 114 ":aggregate_vector_icons",
44 "//base", 115 "//base",
45 "//skia", 116 "//skia",
46 ] 117 ]
47 } 118 }
OLDNEW
« no previous file with comments | « ash/common/system/update/tray_update.cc ('k') | ash/resources/vector_icons/palette_action_capture_region.icon » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698