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

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

Issue 280833002: Re-land "Issue 191223007: Move touch CTM from X into Chrome" (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: adding missing file again Created 6 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
« no previous file with comments | « ui/events/event.cc ('k') | ui/events/test/events_test_utils_x11.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
11 'target_name': 'dom4_keycode_converter', 11 'target_name': 'dom4_keycode_converter',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '<(DEPTH)/base/base.gyp:base', 14 '<(DEPTH)/base/base.gyp:base',
15 ], 15 ],
16 'sources': [ 16 'sources': [
17 'keycodes/dom4/keycode_converter.cc', 17 'keycodes/dom4/keycode_converter.cc',
18 'keycodes/dom4/keycode_converter.h', 18 'keycodes/dom4/keycode_converter.h',
19 'keycodes/dom4/keycode_converter_data.h', 19 'keycodes/dom4/keycode_converter_data.h',
20 ], 20 ],
21 }, 21 },
22 { 22 {
23 'target_name': 'events_base', 23 'target_name': 'events_base',
24 'type': '<(component)', 24 'type': '<(component)',
25 'dependencies': [ 25 'dependencies': [
26 '<(DEPTH)/base/base.gyp:base', 26 '<(DEPTH)/base/base.gyp:base',
27 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 27 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
28 '<(DEPTH)/skia/skia.gyp:skia',
28 '../gfx/gfx.gyp:gfx', 29 '../gfx/gfx.gyp:gfx',
29 '../gfx/gfx.gyp:gfx_geometry', 30 '../gfx/gfx.gyp:gfx_geometry',
30 'dom4_keycode_converter', 31 'dom4_keycode_converter',
31 ], 32 ],
32 'defines': [ 33 'defines': [
33 'EVENTS_BASE_IMPLEMENTATION', 34 'EVENTS_BASE_IMPLEMENTATION',
34 ], 35 ],
35 'sources': [ 36 'sources': [
36 'event_constants.h', 37 'event_constants.h',
37 'event_switches.cc', 38 'event_switches.cc',
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 'sources': [ 288 'sources': [
288 'gesture_detection/gesture_config_helper.cc', 289 'gesture_detection/gesture_config_helper.cc',
289 ], 290 ],
290 }], 291 }],
291 ], 292 ],
292 }, 293 },
293 { 294 {
294 'target_name': 'events_test_support', 295 'target_name': 'events_test_support',
295 'type': 'static_library', 296 'type': 'static_library',
296 'dependencies': [ 297 'dependencies': [
298 '<(DEPTH)/skia/skia.gyp:skia',
297 'events', 299 'events',
298 'events_base', 300 'events_base',
299 ], 301 ],
300 'sources': [ 302 'sources': [
301 'test/cocoa_test_event_utils.h', 303 'test/cocoa_test_event_utils.h',
302 'test/cocoa_test_event_utils.mm', 304 'test/cocoa_test_event_utils.mm',
303 'test/events_test_utils.cc', 305 'test/events_test_utils.cc',
304 'test/events_test_utils.h', 306 'test/events_test_utils.h',
305 'test/events_test_utils_x11.cc', 307 'test/events_test_utils_x11.cc',
306 'test/events_test_utils_x11.h', 308 'test/events_test_utils_x11.h',
(...skipping 19 matching lines...) Expand all
326 }], 328 }],
327 ], 329 ],
328 }, 330 },
329 { 331 {
330 'target_name': 'events_unittests', 332 'target_name': 'events_unittests',
331 'type': '<(gtest_target_type)', 333 'type': '<(gtest_target_type)',
332 'dependencies': [ 334 'dependencies': [
333 '<(DEPTH)/base/base.gyp:base', 335 '<(DEPTH)/base/base.gyp:base',
334 '<(DEPTH)/base/base.gyp:run_all_unittests', 336 '<(DEPTH)/base/base.gyp:run_all_unittests',
335 '<(DEPTH)/base/base.gyp:test_support_base', 337 '<(DEPTH)/base/base.gyp:test_support_base',
338 '<(DEPTH)/skia/skia.gyp:skia',
336 '<(DEPTH)/testing/gtest.gyp:gtest', 339 '<(DEPTH)/testing/gtest.gyp:gtest',
337 '../gfx/gfx.gyp:gfx_geometry', 340 '../gfx/gfx.gyp:gfx_geometry',
338 '../gfx/gfx.gyp:gfx_test_support', 341 '../gfx/gfx.gyp:gfx_test_support',
339 'dom4_keycode_converter', 342 'dom4_keycode_converter',
340 'events', 343 'events',
341 'events_base', 344 'events_base',
342 'events_test_support', 345 'events_test_support',
343 'gesture_detection' 346 'gesture_detection'
344 ], 347 ],
345 'sources': [ 348 'sources': [
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 ], 400 ],
398 'variables': { 401 'variables': {
399 'test_suite_name': 'events_unittests', 402 'test_suite_name': 'events_unittests',
400 }, 403 },
401 'includes': [ '../../build/apk_test.gypi' ], 404 'includes': [ '../../build/apk_test.gypi' ],
402 }, 405 },
403 ], 406 ],
404 }], 407 }],
405 ], 408 ],
406 } 409 }
OLDNEW
« no previous file with comments | « ui/events/event.cc ('k') | ui/events/test/events_test_utils_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698