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

Unified Diff: components/ownership/BUILD.gn

Issue 494093002: OwnerKeyUtil is moved to components/ownership. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added public static OwnerSettingsService::MakeOwnerKeyUtil() method. Created 6 years, 4 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/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",
]
}

Powered by Google App Engine
This is Rietveld 408576698