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

Side by Side Diff: ui/events/events.gyp

Issue 342633003: [Android] Select text when stylus first button is pressed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed long press, addressed jared's comments Created 6 years, 5 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 '../gfx/x/gfx_x11.gyp:gfx_x11', 257 '../gfx/x/gfx_x11.gyp:gfx_x11',
258 ], 258 ],
259 }], 259 }],
260 ['OS=="ios"', { 260 ['OS=="ios"', {
261 # The cocoa files don't apply to iOS. 261 # The cocoa files don't apply to iOS.
262 'sources/': [['exclude', 'cocoa']], 262 'sources/': [['exclude', 'cocoa']],
263 }], 263 }],
264 ], 264 ],
265 }, 265 },
266 { 266 {
267 'target_name': 'mock_motion_event',
268 'type': 'static_library',
269 'dependencies': [
270 '<(DEPTH)/base/base.gyp:base',
271 'gesture_detection',
272 ],
273 'sources': [
274 'gesture_detection/mock_motion_event.h',
275 'gesture_detection/mock_motion_event.cc',
jdduke (slow) 2014/06/25 14:54:19 What if we move |mock_motion_event.{h,cc}| to ui/e
tdresser 2014/06/25 15:20:54 That sounds like a good plan to me.
Changwan Ryu 2014/06/26 00:05:27 Done.
276 ],
277 },
278 {
267 'target_name': 'events_unittests', 279 'target_name': 'events_unittests',
268 'type': '<(gtest_target_type)', 280 'type': '<(gtest_target_type)',
269 'dependencies': [ 281 'dependencies': [
270 '<(DEPTH)/base/base.gyp:base', 282 '<(DEPTH)/base/base.gyp:base',
271 '<(DEPTH)/base/base.gyp:run_all_unittests', 283 '<(DEPTH)/base/base.gyp:run_all_unittests',
272 '<(DEPTH)/base/base.gyp:test_support_base', 284 '<(DEPTH)/base/base.gyp:test_support_base',
273 '<(DEPTH)/skia/skia.gyp:skia', 285 '<(DEPTH)/skia/skia.gyp:skia',
274 '<(DEPTH)/testing/gtest.gyp:gtest', 286 '<(DEPTH)/testing/gtest.gyp:gtest',
275 '../gfx/gfx.gyp:gfx_geometry', 287 '../gfx/gfx.gyp:gfx_geometry',
276 '../gfx/gfx.gyp:gfx_test_support', 288 '../gfx/gfx.gyp:gfx_test_support',
277 'dom4_keycode_converter', 289 'dom4_keycode_converter',
278 'events', 290 'events',
279 'events_base', 291 'events_base',
280 'events_test_support', 292 'events_test_support',
281 'gesture_detection', 293 'gesture_detection',
294 'mock_motion_event',
282 'platform/events_platform.gyp:events_platform', 295 'platform/events_platform.gyp:events_platform',
283 ], 296 ],
284 'sources': [ 297 'sources': [
285 'cocoa/events_mac_unittest.mm', 298 'cocoa/events_mac_unittest.mm',
286 'event_dispatcher_unittest.cc', 299 'event_dispatcher_unittest.cc',
287 'event_processor_unittest.cc', 300 'event_processor_unittest.cc',
288 'event_rewriter_unittest.cc', 301 'event_rewriter_unittest.cc',
289 'event_unittest.cc', 302 'event_unittest.cc',
290 'gestures/motion_event_aura_unittest.cc', 303 'gestures/motion_event_aura_unittest.cc',
291 'gestures/velocity_calculator_unittest.cc', 304 'gestures/velocity_calculator_unittest.cc',
292 'gesture_detection/bitset_32_unittest.cc', 305 'gesture_detection/bitset_32_unittest.cc',
293 'gesture_detection/gesture_provider_unittest.cc', 306 'gesture_detection/gesture_provider_unittest.cc',
294 'gesture_detection/mock_motion_event.h',
295 'gesture_detection/mock_motion_event.cc',
296 'gesture_detection/velocity_tracker_unittest.cc', 307 'gesture_detection/velocity_tracker_unittest.cc',
297 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', 308 'gesture_detection/touch_disposition_gesture_filter_unittest.cc',
298 'keycodes/dom4/keycode_converter_unittest.cc', 309 'keycodes/dom4/keycode_converter_unittest.cc',
299 'latency_info_unittest.cc', 310 'latency_info_unittest.cc',
300 'platform/platform_event_source_unittest.cc', 311 'platform/platform_event_source_unittest.cc',
301 'x/events_x_unittest.cc', 312 'x/events_x_unittest.cc',
302 ], 313 ],
303 'conditions': [ 314 'conditions': [
304 ['use_ozone==1', { 315 ['use_ozone==1', {
305 'sources': [ 316 'sources': [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 ], 359 ],
349 'variables': { 360 'variables': {
350 'test_suite_name': 'events_unittests', 361 'test_suite_name': 'events_unittests',
351 }, 362 },
352 'includes': [ '../../build/apk_test.gypi' ], 363 'includes': [ '../../build/apk_test.gypi' ],
353 }, 364 },
354 ], 365 ],
355 }], 366 }],
356 ], 367 ],
357 } 368 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698