Chromium Code Reviews| Index: components/vector_icons/BUILD.gn |
| diff --git a/components/vector_icons/BUILD.gn b/components/vector_icons/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..82ac6e37b777c7f11142507b3c599587bee82aa1 |
| --- /dev/null |
| +++ b/components/vector_icons/BUILD.gn |
| @@ -0,0 +1,25 @@ |
| +# Copyright 2017 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +import("//ui/vector_icons/vector_icons.gni") |
| + |
| +aggregate_vector_icons("components_vector_icons") { |
| + icon_directory = "." |
| + |
| + icons = [ |
| + "screen_share.1x.icon", |
| + "screen_share.icon", |
| + ] |
| +} |
| + |
| +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.
|
| + sources = get_target_outputs(":components_vector_icons") |
| + |
| + deps = [ |
| + ":components_vector_icons", |
| + "//base", |
| + "//skia", |
| + "//ui/gfx", |
| + ] |
| +} |