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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'web_input',
9 'type': 'static_library',
10 'dependencies': [
11 '../base/base.gyp:base',
12 '../cc/cc.gyp:cc',
13 '../third_party/WebKit/public/blink_headers.gyp:blink_headers',
14 '../ui/events/events.gyp:events_base',
15 '../ui/gfx/gfx.gyp:gfx',
16 ],
17 'include_dirs': [
18 '..',
19 ],
20 'sources': [
21 'web_input/input_handler_proxy_client.h',
22 'web_input/input_handler_proxy.cc',
23 'web_input/input_handler_proxy.h',
24 'web_input/input_scroll_elasticity_controller.cc',
25 'web_input/input_scroll_elasticity_controller.h',
26 'web_input/synchronous_input_handler_proxy.h',
27 ],
28 },
29 ],
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698