OLD | NEW |
(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 } |
OLD | NEW |