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

Unified Diff: examples/authentication_demo/BUILD.gn

Issue 1466733002: Google OAuth Device Flow support for FNL (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 10 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: examples/authentication_demo/BUILD.gn
diff --git a/examples/wget/BUILD.gn b/examples/authentication_demo/BUILD.gn
similarity index 64%
copy from examples/wget/BUILD.gn
copy to examples/authentication_demo/BUILD.gn
index 8d048d1ef624e5e4382ec2999ac0da61a793d667..4b534dcd5ad10b2096d4ebe6c90cdc74de7b0106 100644
--- a/examples/wget/BUILD.gn
+++ b/examples/authentication_demo/BUILD.gn
@@ -4,15 +4,18 @@
import("//mojo/public/mojo_application.gni")
-mojo_native_application("wget") {
+mojo_native_application("authentication_demo") {
+ sources = [
+ "google_authentication_demo.cc",
+ ]
+
deps = [
+ "//base",
+ "//mojo/common",
"//mojo/public/cpp/application:standalone",
"//mojo/public/cpp/bindings",
+ "//mojo/public/cpp/system",
"//mojo/public/cpp/utility",
- "//mojo/services/network/interfaces",
- ]
-
- sources = [
- "wget.cc",
+ "//mojo/services/authentication/interfaces",
]
}

Powered by Google App Engine
This is Rietveld 408576698