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

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

Issue 24788002: events: Make it a separate component from ui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'events',
12 'type': '<(component)',
13 'dependencies': [
14 '<(DEPTH)/base/base.gyp:base',
15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
16 '<(DEPTH)/skia/skia.gyp:skia',
17 ],
18 'defines': [
19 'EVENTS_IMPLEMENTATION',
20 ],
21 'sources': [
22 'event.cc',
23 'event.h',
24 'event_constants.h',
25 'event_dispatcher.cc',
26 'event_dispatcher.h',
27 'event_handler.cc',
28 'event_handler.h',
29 'event_switches.cc',
30 'event_switches.h',
31 'event_target.cc',
32 'event_target.h',
33 'event_utils.cc',
34 'event_utils.h',
35 'events_export.h',
36 'gestures/gesture_configuration.cc',
37 'gestures/gesture_configuration.h',
38 'gestures/gesture_point.cc',
39 'gestures/gesture_point.h',
40 'gestures/gesture_recognizer.h',
41 'gestures/gesture_recognizer_impl.cc',
42 'gestures/gesture_recognizer_impl.h',
43 'gestures/gesture_sequence.cc',
44 'gestures/gesture_sequence.h',
45 'gestures/gesture_types.cc',
46 'gestures/gesture_types.h',
47 'gestures/gesture_util.cc',
48 'gestures/gesture_util.h',
49 'gestures/velocity_calculator.cc',
50 'gestures/velocity_calculator.h',
51 'keycodes/keyboard_code_conversion.cc',
52 'keycodes/keyboard_code_conversion.h',
53 'keycodes/keyboard_code_conversion_android.cc',
54 'keycodes/keyboard_code_conversion_android.h',
55 'keycodes/keyboard_code_conversion_gtk.cc',
56 'keycodes/keyboard_code_conversion_gtk.h',
57 'keycodes/keyboard_code_conversion_mac.h',
58 'keycodes/keyboard_code_conversion_mac.mm',
59 'keycodes/keyboard_code_conversion_win.cc',
60 'keycodes/keyboard_code_conversion_win.h',
61 'keycodes/keyboard_code_conversion_x.cc',
62 'keycodes/keyboard_code_conversion_x.h',
63 'keycodes/keyboard_codes.h',
64 'latency_info.cc',
65 'latency_info.h',
66 'ozone/evdev/key_event_converter_ozone.cc',
67 'ozone/evdev/key_event_converter_ozone.h',
68 'ozone/evdev/touch_event_converter_ozone.cc',
69 'ozone/evdev/touch_event_converter_ozone.h',
70 'ozone/event_converter_ozone.cc',
71 'ozone/event_converter_ozone.h',
72 'ozone/event_factory_delegate_ozone.h',
73 'ozone/event_factory_ozone.cc',
74 'ozone/event_factory_ozone.h',
75 'ozone/events_ozone.cc',
76 'win/events_win.cc',
77 'x/device_data_manager.cc',
78 'x/device_data_manager.h',
79 'x/device_list_cache_x.cc',
80 'x/device_list_cache_x.h',
81 'x/events_x.cc',
82 'x/events_x_utils.cc',
83 'x/events_x_utils.h',
84 'x/touch_factory_x11.cc',
85 'x/touch_factory_x11.h',
86 ],
87 'conditions': [
88 ['use_aura==0 and toolkit_views==0', {
89 'sources/': [
90 ['exclude', '^gestures/*'],
91 ]
92 }],
93 ['toolkit_views==0', {
94 'sources!': [
95 'event.cc',
96 'event.h',
97 'event_dispatcher.cc',
98 'event_dispatcher.h',
99 'event_handler.cc',
100 'event_handler.h',
101 'event_target.cc',
102 'event_target.h',
103 ],
104 }],
105 ['OS=="android"', {
106 'sources!': [
107 'event_utils.cc',
108 'keycodes/keyboard_code_conversion.cc',
109 ],
110 }],
111 ['use_x11==1', {
112 'dependencies': [
113 '<(DEPTH)/build/linux/system.gyp:x11',
114 ],
115 }],
116 ],
117 }
118 ],
119 }
OLDNEW
« cc/cc.gyp ('K') | « ui/aura/aura.gyp ('k') | ui/events/events_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698