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

Unified Diff: components/BUILD.gn

Issue 658383003: Componentize Constrained Window Views (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase Created 6 years, 2 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
Index: components/BUILD.gn
diff --git a/components/BUILD.gn b/components/BUILD.gn
index c0bf3143cb04bc2367191f1832d01b4fc6900482..d0e7b61eda9ba8bebc45b2c1bdd1cbf2fc7787a5 100644
--- a/components/BUILD.gn
+++ b/components/BUILD.gn
@@ -193,6 +193,10 @@ group("all_components") {
"//components/storage_monitor",
]
}
+
+ if (toolkit_views) {
+ deps += [ "//components/constrained_window" ]
+ }
}
# TODO(GYP) enable when it links.
@@ -238,6 +242,10 @@ test("components_unittests") {
# Precache tests need these defines.
#configs += [ "//components/precache/core:precache_config" ]
+
+ if (toolkit_views) {
+ deps += [ "//components/constrained_window:unit_tests" ]
+ }
}
}

Powered by Google App Engine
This is Rietveld 408576698