| 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("dom4_keycode_converter") { | 8 static_library("dom4_keycode_converter") { |
| 9 sources = [ | 9 sources = [ |
| 10 "keycodes/dom3/dom_code.h", | 10 "keycodes/dom3/dom_code.h", |
| 11 "keycodes/dom3/dom_key.h", | 11 "keycodes/dom3/dom_key.h", |
| 12 "keycodes/dom3/dom_key_data.h", | 12 "keycodes/dom3/dom_key_data.h", |
| 13 "keycodes/dom4/keycode_converter.cc", | 13 "keycodes/dom4/keycode_converter.cc", |
| 14 "keycodes/dom4/keycode_converter.h", | 14 "keycodes/dom4/keycode_converter.h", |
| 15 "keycodes/dom4/keycode_converter_data.h", | 15 "keycodes/dom4/keycode_converter_data.h", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 deps = [ | 18 deps = [ |
| 19 "//base", | 19 "//base", |
| 20 ] | 20 ] |
| 21 } | 21 } |
| 22 | 22 |
| 23 component("events_base") { | 23 component("events_base") { |
| 24 sources = [ | 24 sources = [ |
| 25 "android/scroller.cc", | 25 "android/scroller.cc", |
| 26 "android/scroller.h", | 26 "android/scroller.h", |
| 27 "base_event_utils.cc", |
| 28 "base_event_utils.h", |
| 27 "event_constants.h", | 29 "event_constants.h", |
| 28 "event_switches.cc", | 30 "event_switches.cc", |
| 29 "event_switches.h", | 31 "event_switches.h", |
| 30 "events_base_export.h", | 32 "events_base_export.h", |
| 31 "gesture_curve.h", | 33 "gesture_curve.h", |
| 32 "gesture_event_details.cc", | 34 "gesture_event_details.cc", |
| 33 "gesture_event_details.h", | 35 "gesture_event_details.h", |
| 34 "gestures/fling_curve.cc", | 36 "gestures/fling_curve.cc", |
| 35 "gestures/fling_curve.h", | 37 "gestures/fling_curve.h", |
| 36 "keycodes/dom_us_layout_data.h", | 38 "keycodes/dom_us_layout_data.h", |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 if (is_nacl) { | 363 if (is_nacl) { |
| 362 source_set("latency_info") { | 364 source_set("latency_info") { |
| 363 sources = [ | 365 sources = [ |
| 364 "ipc/latency_info_param_traits.cc", | 366 "ipc/latency_info_param_traits.cc", |
| 365 "ipc/latency_info_param_traits.h", | 367 "ipc/latency_info_param_traits.h", |
| 366 "latency_info.cc", | 368 "latency_info.cc", |
| 367 "latency_info.h", | 369 "latency_info.h", |
| 368 ] | 370 ] |
| 369 } | 371 } |
| 370 } | 372 } |
| OLD | NEW |