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

Side by Side Diff: components/toolbar/BUILD.gn

Issue 2733823003: Move final vector icons out of ui/gfx/vector_icons/ and remove the (Closed)
Patch Set: fix cast shell maybe Created 3 years, 9 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//ui/vector_icons/vector_icons.gni") 6 import("//ui/vector_icons/vector_icons.gni")
7 7
8 aggregate_vector_icons("toolbar_vector_icons") { 8 aggregate_vector_icons("toolbar_vector_icons") {
9 icon_directory = "vector_icons" 9 icon_directory = "vector_icons"
10 10
11 icons = [ 11 icons = [
12 # TODO(estade): this is the same as ui/gfx/vector_icons/business.icon. Use
13 # that one instead once it's been updated from VectorIconId to VectorIcon.
14 "business.icon",
15 "http.1x.icon", 12 "http.1x.icon",
16 "http.icon", 13 "http.icon",
17 "https_invalid.1x.icon", 14 "https_invalid.1x.icon",
18 "https_invalid.icon", 15 "https_invalid.icon",
19 "https_valid.1x.icon", 16 "https_valid.1x.icon",
20 "https_valid.icon", 17 "https_valid.icon",
21 "https_valid_in_chip.1x.icon", 18 "https_valid_in_chip.1x.icon",
22 "https_valid_in_chip.icon", 19 "https_valid_in_chip.icon",
23 "product.1x.icon", 20 "product.1x.icon",
24 "product.icon", 21 "product.icon",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 "//base", 65 "//base",
69 "//components/resources", 66 "//components/resources",
70 "//ui/gfx", 67 "//ui/gfx",
71 ] 68 ]
72 69
73 if (toolkit_views) { 70 if (toolkit_views) {
74 # Needed to get the TOOLKIT_VIEWS define. 71 # Needed to get the TOOLKIT_VIEWS define.
75 deps += [ "//ui/views" ] 72 deps += [ "//ui/views" ]
76 } 73 }
77 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698