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

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

Issue 2490323003: Improve monitor compatibility error, move feedback link into button (Closed)
Patch Set: Switching to .icon files which don't yet render correctly Created 4 years, 1 month 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 "display_notification.1x.icon",
12 "display_notification.icon",
11 "ime_menu_emoticon.1x.icon", 13 "ime_menu_emoticon.1x.icon",
12 "ime_menu_emoticon.icon", 14 "ime_menu_emoticon.icon",
13 "ime_menu_microphone.1x.icon", 15 "ime_menu_microphone.1x.icon",
14 "ime_menu_microphone.icon", 16 "ime_menu_microphone.icon",
15 "ime_menu_on_screen_keyboard.1x.icon", 17 "ime_menu_on_screen_keyboard.1x.icon",
16 "ime_menu_on_screen_keyboard.icon", 18 "ime_menu_on_screen_keyboard.icon",
17 "ime_menu_write.1x.icon", 19 "ime_menu_write.1x.icon",
18 "ime_menu_write.icon", 20 "ime_menu_write.icon",
19 "network_badge_add_other.1x.icon", 21 "network_badge_add_other.1x.icon",
20 "network_badge_add_other.icon", 22 "network_badge_add_other.icon",
(...skipping 22 matching lines...) Expand all
43 "network_badge_technology_lte.1x.icon", 45 "network_badge_technology_lte.1x.icon",
44 "network_badge_technology_lte.icon", 46 "network_badge_technology_lte.icon",
45 "network_badge_technology_lte_advanced.1x.icon", 47 "network_badge_technology_lte_advanced.1x.icon",
46 "network_badge_technology_lte_advanced.icon", 48 "network_badge_technology_lte_advanced.icon",
47 "network_badge_vpn.1x.icon", 49 "network_badge_vpn.1x.icon",
48 "network_badge_vpn.icon", 50 "network_badge_vpn.icon",
49 "network_ethernet.1x.icon", 51 "network_ethernet.1x.icon",
50 "network_ethernet.icon", 52 "network_ethernet.icon",
51 "network_vpn.1x.icon", 53 "network_vpn.1x.icon",
52 "network_vpn.icon", 54 "network_vpn.icon",
55 "notification_feedback.1x.icon",
56 "notification_feedback.icon",
53 "palette_action_capture_region.1x.icon", 57 "palette_action_capture_region.1x.icon",
54 "palette_action_capture_region.icon", 58 "palette_action_capture_region.icon",
55 "palette_action_capture_screen.1x.icon", 59 "palette_action_capture_screen.1x.icon",
56 "palette_action_capture_screen.icon", 60 "palette_action_capture_screen.icon",
57 "palette_action_create_note.1x.icon", 61 "palette_action_create_note.1x.icon",
58 "palette_action_create_note.icon", 62 "palette_action_create_note.icon",
59 "palette_mode_laser_pointer.1x.icon", 63 "palette_mode_laser_pointer.1x.icon",
60 "palette_mode_laser_pointer.icon", 64 "palette_mode_laser_pointer.icon",
61 "palette_mode_magnify.1x.icon", 65 "palette_mode_magnify.1x.icon",
62 "palette_mode_magnify.icon", 66 "palette_mode_magnify.icon",
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 source_set("vector_icons") { 213 source_set("vector_icons") {
210 sources = get_target_outputs(":aggregate_vector_icons") 214 sources = get_target_outputs(":aggregate_vector_icons")
211 sources += [ "//ui/gfx/vector_icon_types.h" ] 215 sources += [ "//ui/gfx/vector_icon_types.h" ]
212 216
213 deps = [ 217 deps = [
214 ":aggregate_vector_icons", 218 ":aggregate_vector_icons",
215 "//base", 219 "//base",
216 "//skia", 220 "//skia",
217 ] 221 ]
218 } 222 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698