| OLD | NEW |
| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 static_library("dom_keycode_converter") { | 8 static_library("dom_keycode_converter") { |
| 9 sources = [ | 9 sources = [ |
| 10 "keycodes/dom/dom_code.h", | 10 "keycodes/dom/dom_code.h", |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "event_handler.cc", | 98 "event_handler.cc", |
| 99 "event_handler.h", | 99 "event_handler.h", |
| 100 "event_processor.cc", | 100 "event_processor.cc", |
| 101 "event_processor.h", | 101 "event_processor.h", |
| 102 "event_rewriter.h", | 102 "event_rewriter.h", |
| 103 "event_source.cc", | 103 "event_source.cc", |
| 104 "event_source.h", | 104 "event_source.h", |
| 105 "event_target.cc", | 105 "event_target.cc", |
| 106 "event_target.h", | 106 "event_target.h", |
| 107 "event_target_iterator.h", | 107 "event_target_iterator.h", |
| 108 "event_targeter.cc", | |
| 109 "event_targeter.h", | 108 "event_targeter.h", |
| 110 "event_utils.cc", | 109 "event_utils.cc", |
| 111 "event_utils.h", | 110 "event_utils.h", |
| 112 "events_export.h", | 111 "events_export.h", |
| 113 "events_stub.cc", | 112 "events_stub.cc", |
| 114 "gestures/gesture_recognizer_impl_mac.cc", | 113 "gestures/gesture_recognizer_impl_mac.cc", |
| 115 "gestures/gesture_types.h", | 114 "gestures/gesture_types.h", |
| 116 "null_event_targeter.cc", | 115 "null_event_targeter.cc", |
| 117 "null_event_targeter.h", | 116 "null_event_targeter.h", |
| 118 "win/events_win.cc", | 117 "win/events_win.cc", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 "test/motion_event_test_utils.cc", | 246 "test/motion_event_test_utils.cc", |
| 248 "test/motion_event_test_utils.h", | 247 "test/motion_event_test_utils.h", |
| 249 "test/platform_event_waiter.cc", | 248 "test/platform_event_waiter.cc", |
| 250 "test/platform_event_waiter.h", | 249 "test/platform_event_waiter.h", |
| 251 "test/test_event_handler.cc", | 250 "test/test_event_handler.cc", |
| 252 "test/test_event_handler.h", | 251 "test/test_event_handler.h", |
| 253 "test/test_event_processor.cc", | 252 "test/test_event_processor.cc", |
| 254 "test/test_event_processor.h", | 253 "test/test_event_processor.h", |
| 255 "test/test_event_target.cc", | 254 "test/test_event_target.cc", |
| 256 "test/test_event_target.h", | 255 "test/test_event_target.h", |
| 256 "test/test_event_targeter.cc", |
| 257 "test/test_event_targeter.h", |
| 257 ] | 258 ] |
| 258 | 259 |
| 259 public_deps = [ | 260 public_deps = [ |
| 260 ":events", | 261 ":events", |
| 261 ":events_base", | 262 ":events_base", |
| 262 ":gesture_detection", | 263 ":gesture_detection", |
| 263 ] | 264 ] |
| 264 deps = [ | 265 deps = [ |
| 265 "//base", | 266 "//base", |
| 266 "//skia", | 267 "//skia", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 if (is_nacl) { | 372 if (is_nacl) { |
| 372 source_set("latency_info") { | 373 source_set("latency_info") { |
| 373 sources = [ | 374 sources = [ |
| 374 "ipc/latency_info_param_traits.cc", | 375 "ipc/latency_info_param_traits.cc", |
| 375 "ipc/latency_info_param_traits.h", | 376 "ipc/latency_info_param_traits.h", |
| 376 "latency_info.cc", | 377 "latency_info.cc", |
| 377 "latency_info.h", | 378 "latency_info.h", |
| 378 ] | 379 ] |
| 379 } | 380 } |
| 380 } | 381 } |
| OLD | NEW |