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

Unified Diff: components/vector_icons/BUILD.gn

Issue 2891503002: VR: UiElement for Screen Capture indicator (Closed)
Patch Set: moving icon to components Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/android/vr_shell/ui_scene_manager.cc ('k') | components/vector_icons/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
+ ]
+}
« no previous file with comments | « chrome/browser/android/vr_shell/ui_scene_manager.cc ('k') | components/vector_icons/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698