Index: components/ownership/BUILD.gn |
diff --git a/components/auto_login_parser/BUILD.gn b/components/ownership/BUILD.gn |
similarity index 52% |
copy from components/auto_login_parser/BUILD.gn |
copy to components/ownership/BUILD.gn |
index af92f0fa5483d43264361ea87dbaf59e2f9ac945..21014a880a0e126e0f10617c2fc83e078fdb0347 100644 |
--- a/components/auto_login_parser/BUILD.gn |
+++ b/components/ownership/BUILD.gn |
@@ -2,25 +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("ownership") { |
sources = [ |
- "auto_login_parser.cc", |
- "auto_login_parser.h", |
+ "owner_key_util.cc", |
+ "owner_key_util.h", |
+ "owner_key_util_impl.cc", |
+ "owner_key_util_impl.h", |
+ ] |
+ |
+ defines = [ |
+ "OWNERSHIP_IMPLEMENTATION" |
] |
deps = [ |
"//base", |
- "//net", |
+ "//crypto", |
] |
} |
source_set("unit_tests") { |
- sources = [ |
- "auto_login_parser_unittest.cc", |
- ] |
+ sources = ["owner_key_util_impl_unittest.cc"] |
deps = [ |
- ":auto_login_parser", |
+ ":ownership", |
"//testing/gtest", |
] |
} |