Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: ui/events/BUILD.gn

Issue 1136503003: Consolidate ui/events/keycodes/dom[34]/ into .../dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/base/ime/input_method_chromeos_unittest.cc ('k') | ui/events/event.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("dom_keycode_converter") {
9 sources = [ 9 sources = [
10 "keycodes/dom3/dom_code.h", 10 "keycodes/dom/dom_code.h",
11 "keycodes/dom3/dom_key.h", 11 "keycodes/dom/dom_key.h",
12 "keycodes/dom3/dom_key_data.h", 12 "keycodes/dom/dom_key_data.inc",
13 "keycodes/dom4/keycode_converter.cc", 13 "keycodes/dom/keycode_converter.cc",
14 "keycodes/dom4/keycode_converter.h", 14 "keycodes/dom/keycode_converter.h",
15 "keycodes/dom4/keycode_converter_data.h", 15 "keycodes/dom/keycode_converter_data.inc",
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",
(...skipping 19 matching lines...) Expand all
45 "keycodes/keyboard_code_conversion_win.cc", 45 "keycodes/keyboard_code_conversion_win.cc",
46 "keycodes/keyboard_code_conversion_win.h", 46 "keycodes/keyboard_code_conversion_win.h",
47 "keycodes/keyboard_codes.h", 47 "keycodes/keyboard_codes.h",
48 "latency_info.cc", 48 "latency_info.cc",
49 "latency_info.h", 49 "latency_info.h",
50 ] 50 ]
51 51
52 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] 52 defines = [ "EVENTS_BASE_IMPLEMENTATION" ]
53 53
54 deps = [ 54 deps = [
55 ":dom4_keycode_converter", 55 ":dom_keycode_converter",
56 "//base/third_party/dynamic_annotations", 56 "//base/third_party/dynamic_annotations",
57 "//skia", 57 "//skia",
58 ] 58 ]
59 59
60 public_deps = [ 60 public_deps = [
61 "//base", 61 "//base",
62 "//ui/events/platform", 62 "//ui/events/platform",
63 "//ui/gfx", 63 "//ui/gfx",
64 "//ui/gfx/geometry", 64 "//ui/gfx/geometry",
65 ] 65 ]
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 "null_event_targeter.h", 117 "null_event_targeter.h",
118 "win/events_win.cc", 118 "win/events_win.cc",
119 ] 119 ]
120 120
121 defines = [ "EVENTS_IMPLEMENTATION" ] 121 defines = [ "EVENTS_IMPLEMENTATION" ]
122 122
123 public_deps = [ 123 public_deps = [
124 ":events_base", 124 ":events_base",
125 ] 125 ]
126 deps = [ 126 deps = [
127 ":dom4_keycode_converter", 127 ":dom_keycode_converter",
128 ":gesture_detection", 128 ":gesture_detection",
129 "//base/third_party/dynamic_annotations", 129 "//base/third_party/dynamic_annotations",
130 "//skia", 130 "//skia",
131 "//ui/gfx", 131 "//ui/gfx",
132 "//ui/gfx/geometry", 132 "//ui/gfx/geometry",
133 ] 133 ]
134 134
135 if (use_x11) { 135 if (use_x11) {
136 sources += [ "x/events_x.cc" ] 136 sources += [ "x/events_x.cc" ]
137 configs += [ 137 configs += [
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 "gesture_detection/filtered_gesture_provider_unittest.cc", 300 "gesture_detection/filtered_gesture_provider_unittest.cc",
301 "gesture_detection/gesture_event_data_packet_unittest.cc", 301 "gesture_detection/gesture_event_data_packet_unittest.cc",
302 "gesture_detection/gesture_provider_unittest.cc", 302 "gesture_detection/gesture_provider_unittest.cc",
303 "gesture_detection/motion_event_buffer_unittest.cc", 303 "gesture_detection/motion_event_buffer_unittest.cc",
304 "gesture_detection/motion_event_generic_unittest.cc", 304 "gesture_detection/motion_event_generic_unittest.cc",
305 "gesture_detection/snap_scroll_controller_unittest.cc", 305 "gesture_detection/snap_scroll_controller_unittest.cc",
306 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", 306 "gesture_detection/touch_disposition_gesture_filter_unittest.cc",
307 "gesture_detection/velocity_tracker_unittest.cc", 307 "gesture_detection/velocity_tracker_unittest.cc",
308 "gestures/blink/web_gesture_curve_impl_unittest.cc", 308 "gestures/blink/web_gesture_curve_impl_unittest.cc",
309 "gestures/fling_curve_unittest.cc", 309 "gestures/fling_curve_unittest.cc",
310 "keycodes/dom4/keycode_converter_unittest.cc", 310 "keycodes/dom/keycode_converter_unittest.cc",
311 "keycodes/keyboard_code_conversion_unittest.cc", 311 "keycodes/keyboard_code_conversion_unittest.cc",
312 "latency_info_unittest.cc", 312 "latency_info_unittest.cc",
313 "platform/platform_event_source_unittest.cc", 313 "platform/platform_event_source_unittest.cc",
314 "x/events_x_unittest.cc", 314 "x/events_x_unittest.cc",
315 ] 315 ]
316 316
317 deps = [ 317 deps = [
318 ":dom4_keycode_converter", 318 ":dom_keycode_converter",
319 ":events", 319 ":events",
320 ":events_base", 320 ":events_base",
321 ":gesture_detection", 321 ":gesture_detection",
322 ":test_support", 322 ":test_support",
323 "//base", 323 "//base",
324 "//base/test:run_all_unittests", 324 "//base/test:run_all_unittests",
325 "//skia", 325 "//skia",
326 "//testing/gtest", 326 "//testing/gtest",
327 "//third_party/WebKit/public:blink_headers", 327 "//third_party/WebKit/public:blink_headers",
328 "//ui/events/devices", 328 "//ui/events/devices",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 if (is_nacl) { 371 if (is_nacl) {
372 source_set("latency_info") { 372 source_set("latency_info") {
373 sources = [ 373 sources = [
374 "ipc/latency_info_param_traits.cc", 374 "ipc/latency_info_param_traits.cc",
375 "ipc/latency_info_param_traits.h", 375 "ipc/latency_info_param_traits.h",
376 "latency_info.cc", 376 "latency_info.cc",
377 "latency_info.h", 377 "latency_info.h",
378 ] 378 ]
379 } 379 }
380 } 380 }
OLDNEW
« no previous file with comments | « ui/base/ime/input_method_chromeos_unittest.cc ('k') | ui/events/event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698