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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
193 'events', | 193 'events', |
194 'gesture_detection', | 194 'gesture_detection', |
195 ], | 195 ], |
196 'sources': [ | 196 'sources': [ |
197 # Note: sources list duplicated in GN build. | 197 # Note: sources list duplicated in GN build. |
198 'blink/blink_event_util.cc', | 198 'blink/blink_event_util.cc', |
199 'blink/blink_event_util.h', | 199 'blink/blink_event_util.h', |
200 ], | 200 ], |
201 }, | 201 }, |
202 { | 202 { |
203 # GN version: //ui/events/gestures/blink | |
204 'target_name': 'gestures_blink', | |
205 'type': 'static_library', | |
sadrul
2015/04/02 15:40:20
Any reason this isn't component?
| |
206 'dependencies': [ | |
207 '../../base/base.gyp:base', | |
208 '../../third_party/WebKit/public/blink_headers.gyp:blink_headers', | |
209 '../gfx/gfx.gyp:gfx_geometry', | |
210 'events', | |
211 'gesture_detection', | |
212 ], | |
213 'sources': [ | |
214 # Note: sources list duplicated in GN build. | |
215 'gestures/blink/web_gesture_curve_impl.cc', | |
216 'gestures/blink/web_gesture_curve_impl.h', | |
217 ], | |
218 }, | |
219 { | |
203 # GN version: //ui/events:gesture_detection | 220 # GN version: //ui/events:gesture_detection |
204 'target_name': 'gesture_detection', | 221 'target_name': 'gesture_detection', |
205 'type': '<(component)', | 222 'type': '<(component)', |
206 'dependencies': [ | 223 'dependencies': [ |
207 '<(DEPTH)/base/base.gyp:base', | 224 '<(DEPTH)/base/base.gyp:base', |
208 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', | 225 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', |
209 '../gfx/gfx.gyp:gfx', | 226 '../gfx/gfx.gyp:gfx', |
210 '../gfx/gfx.gyp:gfx_geometry', | 227 '../gfx/gfx.gyp:gfx_geometry', |
211 'events_base', | 228 'events_base', |
212 ], | 229 ], |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
323 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 340 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
324 '../gfx/gfx.gyp:gfx', | 341 '../gfx/gfx.gyp:gfx', |
325 '../gfx/gfx.gyp:gfx_geometry', | 342 '../gfx/gfx.gyp:gfx_geometry', |
326 '../gfx/gfx.gyp:gfx_test_support', | 343 '../gfx/gfx.gyp:gfx_test_support', |
327 'devices/events_devices.gyp:events_devices', | 344 'devices/events_devices.gyp:events_devices', |
328 'dom4_keycode_converter', | 345 'dom4_keycode_converter', |
329 'events', | 346 'events', |
330 'events_base', | 347 'events_base', |
331 'events_test_support', | 348 'events_test_support', |
332 'gesture_detection', | 349 'gesture_detection', |
350 'gestures_blink', | |
333 'platform/events_platform.gyp:events_platform', | 351 'platform/events_platform.gyp:events_platform', |
334 ], | 352 ], |
335 'sources': [ | 353 'sources': [ |
336 # Note: sources list duplicated in GN build. | 354 # Note: sources list duplicated in GN build. |
337 'android/scroller_unittest.cc', | 355 'android/scroller_unittest.cc', |
338 'cocoa/events_mac_unittest.mm', | 356 'cocoa/events_mac_unittest.mm', |
339 'devices/x11/device_data_manager_x11_unittest.cc', | 357 'devices/x11/device_data_manager_x11_unittest.cc', |
340 'event_dispatcher_unittest.cc', | 358 'event_dispatcher_unittest.cc', |
341 'event_processor_unittest.cc', | 359 'event_processor_unittest.cc', |
342 'event_rewriter_unittest.cc', | 360 'event_rewriter_unittest.cc', |
343 'event_unittest.cc', | 361 'event_unittest.cc', |
344 'gesture_detection/bitset_32_unittest.cc', | 362 'gesture_detection/bitset_32_unittest.cc', |
345 'gesture_detection/filtered_gesture_provider_unittest.cc', | 363 'gesture_detection/filtered_gesture_provider_unittest.cc', |
346 'gesture_detection/gesture_event_data_packet_unittest.cc', | 364 'gesture_detection/gesture_event_data_packet_unittest.cc', |
347 'gesture_detection/gesture_provider_unittest.cc', | 365 'gesture_detection/gesture_provider_unittest.cc', |
348 'gesture_detection/motion_event_buffer_unittest.cc', | 366 'gesture_detection/motion_event_buffer_unittest.cc', |
349 'gesture_detection/motion_event_generic_unittest.cc', | 367 'gesture_detection/motion_event_generic_unittest.cc', |
350 'gesture_detection/snap_scroll_controller_unittest.cc', | 368 'gesture_detection/snap_scroll_controller_unittest.cc', |
351 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', | 369 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', |
352 'gesture_detection/velocity_tracker_unittest.cc', | 370 'gesture_detection/velocity_tracker_unittest.cc', |
371 'gestures/blink/web_gesture_curve_impl_unittest.cc', | |
353 'gestures/fling_curve_unittest.cc', | 372 'gestures/fling_curve_unittest.cc', |
354 'gestures/gesture_provider_aura_unittest.cc', | 373 'gestures/gesture_provider_aura_unittest.cc', |
355 'gestures/motion_event_aura_unittest.cc', | 374 'gestures/motion_event_aura_unittest.cc', |
356 'keycodes/dom4/keycode_converter_unittest.cc', | 375 'keycodes/dom4/keycode_converter_unittest.cc', |
357 'latency_info_unittest.cc', | 376 'latency_info_unittest.cc', |
358 'platform/platform_event_source_unittest.cc', | 377 'platform/platform_event_source_unittest.cc', |
359 'x/events_x_unittest.cc', | 378 'x/events_x_unittest.cc', |
360 ], | 379 ], |
361 'include_dirs': [ | 380 'include_dirs': [ |
362 '../../testing/gmock/include', | 381 '../../testing/gmock/include', |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
452 'dependencies': [ | 471 'dependencies': [ |
453 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 472 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
454 ], | 473 ], |
455 }], | 474 }], |
456 ], | 475 ], |
457 }, | 476 }, |
458 ], | 477 ], |
459 }], | 478 }], |
460 ], | 479 ], |
461 } | 480 } |
OLD | NEW |