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

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

Issue 2639043002: Fix double-close in EventConverterEvdevImpl (Closed)
Patch Set: remove base::debug::Alias Created 3 years, 11 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/linux/pkg_config.gni") 6 import("//build/config/linux/pkg_config.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//ui/base/ui_features.gni") 8 import("//ui/base/ui_features.gni")
9 9
10 declare_args() { 10 declare_args() {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 "evdev/input_device_settings_evdev.cc", 92 "evdev/input_device_settings_evdev.cc",
93 "evdev/input_device_settings_evdev.h", 93 "evdev/input_device_settings_evdev.h",
94 "evdev/input_injector_evdev.cc", 94 "evdev/input_injector_evdev.cc",
95 "evdev/input_injector_evdev.h", 95 "evdev/input_injector_evdev.h",
96 "evdev/keyboard_evdev.cc", 96 "evdev/keyboard_evdev.cc",
97 "evdev/keyboard_evdev.h", 97 "evdev/keyboard_evdev.h",
98 "evdev/keyboard_util_evdev.cc", 98 "evdev/keyboard_util_evdev.cc",
99 "evdev/keyboard_util_evdev.h", 99 "evdev/keyboard_util_evdev.h",
100 "evdev/mouse_button_map_evdev.cc", 100 "evdev/mouse_button_map_evdev.cc",
101 "evdev/mouse_button_map_evdev.h", 101 "evdev/mouse_button_map_evdev.h",
102 "evdev/scoped_input_device.cc",
103 "evdev/scoped_input_device.h",
102 "evdev/tablet_event_converter_evdev.cc", 104 "evdev/tablet_event_converter_evdev.cc",
103 "evdev/tablet_event_converter_evdev.h", 105 "evdev/tablet_event_converter_evdev.h",
104 "evdev/touch_evdev_debug_buffer.cc", 106 "evdev/touch_evdev_debug_buffer.cc",
105 "evdev/touch_evdev_debug_buffer.h", 107 "evdev/touch_evdev_debug_buffer.h",
106 "evdev/touch_evdev_types.cc", 108 "evdev/touch_evdev_types.cc",
107 "evdev/touch_evdev_types.h", 109 "evdev/touch_evdev_types.h",
108 "evdev/touch_event_converter_evdev.cc", 110 "evdev/touch_event_converter_evdev.cc",
109 "evdev/touch_event_converter_evdev.h", 111 "evdev/touch_event_converter_evdev.h",
110 "evdev/touch_noise/far_apart_taps_touch_noise_filter.cc", 112 "evdev/touch_noise/far_apart_taps_touch_noise_filter.cc",
111 "evdev/touch_noise/far_apart_taps_touch_noise_filter.h", 113 "evdev/touch_noise/far_apart_taps_touch_noise_filter.h",
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 "layout/xkb/xkb_evdev_codes.cc", 193 "layout/xkb/xkb_evdev_codes.cc",
192 "layout/xkb/xkb_evdev_codes.h", 194 "layout/xkb/xkb_evdev_codes.h",
193 "layout/xkb/xkb_key_code_converter.h", 195 "layout/xkb/xkb_key_code_converter.h",
194 "layout/xkb/xkb_keyboard_layout_engine.cc", 196 "layout/xkb/xkb_keyboard_layout_engine.cc",
195 "layout/xkb/xkb_keyboard_layout_engine.h", 197 "layout/xkb/xkb_keyboard_layout_engine.h",
196 ] 198 ]
197 199
198 deps += [ "//ui/events/keycodes:xkb" ] 200 deps += [ "//ui/events/keycodes:xkb" ]
199 } 201 }
200 } 202 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698