mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:47:46 +00:00
Meta: Port recent changes to the GN build
d125d16287
60c3a1a77b
4364a28d3d
271c9d1ae9
This commit is contained in:
parent
1294cfb55c
commit
b81a6cfe1d
5 changed files with 24 additions and 0 deletions
|
@ -146,6 +146,7 @@ source_set("AK") {
|
|||
"StdLibExtras.h",
|
||||
"Stream.h",
|
||||
"String.h",
|
||||
"StringBase.h",
|
||||
"StringBuilder.h",
|
||||
"StringFloatingPointConversions.h",
|
||||
"StringHash.h",
|
||||
|
@ -216,6 +217,7 @@ source_set("sources") {
|
|||
"StackInfo.cpp",
|
||||
"Stream.cpp",
|
||||
"String.cpp",
|
||||
"StringBase.cpp",
|
||||
"StringBuilder.cpp",
|
||||
"StringFloatingPointConversions.cpp",
|
||||
"StringImpl.cpp",
|
||||
|
|
|
@ -35,6 +35,7 @@ shared_library("LibAudio") {
|
|||
"//Userland/Libraries/LibCore",
|
||||
"//Userland/Libraries/LibCrypto",
|
||||
"//Userland/Libraries/LibIPC",
|
||||
"//Userland/Libraries/LibRIFF",
|
||||
"//Userland/Libraries/LibThreading",
|
||||
"//Userland/Libraries/LibUnicode",
|
||||
]
|
||||
|
|
|
@ -118,6 +118,7 @@ shared_library("LibGfx") {
|
|||
"//Userland/Libraries/LibCrypto",
|
||||
"//Userland/Libraries/LibFileSystem",
|
||||
"//Userland/Libraries/LibIPC",
|
||||
"//Userland/Libraries/LibRIFF",
|
||||
"//Userland/Libraries/LibTextCodec",
|
||||
"//Userland/Libraries/LibUnicode",
|
||||
]
|
||||
|
|
19
Meta/gn/secondary/Userland/Libraries/LibRIFF/BUILD.gn
Normal file
19
Meta/gn/secondary/Userland/Libraries/LibRIFF/BUILD.gn
Normal file
|
@ -0,0 +1,19 @@
|
|||
shared_library("LibRIFF") {
|
||||
output_name = "riff"
|
||||
|
||||
include_dirs = [ "//Userland/Libraries" ]
|
||||
|
||||
sources = [
|
||||
"ChunkID.h",
|
||||
"Decoding.cpp",
|
||||
"Details.cpp",
|
||||
"Details.h",
|
||||
"IFF.h",
|
||||
"RIFF.h",
|
||||
]
|
||||
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
]
|
||||
}
|
|
@ -3,6 +3,7 @@ source_set("WebGL") {
|
|||
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
|
||||
sources = [
|
||||
"EventNames.cpp",
|
||||
"OpenGLContext.cpp",
|
||||
"WebGLContextAttributes.cpp",
|
||||
"WebGLContextEvent.cpp",
|
||||
"WebGLRenderingContext.cpp",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue