OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'ui_touch_selection', | 11 'target_name': 'ui_touch_selection', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
15 '../base/ui_base.gyp:ui_base', | 15 '../base/ui_base.gyp:ui_base', |
16 '../events/events.gyp:events', | 16 '../events/events.gyp:events', |
17 '../events/events.gyp:gesture_detection', | 17 '../events/events.gyp:gesture_detection', |
18 '../gfx/gfx.gyp:gfx_geometry', | 18 '../gfx/gfx.gyp:gfx_geometry', |
19 ], | 19 ], |
20 'defines': [ | 20 'defines': [ |
21 'UI_TOUCH_SELECTION_IMPLEMENTATION', | 21 'UI_TOUCH_SELECTION_IMPLEMENTATION', |
22 ], | 22 ], |
23 'sources': [ | 23 'sources': [ |
| 24 'longpress_drag_selector.cc', |
| 25 'longpress_drag_selector.h', |
24 'selection_event_type.h', | 26 'selection_event_type.h', |
25 'touch_handle.cc', | 27 'touch_handle.cc', |
26 'touch_handle.h', | 28 'touch_handle.h', |
27 'touch_handle_orientation.h', | 29 'touch_handle_orientation.h', |
28 'touch_selection_controller.cc', | 30 'touch_selection_controller.cc', |
29 'touch_selection_controller.h', | 31 'touch_selection_controller.h', |
| 32 'touch_selection_draggable.h', |
30 'ui_touch_selection_export.h', | 33 'ui_touch_selection_export.h', |
31 ], | 34 ], |
32 'include_dirs': [ | 35 'include_dirs': [ |
33 '../..', | 36 '../..', |
34 ], | 37 ], |
35 }, | 38 }, |
36 { | 39 { |
37 'target_name': 'ui_touch_selection_unittests', | 40 'target_name': 'ui_touch_selection_unittests', |
38 'type': '<(gtest_target_type)', | 41 'type': '<(gtest_target_type)', |
39 'dependencies': [ | 42 'dependencies': [ |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'dependencies': [ | 118 'dependencies': [ |
116 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 119 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
117 ], | 120 ], |
118 }], | 121 }], |
119 ], | 122 ], |
120 }, | 123 }, |
121 ], | 124 ], |
122 }], | 125 }], |
123 ], | 126 ], |
124 } | 127 } |
OLD | NEW |