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 '../../skia/skia.gyp:skia', | 15 '../../skia/skia.gyp:skia', |
16 '../aura/aura.gyp:aura', | 16 '../aura/aura.gyp:aura', |
17 '../aura_extra/aura_extra.gyp:aura_extra', | 17 '../aura_extra/aura_extra.gyp:aura_extra', |
18 '../base/ui_base.gyp:ui_base', | 18 '../base/ui_base.gyp:ui_base', |
19 '../compositor/compositor.gyp:compositor', | 19 '../compositor/compositor.gyp:compositor', |
20 '../events/events.gyp:events', | 20 '../events/events.gyp:events', |
21 '../events/events.gyp:gesture_detection', | 21 '../events/events.gyp:gesture_detection', |
22 '../gfx/gfx.gyp:gfx', | 22 '../gfx/gfx.gyp:gfx', |
23 '../gfx/gfx.gyp:gfx_geometry', | 23 '../gfx/gfx.gyp:gfx_geometry', |
24 ], | 24 ], |
25 'defines': [ | 25 'defines': [ |
26 'UI_TOUCH_SELECTION_IMPLEMENTATION', | 26 'UI_TOUCH_SELECTION_IMPLEMENTATION', |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
| 29 'longpress_drag_selector.cc', |
| 30 'longpress_drag_selector.h', |
29 'selection_event_type.h', | 31 'selection_event_type.h', |
30 'touch_handle.cc', | 32 'touch_handle.cc', |
31 'touch_handle.h', | 33 'touch_handle.h', |
32 'touch_handle_drawable_aura.cc', | 34 'touch_handle_drawable_aura.cc', |
33 'touch_handle_drawable_aura.h', | 35 'touch_handle_drawable_aura.h', |
34 'touch_handle_orientation.h', | 36 'touch_handle_orientation.h', |
35 'touch_selection_controller.cc', | 37 'touch_selection_controller.cc', |
36 'touch_selection_controller.h', | 38 'touch_selection_controller.h', |
| 39 'touch_selection_draggable.h', |
37 'touch_selection_menu_runner.cc', | 40 'touch_selection_menu_runner.cc', |
38 'touch_selection_menu_runner.h', | 41 'touch_selection_menu_runner.h', |
39 'ui_touch_selection_export.h', | 42 'ui_touch_selection_export.h', |
40 ], | 43 ], |
41 'include_dirs': [ | 44 'include_dirs': [ |
42 '../..', | 45 '../..', |
43 ], | 46 ], |
44 'conditions': [ | 47 'conditions': [ |
45 ['use_aura==0', { | 48 ['use_aura==0', { |
46 'dependencies!': [ | 49 'dependencies!': [ |
(...skipping 21 matching lines...) Expand all Loading... |
68 '../../base/base.gyp:test_support_base', | 71 '../../base/base.gyp:test_support_base', |
69 '../../testing/gmock.gyp:gmock', | 72 '../../testing/gmock.gyp:gmock', |
70 '../../testing/gtest.gyp:gtest', | 73 '../../testing/gtest.gyp:gtest', |
71 '../base/ui_base.gyp:ui_base', | 74 '../base/ui_base.gyp:ui_base', |
72 '../events/events.gyp:events_test_support', | 75 '../events/events.gyp:events_test_support', |
73 '../gfx/gfx.gyp:gfx', | 76 '../gfx/gfx.gyp:gfx', |
74 '../gfx/gfx.gyp:gfx_test_support', | 77 '../gfx/gfx.gyp:gfx_test_support', |
75 'ui_touch_selection', | 78 'ui_touch_selection', |
76 ], | 79 ], |
77 'sources': [ | 80 'sources': [ |
| 81 'longpress_drag_selector_unittest.cc', |
78 'touch_handle_unittest.cc', | 82 'touch_handle_unittest.cc', |
79 'touch_selection_controller_unittest.cc', | 83 'touch_selection_controller_unittest.cc', |
80 ], | 84 ], |
81 'include_dirs': [ | 85 'include_dirs': [ |
82 '../..', | 86 '../..', |
83 ], | 87 ], |
84 'conditions': [ | 88 'conditions': [ |
85 ['OS == "android"', { | 89 ['OS == "android"', { |
86 'dependencies': [ | 90 'dependencies': [ |
87 '../../testing/android/native_test.gyp:native_test_native_code', | 91 '../../testing/android/native_test.gyp:native_test_native_code', |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 'dependencies': [ | 145 'dependencies': [ |
142 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 146 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
143 ], | 147 ], |
144 }], | 148 }], |
145 ], | 149 ], |
146 }, | 150 }, |
147 ], | 151 ], |
148 }], | 152 }], |
149 ], | 153 ], |
150 } | 154 } |
OLD | NEW |