Chromium Code Reviews| OLD | NEW |
|---|---|
| 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("ui_vector_icons") { | 7 aggregate_vector_icons("ui_vector_icons") { |
| 8 icon_directory = "." | 8 icon_directory = "." |
| 9 | 9 |
| 10 icons = [ | 10 icons = [ |
| 11 "close.1x.icon", | 11 "close.1x.icon", |
| 12 "close.icon", | 12 "close.icon", |
| 13 "back_arrow.1x.icon", | |
|
Evan Stade
2017/02/08 16:08:10
nit: alphabetize
mohsen
2017/02/08 20:52:03
Oops! Done.
| |
| 14 "back_arrow.icon", | |
| 15 "forward_arrow.1x.icon", | |
| 16 "forward_arrow.icon", | |
| 13 ] | 17 ] |
| 14 } | 18 } |
| 15 | 19 |
| 16 static_library("vector_icons") { | 20 static_library("vector_icons") { |
| 17 sources = get_target_outputs(":ui_vector_icons") | 21 sources = get_target_outputs(":ui_vector_icons") |
| 18 sources += [ "//ui/gfx/vector_icon_types.h" ] | 22 sources += [ "//ui/gfx/vector_icon_types.h" ] |
| 19 | 23 |
| 20 deps = [ | 24 deps = [ |
| 21 ":ui_vector_icons", | 25 ":ui_vector_icons", |
| 22 "//base", | 26 "//base", |
| 23 "//skia", | 27 "//skia", |
| 24 ] | 28 ] |
| 25 } | 29 } |
| OLD | NEW |