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

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

Issue 312393002: ozone: Move the factory interfaces into a common target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge-r278697 Created 6 years, 6 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/ozone/event_factory_ozone.cc ('k') | ui/gfx/ozone/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'target_name': 'events_ozone', 10 'target_name': 'events_ozone',
11 'type': '<(component)', 11 'type': '<(component)',
12 'dependencies': [ 12 'dependencies': [
13 '../../../base/base.gyp:base', 13 '../../../base/base.gyp:base',
14 ], 14 ],
15 'defines': [ 15 'defines': [
16 'EVENTS_OZONE_IMPLEMENTATION', 16 'EVENTS_OZONE_IMPLEMENTATION',
17 ], 17 ],
18 'sources': [ 18 'sources': [
19 'device/device_event.cc', 19 'device/device_event.cc',
20 'device/device_event.h', 20 'device/device_event.h',
21 'device/device_event_observer.h', 21 'device/device_event_observer.h',
22 'device/device_manager.cc', 22 'device/device_manager.cc',
23 'device/device_manager.h', 23 'device/device_manager.h',
24 'device/device_manager_manual.cc', 24 'device/device_manager_manual.cc',
25 'device/device_manager_manual.h', 25 'device/device_manager_manual.h',
26 'device/udev/device_manager_udev.cc', 26 'device/udev/device_manager_udev.cc',
27 'device/udev/device_manager_udev.h', 27 'device/udev/device_manager_udev.h',
28 'event_factory_ozone.cc',
29 'event_factory_ozone.h',
30 'events_ozone_export.h', 28 'events_ozone_export.h',
31 ], 29 ],
32 'conditions': [ 30 'conditions': [
33 ['use_udev==0', { 31 ['use_udev==0', {
34 'sources/': [ 32 'sources/': [
35 ['exclude', '_udev\\.(h|cc)$'], 33 ['exclude', '_udev\\.(h|cc)$'],
36 ], 34 ],
37 }], 35 }],
38 ['use_ozone_evdev==1 and use_udev==1', { 36 ['use_ozone_evdev==1 and use_udev==1', {
39 'dependencies': [ 37 'dependencies': [
40 '<(DEPTH)/device/udev_linux/udev.gyp:udev_linux', 38 '<(DEPTH)/device/udev_linux/udev.gyp:udev_linux',
41 ], 39 ],
42 }], 40 }],
43 ], 41 ],
44 }, { 42 }, {
45 'target_name': 'events_ozone_evdev', 43 'target_name': 'events_ozone_evdev',
46 'type': '<(component)', 44 'type': '<(component)',
47 'dependencies': [ 45 'dependencies': [
48 '../../../base/base.gyp:base', 46 '../../../base/base.gyp:base',
49 '../../gfx/gfx.gyp:gfx', 47 '../../gfx/gfx.gyp:gfx',
48 '../../ozone/ozone.gyp:ozone_base',
50 '../platform/events_platform.gyp:events_platform', 49 '../platform/events_platform.gyp:events_platform',
51 'events_ozone', 50 'events_ozone',
52 ], 51 ],
53 'defines': [ 52 'defines': [
54 'EVENTS_OZONE_EVDEV_IMPLEMENTATION', 53 'EVENTS_OZONE_EVDEV_IMPLEMENTATION',
55 ], 54 ],
56 'sources': [ 55 'sources': [
57 'evdev/libgestures_glue/event_reader_libevdev_cros.cc', 56 'evdev/libgestures_glue/event_reader_libevdev_cros.cc',
58 'evdev/libgestures_glue/event_reader_libevdev_cros.h', 57 'evdev/libgestures_glue/event_reader_libevdev_cros.h',
59 'evdev/libgestures_glue/gesture_interpreter_libevdev_cros.cc', 58 'evdev/libgestures_glue/gesture_interpreter_libevdev_cros.cc',
(...skipping 29 matching lines...) Expand all
89 'sources/': [ 88 'sources/': [
90 ['exclude', '^evdev/libgestures_glue/'], 89 ['exclude', '^evdev/libgestures_glue/'],
91 ], 90 ],
92 }], 91 }],
93 ['use_ozone_evdev==1', { 92 ['use_ozone_evdev==1', {
94 'defines': ['USE_OZONE_EVDEV=1'], 93 'defines': ['USE_OZONE_EVDEV=1'],
95 }], 94 }],
96 ], 95 ],
97 }] 96 }]
98 } 97 }
OLDNEW
« no previous file with comments | « ui/events/ozone/event_factory_ozone.cc ('k') | ui/gfx/ozone/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698