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

Side by Side Diff: chrome/app/vector_icons/BUILD.gn

Issue 2695493002: [Mac] Touch Bar support for default browser window state (Closed)
Patch Set: Fixes for estade, remove the google search icon Created 3 years, 10 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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 import("//ui/vector_icons/vector_icons.gni") 5 import("//ui/vector_icons/vector_icons.gni")
6 6
7 aggregate_vector_icons("chrome_vector_icons") { 7 aggregate_vector_icons("chrome_vector_icons") {
8 icon_directory = "." 8 icon_directory = "."
9 9
10 icons = [ 10 icons = [
(...skipping 17 matching lines...) Expand all
28 "folder_supervised.icon", 28 "folder_supervised.icon",
29 "incognito.1x.icon", 29 "incognito.1x.icon",
30 "incognito.icon", 30 "incognito.icon",
31 "laptop.icon", 31 "laptop.icon",
32 "navigate_home.1x.icon", 32 "navigate_home.1x.icon",
33 "navigate_home.icon", 33 "navigate_home.icon",
34 "navigate_reload.1x.icon", 34 "navigate_reload.1x.icon",
35 "navigate_reload.icon", 35 "navigate_reload.icon",
36 "navigate_stop.1x.icon", 36 "navigate_stop.1x.icon",
37 "navigate_stop.icon", 37 "navigate_stop.icon",
38
Evan Stade 2017/02/17 20:52:57 nit: remove newline
spqchan 2017/02/17 21:18:35 Done.
38 "overflow_chevron.1x.icon", 39 "overflow_chevron.1x.icon",
39 "overflow_chevron.icon", 40 "overflow_chevron.icon",
40 "smartphone.icon", 41 "smartphone.icon",
41 "tab.icon", 42 "tab.icon",
42 "tab_audio.1x.icon", 43 "tab_audio.1x.icon",
43 "tab_audio.icon", 44 "tab_audio.icon",
44 "tab_audio_muting.1x.icon", 45 "tab_audio_muting.1x.icon",
45 "tab_audio_muting.icon", 46 "tab_audio_muting.icon",
46 "tab_bluetooth_connected.icon", 47 "tab_bluetooth_connected.icon",
47 "tab_close_hovered_pressed.1x.icon", 48 "tab_close_hovered_pressed.1x.icon",
48 "tab_close_hovered_pressed.icon", 49 "tab_close_hovered_pressed.icon",
49 "tab_close_normal.1x.icon", 50 "tab_close_normal.1x.icon",
50 "tab_close_normal.icon", 51 "tab_close_normal.icon",
51 "tab_media_capturing.icon", 52 "tab_media_capturing.icon",
52 "tab_media_recording.icon", 53 "tab_media_recording.icon",
53 "tab_usb_connected.1x.icon", 54 "tab_usb_connected.1x.icon",
54 "tab_usb_connected.icon", 55 "tab_usb_connected.icon",
55 "tablet.icon", 56 "tablet.icon",
56 "translate.icon", 57 "translate.icon",
57 "zoom_minus.icon", 58 "zoom_minus.icon",
58 "zoom_plus.icon", 59 "zoom_plus.icon",
59 ] 60 ]
61
62 if (is_mac) {
63 icons += [ "new_tab_mac_touchbar.icon" ]
64 }
60 } 65 }
61 66
62 source_set("vector_icons") { 67 source_set("vector_icons") {
63 sources = get_target_outputs(":chrome_vector_icons") 68 sources = get_target_outputs(":chrome_vector_icons")
64 sources += [ "//ui/gfx/vector_icon_types.h" ] 69 sources += [ "//ui/gfx/vector_icon_types.h" ]
65 70
66 deps = [ 71 deps = [
67 ":chrome_vector_icons", 72 ":chrome_vector_icons",
68 "//base", 73 "//base",
69 "//skia", 74 "//skia",
70 ] 75 ]
71 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698