Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(985)

Side by Side Diff: ui/touch_selection/ui_touch_selection.gyp

Issue 1087893003: Support longpress drag selection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 '../aura_extra/aura_extra.gyp:aura_extra', 16 '../aura_extra/aura_extra.gyp:aura_extra',
17 '../base/ui_base.gyp:ui_base', 17 '../base/ui_base.gyp:ui_base',
18 '../compositor/compositor.gyp:compositor', 18 '../compositor/compositor.gyp:compositor',
19 '../events/events.gyp:events', 19 '../events/events.gyp:events',
20 '../events/events.gyp:gesture_detection', 20 '../events/events.gyp:gesture_detection',
21 '../gfx/gfx.gyp:gfx', 21 '../gfx/gfx.gyp:gfx',
22 '../gfx/gfx.gyp:gfx_geometry', 22 '../gfx/gfx.gyp:gfx_geometry',
23 ], 23 ],
24 'defines': [ 24 'defines': [
25 'UI_TOUCH_SELECTION_IMPLEMENTATION', 25 'UI_TOUCH_SELECTION_IMPLEMENTATION',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 'longpress_drag_selector.cc',
29 'longpress_drag_selector.h',
28 'selection_event_type.h', 30 'selection_event_type.h',
29 'touch_handle.cc', 31 'touch_handle.cc',
30 'touch_handle.h', 32 'touch_handle.h',
31 'touch_handle_drawable_aura.cc', 33 'touch_handle_drawable_aura.cc',
32 'touch_handle_drawable_aura.h', 34 'touch_handle_drawable_aura.h',
33 'touch_handle_orientation.h', 35 'touch_handle_orientation.h',
34 'touch_selection_controller.cc', 36 'touch_selection_controller.cc',
35 'touch_selection_controller.h', 37 'touch_selection_controller.h',
38 'touch_selection_draggable.h',
36 'ui_touch_selection_export.h', 39 'ui_touch_selection_export.h',
37 ], 40 ],
38 'include_dirs': [ 41 'include_dirs': [
39 '../..', 42 '../..',
40 ], 43 ],
41 'conditions': [ 44 'conditions': [
42 ['use_aura==0', { 45 ['use_aura==0', {
43 'dependencies!': [ 46 'dependencies!': [
44 '../aura/aura.gyp:aura', 47 '../aura/aura.gyp:aura',
45 '../aura_extra/aura_extra.gyp:aura_extra', 48 '../aura_extra/aura_extra.gyp:aura_extra',
(...skipping 16 matching lines...) Expand all
62 '../../base/base.gyp:test_support_base', 65 '../../base/base.gyp:test_support_base',
63 '../../testing/gmock.gyp:gmock', 66 '../../testing/gmock.gyp:gmock',
64 '../../testing/gtest.gyp:gtest', 67 '../../testing/gtest.gyp:gtest',
65 '../base/ui_base.gyp:ui_base', 68 '../base/ui_base.gyp:ui_base',
66 '../events/events.gyp:events_test_support', 69 '../events/events.gyp:events_test_support',
67 '../gfx/gfx.gyp:gfx', 70 '../gfx/gfx.gyp:gfx',
68 '../gfx/gfx.gyp:gfx_test_support', 71 '../gfx/gfx.gyp:gfx_test_support',
69 'ui_touch_selection', 72 'ui_touch_selection',
70 ], 73 ],
71 'sources': [ 74 'sources': [
75 'longpress_drag_selector_unittest.cc',
72 'touch_handle_unittest.cc', 76 'touch_handle_unittest.cc',
73 'touch_selection_controller_unittest.cc', 77 'touch_selection_controller_unittest.cc',
74 ], 78 ],
75 'include_dirs': [ 79 'include_dirs': [
76 '../..', 80 '../..',
77 ], 81 ],
78 'conditions': [ 82 'conditions': [
79 ['OS == "android"', { 83 ['OS == "android"', {
80 'dependencies': [ 84 'dependencies': [
81 '../../testing/android/native_test.gyp:native_test_native_code', 85 '../../testing/android/native_test.gyp:native_test_native_code',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'dependencies': [ 139 'dependencies': [
136 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 140 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
137 ], 141 ],
138 }], 142 }],
139 ], 143 ],
140 }, 144 },
141 ], 145 ],
142 }], 146 }],
143 ], 147 ],
144 } 148 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698