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

Unified Diff: components/webauth/BUILD.gn

Issue 2788823002: Add the Mojo implementation of authenticator.mojom's MakeCredential. (Closed)
Patch Set: Removed dispose method Created 3 years, 8 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/webauth/BUILD.gn
diff --git a/components/webauth/BUILD.gn b/components/webauth/BUILD.gn
index 047ea805294f3ed7543dc0efcf271e235f5b0064..6773aa58d882ef574d58060ec51758922887ce0e 100644
--- a/components/webauth/BUILD.gn
+++ b/components/webauth/BUILD.gn
@@ -4,7 +4,22 @@
import("//mojo/public/tools/bindings/mojom.gni")
-mojom("authenticator") {
+source_set("authenticator") {
+ sources = [
+ "authenticator_impl.cc",
+ "authenticator_impl.h",
+ ]
+
+ deps = [
+ ":webauth",
+ "//base",
+ "//content/public/browser",
+ "//mojo/common",
+ "//mojo/public/cpp/bindings",
+ ]
+}
+
+mojom("webauth") {
sources = [
"authenticator.mojom",
]

Powered by Google App Engine
This is Rietveld 408576698