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

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

Issue 191223007: Move touch CTM from X into Chrome (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: move CTM update code into a separate file ash/touch/touch_ctm_controller.cc Created 6 years, 9 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'keycodes/keyboard_code_conversion_gtk.h', 43 'keycodes/keyboard_code_conversion_gtk.h',
44 'keycodes/keyboard_code_conversion_mac.h', 44 'keycodes/keyboard_code_conversion_mac.h',
45 'keycodes/keyboard_code_conversion_mac.mm', 45 'keycodes/keyboard_code_conversion_mac.mm',
46 'keycodes/keyboard_code_conversion_win.cc', 46 'keycodes/keyboard_code_conversion_win.cc',
47 'keycodes/keyboard_code_conversion_win.h', 47 'keycodes/keyboard_code_conversion_win.h',
48 'keycodes/keyboard_code_conversion_x.cc', 48 'keycodes/keyboard_code_conversion_x.cc',
49 'keycodes/keyboard_code_conversion_x.h', 49 'keycodes/keyboard_code_conversion_x.h',
50 'keycodes/keyboard_codes.h', 50 'keycodes/keyboard_codes.h',
51 'latency_info.cc', 51 'latency_info.cc',
52 'latency_info.h', 52 'latency_info.h',
53 'touch_ctm.h',
54 'touch_ctm.cc',
53 'x/device_list_cache_x.cc', 55 'x/device_list_cache_x.cc',
54 'x/device_list_cache_x.h', 56 'x/device_list_cache_x.h',
55 'x/device_data_manager.cc', 57 'x/device_data_manager.cc',
56 'x/device_data_manager.h', 58 'x/device_data_manager.h',
57 'x/touch_factory_x11.cc', 59 'x/touch_factory_x11.cc',
58 'x/touch_factory_x11.h', 60 'x/touch_factory_x11.h',
59 ], 61 ],
60 'conditions': [ 62 'conditions': [
61 ['use_x11==1', { 63 ['use_x11==1', {
62 'dependencies': [ 64 'dependencies': [
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 'variables': { 323 'variables': {
322 'test_suite_name': 'events_unittests', 324 'test_suite_name': 'events_unittests',
323 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un ittests<(SHARED_LIB_SUFFIX)', 325 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un ittests<(SHARED_LIB_SUFFIX)',
324 }, 326 },
325 'includes': [ '../../build/apk_test.gypi' ], 327 'includes': [ '../../build/apk_test.gypi' ],
326 }, 328 },
327 ], 329 ],
328 }], 330 }],
329 ], 331 ],
330 } 332 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698