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

Side by Side 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 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 source_set("web_input") {
6 sources = [
7 "input_handler_proxy.cc",
8 "input_handler_proxy.h",
9 "input_handler_proxy_client.h",
10 "input_scroll_elasticity_controller.cc",
11 "input_scroll_elasticity_controller.h",
12 "synchronous_input_handler_proxy.h",
13 ]
14
15 deps = [
16 "//base",
17 "//cc:cc",
18 "//third_party/WebKit/public:blink_headers",
19 "//ui/events:events_base",
20 "//ui/gfx",
21 ]
22 }
23
24 source_set("unit_tests") {
25 testonly = true
26 sources = [
27 "input_handler_proxy_unittest.cc",
28 "input_scroll_elasticity_controller_unittest.cc",
29 ]
30
31 deps = [
32 ":web_input",
33 "//testing/gmock",
34 "//testing/gtest",
35 ]
36 }
OLDNEW
« 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