| OLD | NEW |
| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 'ozone/evdev/event_device_info.cc', | 134 'ozone/evdev/event_device_info.cc', |
| 135 'ozone/evdev/event_device_info.h', | 135 'ozone/evdev/event_device_info.h', |
| 136 'ozone/evdev/event_factory_evdev.cc', | 136 'ozone/evdev/event_factory_evdev.cc', |
| 137 'ozone/evdev/event_factory_evdev.h', | 137 'ozone/evdev/event_factory_evdev.h', |
| 138 'ozone/evdev/event_modifiers_evdev.cc', | 138 'ozone/evdev/event_modifiers_evdev.cc', |
| 139 'ozone/evdev/event_modifiers_evdev.h', | 139 'ozone/evdev/event_modifiers_evdev.h', |
| 140 'ozone/evdev/key_event_converter_evdev.cc', | 140 'ozone/evdev/key_event_converter_evdev.cc', |
| 141 'ozone/evdev/key_event_converter_evdev.h', | 141 'ozone/evdev/key_event_converter_evdev.h', |
| 142 'ozone/evdev/touch_event_converter_evdev.cc', | 142 'ozone/evdev/touch_event_converter_evdev.cc', |
| 143 'ozone/evdev/touch_event_converter_evdev.h', | 143 'ozone/evdev/touch_event_converter_evdev.h', |
| 144 'ozone/device_udev.cc', |
| 145 'ozone/device_udev.h', |
| 144 'ozone/event_factory_ozone.cc', | 146 'ozone/event_factory_ozone.cc', |
| 145 'ozone/event_factory_ozone.h', | 147 'ozone/event_factory_ozone.h', |
| 146 'ozone/events_ozone.cc', | 148 'ozone/events_ozone.cc', |
| 149 'ozone/monitor_udev.h', |
| 150 'ozone/scoped_udev.h', |
| 147 'platform/platform_event_dispatcher.h', | 151 'platform/platform_event_dispatcher.h', |
| 148 'platform/platform_event_observer.h', | 152 'platform/platform_event_observer.h', |
| 149 'platform/platform_event_source.cc', | 153 'platform/platform_event_source.cc', |
| 150 'platform/platform_event_source.h', | 154 'platform/platform_event_source.h', |
| 151 'platform/platform_event_source_stub.cc', | 155 'platform/platform_event_source_stub.cc', |
| 152 'platform/platform_event_types.h', | 156 'platform/platform_event_types.h', |
| 153 'platform/scoped_event_dispatcher.cc', | 157 'platform/scoped_event_dispatcher.cc', |
| 154 'platform/scoped_event_dispatcher.h', | 158 'platform/scoped_event_dispatcher.h', |
| 155 'platform/x11/x11_event_source.cc', | 159 'platform/x11/x11_event_source.cc', |
| 156 'platform/x11/x11_event_source.h', | 160 'platform/x11/x11_event_source.h', |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 ], | 220 ], |
| 217 'defines': [ | 221 'defines': [ |
| 218 'USE_EVDEV_GESTURES', | 222 'USE_EVDEV_GESTURES', |
| 219 ], | 223 ], |
| 220 }, { | 224 }, { |
| 221 'sources/': [ | 225 'sources/': [ |
| 222 ['exclude', '^ozone/evdev/libgestures_glue/'], | 226 ['exclude', '^ozone/evdev/libgestures_glue/'], |
| 223 ], | 227 ], |
| 224 }], | 228 }], |
| 225 ['use_udev==0', { | 229 ['use_udev==0', { |
| 226 'sources!': [ | 230 'sources/': [ |
| 227 'ozone/evdev/device_manager_udev.cc', | 231 ['exclude', '_udev\\.(h|cc)$'], |
| 228 'ozone/evdev/device_manager_udev.h', | |
| 229 ], | 232 ], |
| 230 }], | 233 }], |
| 231 ], | 234 ], |
| 232 }, | 235 }, |
| 233 { | 236 { |
| 234 'target_name': 'gesture_detection', | 237 'target_name': 'gesture_detection', |
| 235 'type': '<(component)', | 238 'type': '<(component)', |
| 236 'dependencies': [ | 239 'dependencies': [ |
| 237 '<(DEPTH)/base/base.gyp:base', | 240 '<(DEPTH)/base/base.gyp:base', |
| 238 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 241 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 ], | 395 ], |
| 393 'variables': { | 396 'variables': { |
| 394 'test_suite_name': 'events_unittests', | 397 'test_suite_name': 'events_unittests', |
| 395 }, | 398 }, |
| 396 'includes': [ '../../build/apk_test.gypi' ], | 399 'includes': [ '../../build/apk_test.gypi' ], |
| 397 }, | 400 }, |
| 398 ], | 401 ], |
| 399 }], | 402 }], |
| 400 ], | 403 ], |
| 401 } | 404 } |
| OLD | NEW |