1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 17:05:07 +00:00
serenity/Meta/gn/secondary/Userland/Libraries/LibWeb/DOM/BUILD.gn
Andrew Kaster 9a3e9047a5 Meta: Update GN build for recent changes
9a026fc8d5
ae1ac9871b
07b332e17c

And some missed changes from the past that weren't hit because no one
was referencing those symbols :^).
2023-10-11 10:56:24 -06:00

57 lines
1.4 KiB
Text

source_set("DOM") {
configs += [ "//Userland/Libraries/LibWeb:configs" ]
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
sources = [
"AbortController.cpp",
"AbortSignal.cpp",
"AbstractRange.cpp",
"AccessibilityTreeNode.cpp",
"Attr.cpp",
"CDATASection.cpp",
"CharacterData.cpp",
"Comment.cpp",
"CustomEvent.cpp",
"DOMEventListener.cpp",
"DOMImplementation.cpp",
"DOMTokenList.cpp",
"Document.cpp",
"DocumentFragment.cpp",
"DocumentLoadEventDelayer.cpp",
"DocumentLoading.cpp",
"DocumentObserver.cpp",
"DocumentType.cpp",
"Element.cpp",
"ElementFactory.cpp",
"Event.cpp",
"EventDispatcher.cpp",
"EventTarget.cpp",
"HTMLCollection.cpp",
"HTMLFormControlsCollection.cpp",
"IDLEventListener.cpp",
"LiveNodeList.cpp",
"MutationObserver.cpp",
"MutationRecord.cpp",
"MutationType.cpp",
"NamedNodeMap.cpp",
"Node.cpp",
"NodeFilter.cpp",
"NodeIterator.cpp",
"NodeList.cpp",
"NodeOperations.cpp",
"ParentNode.cpp",
"Position.cpp",
"ProcessingInstruction.cpp",
"QualifiedName.cpp",
"RadioNodeList.cpp",
"Range.cpp",
"ShadowRoot.cpp",
"Slot.cpp",
"Slottable.cpp",
"StaticNodeList.cpp",
"StaticRange.cpp",
"StyleElementUtils.cpp",
"Text.cpp",
"TreeWalker.cpp",
"XMLDocument.cpp",
]
}