Newer
Older
minerva / Meta / gn / secondary / Userland / Libraries / LibWeb / UIEvents / BUILD.gn
@minerva minerva on 13 Jul 489 bytes Initial commit
source_set("UIEvents") {
  configs += [ "//Userland/Libraries/LibWeb:configs" ]
  deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
  include_dirs = [
    "//Userland/",  # For LibGUI needing WindowServer types
  ]
  sources = [
    "CompositionEvent.cpp",
    "EventNames.cpp",
    "FocusEvent.cpp",
    "InputEvent.cpp",
    "InputTypes.cpp",
    "KeyboardEvent.cpp",
    "MouseEvent.cpp",
    "PointerEvent.cpp",
    "TextEvent.cpp",
    "UIEvent.cpp",
    "WheelEvent.cpp",
  ]
}