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

Unified Diff: components/web_input/BUILD.gn

Issue 1415953004: Move content/renderer input handling for web input events to ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Component rename. Created 5 years, 1 month 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: components/web_input/BUILD.gn
diff --git a/components/web_input/BUILD.gn b/components/web_input/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..4eaafcc74d653d9631f70cca4c44e023ec994c91
--- /dev/null
+++ b/components/web_input/BUILD.gn
@@ -0,0 +1,36 @@
+# 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.
+
+source_set("web_input") {
+ sources = [
+ "input_handler_proxy.cc",
+ "input_handler_proxy.h",
+ "input_handler_proxy_client.h",
+ "input_scroll_elasticity_controller.cc",
+ "input_scroll_elasticity_controller.h",
+ "synchronous_input_handler_proxy.h",
+ ]
+
+ deps = [
+ "//base",
+ "//cc:cc",
+ "//third_party/WebKit/public:blink_headers",
+ "//ui/events:events_base",
+ "//ui/gfx",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "input_handler_proxy_unittest.cc",
+ "input_scroll_elasticity_controller_unittest.cc",
+ ]
+
+ deps = [
+ ":web_input",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « components/web_input.gypi ('k') | components/web_input/DEPS » ('j') | components/web_input/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698