Chromium Code Reviews| OLD | NEW | 
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//ui/vector_icons/vector_icons.gni") | |
| 6 | |
| 7 aggregate_vector_icons("ui_resources_vector_icons") { | |
| 
 
Evan Stade
2017/02/08 00:00:24
I just added a target for this --- ui/vector_icons
 
mohsen
2017/02/08 03:54:56
Switched to that target...
 
 | |
| 8 icon_directory = "." | |
| 9 | |
| 10 icons = [ | |
| 11 "navigate_back.1x.icon", | |
| 
 
Evan Stade
2017/02/08 00:00:24
seems these are no longer used exclusively for nav
 
mohsen
2017/02/08 03:54:56
Sure. Done.
 
 | |
| 12 "navigate_back.icon", | |
| 13 "navigate_forward.1x.icon", | |
| 14 "navigate_forward.icon", | |
| 15 ] | |
| 16 } | |
| 17 | |
| 18 source_set("vector_icons") { | |
| 19 sources = get_target_outputs(":ui_resources_vector_icons") | |
| 20 sources += [ "//ui/gfx/vector_icon_types.h" ] | |
| 21 | |
| 22 deps = [ | |
| 23 ":ui_resources_vector_icons", | |
| 24 "//base", | |
| 25 "//skia", | |
| 26 ] | |
| 27 } | |
| OLD | NEW |