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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 if (is_nacl) { | 370 if (is_nacl) { |
372 source_set("latency_info") { | 371 source_set("latency_info") { |
373 sources = [ | 372 sources = [ |
374 "ipc/latency_info_param_traits.cc", | 373 "ipc/latency_info_param_traits.cc", |
375 "ipc/latency_info_param_traits.h", | 374 "ipc/latency_info_param_traits.h", |
376 "latency_info.cc", | 375 "latency_info.cc", |
377 "latency_info.h", | 376 "latency_info.h", |
378 ] | 377 ] |
379 } | 378 } |
380 } | 379 } |
OLD | NEW |