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", |
+ ] |
+} |