mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 23:07:35 +00:00
Meta: Add gn build rules for LibWeb
This commit is contained in:
parent
7b3d0fb002
commit
85c8cd5205
60 changed files with 1966 additions and 0 deletions
19
Meta/gn/secondary/Userland/Libraries/LibWeb/Streams/BUILD.gn
Normal file
19
Meta/gn/secondary/Userland/Libraries/LibWeb/Streams/BUILD.gn
Normal file
|
@ -0,0 +1,19 @@
|
|||
source_set("Streams") {
|
||||
configs += [ "//Userland/Libraries/LibWeb:configs" ]
|
||||
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
|
||||
sources = [
|
||||
"AbstractOperations.cpp",
|
||||
"ReadableByteStreamController.cpp",
|
||||
"ReadableStream.cpp",
|
||||
"ReadableStreamBYOBReader.cpp",
|
||||
"ReadableStreamBYOBRequest.cpp",
|
||||
"ReadableStreamDefaultController.cpp",
|
||||
"ReadableStreamDefaultReader.cpp",
|
||||
"ReadableStreamGenericReader.cpp",
|
||||
"UnderlyingSink.cpp",
|
||||
"UnderlyingSource.cpp",
|
||||
"WritableStream.cpp",
|
||||
"WritableStreamDefaultController.cpp",
|
||||
"WritableStreamDefaultWriter.cpp",
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue