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

Unified Diff: examples/keyboard_client/BUILD.gn

Issue 1139453002: Initial native keyboard proof of concept. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fixed build. Created 5 years, 7 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/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",
]
}

Powered by Google App Engine
This is Rietveld 408576698