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

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

Issue 294943007: Merge 270252 "Re-land "Move touch CTM from X into Chrome"" (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1985/src/
Patch Set: 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 | Annotate | Revision Log
« 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 'sources': [ 306 'sources': [
306 'gesture_detection/gesture_config_helper.cc', 307 'gesture_detection/gesture_config_helper.cc',
307 ], 308 ],
308 }], 309 }],
309 ], 310 ],
310 }, 311 },
311 { 312 {
312 'target_name': 'events_test_support', 313 'target_name': 'events_test_support',
313 'type': 'static_library', 314 'type': 'static_library',
314 'dependencies': [ 315 'dependencies': [
316 '<(DEPTH)/skia/skia.gyp:skia',
315 'events', 317 'events',
316 'events_base', 318 'events_base',
317 ], 319 ],
318 'sources': [ 320 'sources': [
319 'test/cocoa_test_event_utils.h', 321 'test/cocoa_test_event_utils.h',
320 'test/cocoa_test_event_utils.mm', 322 'test/cocoa_test_event_utils.mm',
321 'test/events_test_utils.cc', 323 'test/events_test_utils.cc',
322 'test/events_test_utils.h', 324 'test/events_test_utils.h',
323 'test/events_test_utils_x11.cc', 325 'test/events_test_utils_x11.cc',
324 'test/events_test_utils_x11.h', 326 'test/events_test_utils_x11.h',
(...skipping 19 matching lines...) Expand all
344 }], 346 }],
345 ], 347 ],
346 }, 348 },
347 { 349 {
348 'target_name': 'events_unittests', 350 'target_name': 'events_unittests',
349 'type': '<(gtest_target_type)', 351 'type': '<(gtest_target_type)',
350 'dependencies': [ 352 'dependencies': [
351 '<(DEPTH)/base/base.gyp:base', 353 '<(DEPTH)/base/base.gyp:base',
352 '<(DEPTH)/base/base.gyp:run_all_unittests', 354 '<(DEPTH)/base/base.gyp:run_all_unittests',
353 '<(DEPTH)/base/base.gyp:test_support_base', 355 '<(DEPTH)/base/base.gyp:test_support_base',
356 '<(DEPTH)/skia/skia.gyp:skia',
354 '<(DEPTH)/testing/gtest.gyp:gtest', 357 '<(DEPTH)/testing/gtest.gyp:gtest',
355 '../gfx/gfx.gyp:gfx_geometry', 358 '../gfx/gfx.gyp:gfx_geometry',
356 '../gfx/gfx.gyp:gfx_test_support', 359 '../gfx/gfx.gyp:gfx_test_support',
357 'dom4_keycode_converter', 360 'dom4_keycode_converter',
358 'events', 361 'events',
359 'events_base', 362 'events_base',
360 'events_test_support', 363 'events_test_support',
361 'gesture_detection', 364 'gesture_detection',
362 ], 365 ],
363 'sources': [ 366 'sources': [
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 ], 425 ],
423 'variables': { 426 'variables': {
424 'test_suite_name': 'events_unittests', 427 'test_suite_name': 'events_unittests',
425 }, 428 },
426 'includes': [ '../../build/apk_test.gypi' ], 429 'includes': [ '../../build/apk_test.gypi' ],
427 }, 430 },
428 ], 431 ],
429 }], 432 }],
430 ], 433 ],
431 } 434 }
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