Index: examples/keyboard_client/BUILD.gn |
diff --git a/examples/wget/BUILD.gn b/examples/keyboard_client/BUILD.gn |
similarity index 60% |
copy from examples/wget/BUILD.gn |
copy to examples/keyboard_client/BUILD.gn |
index 59b2d60bc0bcb1a6475492a6888b0850d2b879bd..f1aed2f8d3d4657eb97e084538bb9d98325b006e 100644 |
--- a/examples/wget/BUILD.gn |
+++ b/examples/keyboard_client/BUILD.gn |
@@ -1,18 +1,19 @@ |
-# Copyright 2014 The Chromium Authors. All rights reserved. |
+# Copyright 2015 The Chromium Authors. All rights reserved. |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
import("//mojo/public/mojo_application.gni") |
-mojo_native_application("wget") { |
+mojo_native_application("keyboard_client") { |
+ sources = [ |
+ "keyboard_client.cc", |
+ ] |
+ |
deps = [ |
+ "//base", |
"//mojo/public/cpp/application:standalone", |
"//mojo/public/cpp/bindings", |
"//mojo/public/cpp/utility", |
- "//mojo/services/network/public/interfaces", |
- ] |
- |
- sources = [ |
- "wget.cc", |
+ "//mojo/services/keyboard/public/interfaces", |
] |
} |