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 '../aura/aura.gyp:aura', | 15 '../aura/aura.gyp:aura', |
16 '../base/ui_base.gyp:ui_base', | 16 '../base/ui_base.gyp:ui_base', |
17 '../compositor/compositor.gyp:compositor', | 17 '../compositor/compositor.gyp:compositor', |
18 '../events/events.gyp:events', | 18 '../events/events.gyp:events', |
19 '../events/events.gyp:gesture_detection', | 19 '../events/events.gyp:gesture_detection', |
20 '../gfx/gfx.gyp:gfx', | 20 '../gfx/gfx.gyp:gfx', |
21 '../gfx/gfx.gyp:gfx_geometry', | 21 '../gfx/gfx.gyp:gfx_geometry', |
22 ], | 22 ], |
23 'defines': [ | 23 'defines': [ |
24 'UI_TOUCH_SELECTION_IMPLEMENTATION', | 24 'UI_TOUCH_SELECTION_IMPLEMENTATION', |
25 ], | 25 ], |
26 'sources': [ | 26 'sources': [ |
27 'selection_event_type.h', | 27 'selection_event_type.h', |
| 28 'selection_granularity.h', |
28 'touch_handle.cc', | 29 'touch_handle.cc', |
29 'touch_handle.h', | 30 'touch_handle.h', |
30 'touch_handle_drawable_aura.cc', | 31 'touch_handle_drawable_aura.cc', |
31 'touch_handle_drawable_aura.h', | 32 'touch_handle_drawable_aura.h', |
32 'touch_selection_controller.cc', | 33 'touch_selection_controller.cc', |
33 'touch_selection_controller.h', | 34 'touch_selection_controller.h', |
34 'touch_selection_controller_aura.cc', | 35 'touch_selection_controller_aura.cc', |
35 'touch_selection_controller_aura.h', | 36 'touch_selection_controller_aura.h', |
36 'touch_selection_menu_runner.cc', | 37 'touch_selection_menu_runner.cc', |
37 'touch_selection_menu_runner.h', | 38 'touch_selection_menu_runner.h', |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 'dependencies': [ | 132 'dependencies': [ |
132 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 133 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
133 ], | 134 ], |
134 }], | 135 }], |
135 ], | 136 ], |
136 }, | 137 }, |
137 ], | 138 ], |
138 }], | 139 }], |
139 ], | 140 ], |
140 } | 141 } |
OLD | NEW |