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

Unified Diff: components/toolbar/BUILD.gn

Issue 2923843002: Use desktop toolbar icons in VR. (Closed)
Patch Set: Created 3 years, 6 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/ui/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/toolbar/BUILD.gn
diff --git a/components/toolbar/BUILD.gn b/components/toolbar/BUILD.gn
index b540a4dd6b4ebbcb806c12c1e7fbb00f421b8798..0f1cc9f0e6a8129d6490a44ccde7ad332715a1ab 100644
--- a/components/toolbar/BUILD.gn
+++ b/components/toolbar/BUILD.gn
@@ -24,6 +24,16 @@ aggregate_vector_icons("toolbar_vector_icons") {
]
}
+static_library("vector_icons") {
+ sources = get_target_outputs(":toolbar_vector_icons")
+ deps = [
+ ":toolbar_vector_icons",
+ "//skia",
+ "//ui/gfx",
+ "//ui/vector_icons",
+ ]
+}
+
static_library("toolbar") {
sources = [
"toolbar_model.h",
@@ -50,11 +60,7 @@ static_library("toolbar") {
]
if (!is_android && !is_ios) {
- sources += get_target_outputs(":toolbar_vector_icons")
- deps += [
- ":toolbar_vector_icons",
- "//ui/vector_icons",
- ]
+ deps += [ ":vector_icons" ]
}
}
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698