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

Unified Diff: ui/chromeos/events/BUILD.gn

Issue 2724913002: Move chromeos::EventRewriter to //ui/chromeos/events (Closed)
Patch Set: Fix a typo Created 3 years, 9 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
« no previous file with comments | « remoting/client/normalizing_input_filter_cros.cc ('k') | ui/chromeos/events/event_rewriter_chromeos.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/chromeos/events/BUILD.gn
diff --git a/ui/chromeos/events/BUILD.gn b/ui/chromeos/events/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..79de0e155c12242435c43bcb0fc396fc3a4eb28a
--- /dev/null
+++ b/ui/chromeos/events/BUILD.gn
@@ -0,0 +1,32 @@
+# Copyright 2017 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("//build/config/ui.gni")
+import("//ui/ozone/ozone.gni")
+
+assert(is_chromeos)
+
+source_set("events") {
+ output_name = "ui_chromeos_events"
+ sources = [
+ "event_rewriter_chromeos.cc",
+ "event_rewriter_chromeos.h",
+ "pref_names.cc",
+ "pref_names.h",
+ ]
+ deps = [
+ "//base",
+ "//chromeos",
+ "//ui/base/ime",
+ "//ui/events",
+ "//ui/events:dom_keycode_converter",
+ "//ui/events/devices",
+ ]
+ if (use_x11 || ozone_platform_x11) {
+ deps += [
+ "//ui/base/x",
+ "//ui/events/keycodes:x11",
+ ]
+ }
+}
« no previous file with comments | « remoting/client/normalizing_input_filter_cros.cc ('k') | ui/chromeos/events/event_rewriter_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698