Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//ui/vector_icons/vector_icons.gni") | |
| 6 | |
| 7 aggregate_vector_icons("components_vector_icons") { | |
| 8 icon_directory = "." | |
| 9 | |
| 10 icons = [ | |
| 11 "screen_share.1x.icon", | |
| 12 "screen_share.icon", | |
| 13 ] | |
| 14 } | |
| 15 | |
| 16 source_set("vector_icons") { | |
|
Evan Stade
2017/05/17 21:51:40
I think this should be a static_library.
acondor_
2017/05/18 14:14:39
Done.
| |
| 17 sources = get_target_outputs(":components_vector_icons") | |
| 18 | |
| 19 deps = [ | |
| 20 ":components_vector_icons", | |
| 21 "//base", | |
| 22 "//skia", | |
| 23 "//ui/gfx", | |
| 24 ] | |
| 25 } | |
| OLD | NEW |