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

Unified Diff: ui/events/ozone/BUILD.gn

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/events/linux/text_edit_key_bindings_delegate_auralinux.cc ('k') | ui/events/ozone/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/ozone/BUILD.gn
diff --git a/ui/events/ozone/BUILD.gn b/ui/events/ozone/BUILD.gn
deleted file mode 100644
index 572b7d57cd346561f0922a6f5ddfe3e7444f06e4..0000000000000000000000000000000000000000
--- a/ui/events/ozone/BUILD.gn
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import("//build/config/features.gni")
-import("//build/config/ui.gni")
-
-component("events_ozone") {
- sources = [
- "device/device_event.cc",
- "device/device_event.h",
- "device/device_event_observer.h",
- "device/device_manager.cc",
- "device/device_manager.h",
- "device/device_manager_manual.cc",
- "device/device_manager_manual.h",
- "device/udev/device_manager_udev.cc",
- "device/udev/device_manager_udev.h",
- "events_ozone_export.h",
- ]
-
- deps = [
- "//base",
- ]
-
- defines = [ "EVENTS_OZONE_IMPLEMENTATION" ]
-
- if (!use_udev) {
- sources -= [
- "device/udev/device_manager_udev.cc",
- "device/udev/device_manager_udev.h",
- ]
- }
-
- if (use_ozone_evdev && use_udev) {
- deps += [ "//device/udev_linux" ]
- }
-}
-
-component("events_ozone_evdev") {
- sources = [
- "evdev/event_converter_evdev.cc",
- "evdev/event_converter_evdev.h",
- "evdev/event_device_info.cc",
- "evdev/event_device_info.h",
- "evdev/event_factory_evdev.cc",
- "evdev/event_factory_evdev.h",
- "evdev/event_modifiers_evdev.cc",
- "evdev/event_modifiers_evdev.h",
- "evdev/events_ozone_evdev_export.h",
- "evdev/key_event_converter_evdev.cc",
- "evdev/key_event_converter_evdev.h",
- "evdev/touch_event_converter_evdev.cc",
- "evdev/touch_event_converter_evdev.h",
- ]
-
- defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ]
-
- deps = [
- ":events_ozone",
- "//base",
- "//ui/events/platform",
- "//ui/gfx",
- ]
-
- if (use_ozone_evdev) {
- defines += [ "USE_OZONE_EVDEV=1" ]
- }
-
- if (use_ozone_evdev && use_evdev_gestures) {
- sources += [
- "evdev/libgestures_glue/event_reader_libevdev_cros.cc",
- "evdev/libgestures_glue/event_reader_libevdev_cros.h",
- "evdev/libgestures_glue/gesture_interpreter_libevdev_cros.cc",
- "evdev/libgestures_glue/gesture_interpreter_libevdev_cros.h",
- "evdev/libgestures_glue/gesture_logging.cc",
- "evdev/libgestures_glue/gesture_logging.h",
- "evdev/libgestures_glue/gesture_timer_provider.cc",
- "evdev/libgestures_glue/gesture_timer_provider.h",
- ]
-
- defines += [ "USE_EVDEV_GESTURES" ]
-
- configs += [
- "//build/config/linux:libevdev-cros",
- "//build/config/linux:libgestures",
- ]
- }
-}
« no previous file with comments | « ui/events/linux/text_edit_key_bindings_delegate_auralinux.cc ('k') | ui/events/ozone/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698