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

Unified Diff: components/constrained_window/BUILD.gn

Issue 658383003: Componentize Constrained Window Views (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: gn 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/constrained_window/BUILD.gn
diff --git a/components/auto_login_parser/BUILD.gn b/components/constrained_window/BUILD.gn
similarity index 50%
copy from components/auto_login_parser/BUILD.gn
copy to components/constrained_window/BUILD.gn
index b59919502b3e2d99ddd06c5821f6ec5eb25d25b1..1e8f9dd20369946a9a86290e70b78048720c3119 100644
--- a/components/auto_login_parser/BUILD.gn
+++ b/components/constrained_window/BUILD.gn
@@ -2,26 +2,27 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("auto_login_parser") {
+static_library("constrained_window") {
sources = [
- "auto_login_parser.cc",
- "auto_login_parser.h",
+ "constrained_window_views.cc",
msw 2014/10/22 21:32:43 Ditto: Shouldn't this list include constrained_win
oshima 2014/10/22 22:39:09 Done.
+ "constrained_window_views.h",
]
deps = [
- "//base",
- "//net",
+ "//components/web_modal",
+ "//ui/views",
+ "//skia",
msw 2014/10/22 21:32:43 Ditto: Skia doesn't appear to be used directly, is
]
}
source_set("unit_tests") {
testonly = true
sources = [
- "auto_login_parser_unittest.cc",
+ "constrained_window_views_unittest.cc",
]
deps = [
- ":auto_login_parser",
- "//testing/gtest",
+ ":constrained_window",
+ "//ui/views:test_support",
]
}

Powered by Google App Engine
This is Rietveld 408576698