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

Unified Diff: components/web_input.gypi

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.gypi
diff --git a/components/web_input.gypi b/components/web_input.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..427d67bd3a7ce4eef00afa160a81f8eb8437adb6
--- /dev/null
+++ b/components/web_input.gypi
@@ -0,0 +1,30 @@
+# 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'web_input',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../cc/cc.gyp:cc',
+ '../third_party/WebKit/public/blink_headers.gyp:blink_headers',
+ '../ui/events/events.gyp:events_base',
+ '../ui/gfx/gfx.gyp:gfx',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'web_input/input_handler_proxy_client.h',
+ 'web_input/input_handler_proxy.cc',
+ 'web_input/input_handler_proxy.h',
+ 'web_input/input_scroll_elasticity_controller.cc',
+ 'web_input/input_scroll_elasticity_controller.h',
+ 'web_input/synchronous_input_handler_proxy.h',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698