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