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

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: Code review 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 '../../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 'ui_touch_selection_export.h', 40 'ui_touch_selection_export.h',
38 ], 41 ],
39 'include_dirs': [ 42 'include_dirs': [
40 '../..', 43 '../..',
41 ], 44 ],
42 'conditions': [ 45 'conditions': [
43 ['use_aura==0', { 46 ['use_aura==0', {
44 'dependencies!': [ 47 'dependencies!': [
45 '../../skia/skia.gyp:skia', 48 '../../skia/skia.gyp:skia',
46 '../aura/aura.gyp:aura', 49 '../aura/aura.gyp:aura',
(...skipping 17 matching lines...) Expand all
64 '../../base/base.gyp:test_support_base', 67 '../../base/base.gyp:test_support_base',
65 '../../testing/gmock.gyp:gmock', 68 '../../testing/gmock.gyp:gmock',
66 '../../testing/gtest.gyp:gtest', 69 '../../testing/gtest.gyp:gtest',
67 '../base/ui_base.gyp:ui_base', 70 '../base/ui_base.gyp:ui_base',
68 '../events/events.gyp:events_test_support', 71 '../events/events.gyp:events_test_support',
69 '../gfx/gfx.gyp:gfx', 72 '../gfx/gfx.gyp:gfx',
70 '../gfx/gfx.gyp:gfx_test_support', 73 '../gfx/gfx.gyp:gfx_test_support',
71 'ui_touch_selection', 74 'ui_touch_selection',
72 ], 75 ],
73 'sources': [ 76 'sources': [
77 'longpress_drag_selector_unittest.cc',
74 'touch_handle_unittest.cc', 78 'touch_handle_unittest.cc',
75 'touch_selection_controller_unittest.cc', 79 'touch_selection_controller_unittest.cc',
76 ], 80 ],
77 'include_dirs': [ 81 'include_dirs': [
78 '../..', 82 '../..',
79 ], 83 ],
80 'conditions': [ 84 'conditions': [
81 ['OS == "android"', { 85 ['OS == "android"', {
82 'dependencies': [ 86 'dependencies': [
83 '../../testing/android/native_test.gyp:native_test_native_code', 87 '../../testing/android/native_test.gyp:native_test_native_code',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 'dependencies': [ 141 'dependencies': [
138 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 142 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
139 ], 143 ],
140 }], 144 }],
141 ], 145 ],
142 }, 146 },
143 ], 147 ],
144 }], 148 }],
145 ], 149 ],
146 } 150 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698