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

Unified Diff: components/login/BUILD.gn

Issue 672203003: ScreenContext is moved to components/login. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@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
« no previous file with comments | « components/login.gypi ('k') | components/login/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/login/BUILD.gn
diff --git a/components/auto_login_parser/BUILD.gn b/components/login/BUILD.gn
similarity index 53%
copy from components/auto_login_parser/BUILD.gn
copy to components/login/BUILD.gn
index b59919502b3e2d99ddd06c5821f6ec5eb25d25b1..12caf6ae019bc6033476920770435db06302c14d 100644
--- a/components/auto_login_parser/BUILD.gn
+++ b/components/login/BUILD.gn
@@ -2,26 +2,29 @@
# 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") {
+component("login") {
sources = [
- "auto_login_parser.cc",
- "auto_login_parser.h",
+ "base_screen_handler_utils.cc",
+ "base_screen_handler_utils.h",
+ "screens/screen_context.cc",
+ "screens/screen_context.h",
+ ]
+
+ defines = [
+ "LOGIN_IMPLEMENTATION"
]
deps = [
"//base",
- "//net",
]
}
source_set("unit_tests") {
testonly = true
- sources = [
- "auto_login_parser_unittest.cc",
- ]
+ sources = ["screens/screen_context_unittest.cc"]
deps = [
- ":auto_login_parser",
+ ":login",
"//testing/gtest",
]
}
« no previous file with comments | « components/login.gypi ('k') | components/login/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698