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

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

Issue 698253004: Reland: Implement Aura side of unified touch text selection for contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased after blink issue fixed: r200194 Created 5 years, 4 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
« no previous file with comments | « ui/touch_selection/touch_selection_controller_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'sources!': [ 56 'sources!': [
57 'touch_handle_drawable_aura.cc', 57 'touch_handle_drawable_aura.cc',
58 'touch_handle_drawable_aura.h', 58 'touch_handle_drawable_aura.h',
59 'touch_selection_menu_runner.cc', 59 'touch_selection_menu_runner.cc',
60 'touch_selection_menu_runner.h', 60 'touch_selection_menu_runner.h',
61 ], 61 ],
62 }], 62 }],
63 ], 63 ],
64 }, 64 },
65 { 65 {
66 'target_name': 'ui_touch_selection_test_support',
67 'type': 'static_library',
68 'dependencies': [
69 'ui_touch_selection',
70 ],
71 'sources': [
72 'touch_selection_controller_test_api.cc',
73 'touch_selection_controller_test_api.h',
74 ],
75 },
76 {
66 'target_name': 'ui_touch_selection_unittests', 77 'target_name': 'ui_touch_selection_unittests',
67 'type': '<(gtest_target_type)', 78 'type': '<(gtest_target_type)',
68 'dependencies': [ 79 'dependencies': [
69 '../../base/base.gyp:base', 80 '../../base/base.gyp:base',
70 '../../base/base.gyp:run_all_unittests', 81 '../../base/base.gyp:run_all_unittests',
71 '../../base/base.gyp:test_support_base', 82 '../../base/base.gyp:test_support_base',
72 '../../testing/gmock.gyp:gmock', 83 '../../testing/gmock.gyp:gmock',
73 '../../testing/gtest.gyp:gtest', 84 '../../testing/gtest.gyp:gtest',
74 '../base/ui_base.gyp:ui_base', 85 '../base/ui_base.gyp:ui_base',
75 '../events/events.gyp:events_test_support', 86 '../events/events.gyp:events_test_support',
76 '../gfx/gfx.gyp:gfx', 87 '../gfx/gfx.gyp:gfx',
77 '../gfx/gfx.gyp:gfx_test_support', 88 '../gfx/gfx.gyp:gfx_test_support',
78 'ui_touch_selection', 89 'ui_touch_selection',
90 'ui_touch_selection_test_support',
79 ], 91 ],
80 'sources': [ 92 'sources': [
81 'longpress_drag_selector_unittest.cc', 93 'longpress_drag_selector_unittest.cc',
82 'touch_handle_unittest.cc', 94 'touch_handle_unittest.cc',
83 'touch_selection_controller_unittest.cc', 95 'touch_selection_controller_unittest.cc',
84 ], 96 ],
85 'include_dirs': [ 97 'include_dirs': [
86 '../..', 98 '../..',
87 ], 99 ],
88 'conditions': [ 100 'conditions': [
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 'dependencies': [ 157 'dependencies': [
146 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 158 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
147 ], 159 ],
148 }], 160 }],
149 ], 161 ],
150 }, 162 },
151 ], 163 ],
152 }], 164 }],
153 ], 165 ],
154 } 166 }
OLDNEW
« no previous file with comments | « ui/touch_selection/touch_selection_controller_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698