| 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",
|
| ]
|
| }
|
|
|