mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:37:34 +00:00
Userland: Remove LibCore dependency from libraries that do not use it
This commit is contained in:
parent
5945cdc054
commit
aa0a6d58b2
19 changed files with 12 additions and 32 deletions
|
@ -50,7 +50,6 @@ shared_library("LibGL") {
|
|||
deps = [
|
||||
":generate_glapi",
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
"//Userland/Libraries/LibGLSL",
|
||||
"//Userland/Libraries/LibGPU",
|
||||
"//Userland/Libraries/LibGfx",
|
||||
|
|
|
@ -5,10 +5,7 @@ shared_library("LibGPU") {
|
|||
"Driver.cpp",
|
||||
"Image.cpp",
|
||||
]
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
]
|
||||
deps = [ "//AK" ]
|
||||
|
||||
# FIXME: express this dependency properly to avoid cycles
|
||||
# we want to make sure that LibSoftGPU is built when LibGPU is needed
|
||||
|
|
|
@ -7,10 +7,7 @@ shared_library("LibJIT") {
|
|||
"GDB.cpp",
|
||||
"GDB.h",
|
||||
]
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
]
|
||||
deps = [ "//AK" ]
|
||||
|
||||
if (current_os == "mac") {
|
||||
sources += [ "GDBUnsupported.cpp" ]
|
||||
|
|
|
@ -179,7 +179,6 @@ source_set("LibLocale") {
|
|||
]
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
"//Userland/Libraries/LibUnicode",
|
||||
]
|
||||
if (enable_unicode_database_download) {
|
||||
|
|
|
@ -28,7 +28,6 @@ shared_library("LibPDF") {
|
|||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCompress",
|
||||
"//Userland/Libraries/LibCore",
|
||||
"//Userland/Libraries/LibCrypto",
|
||||
"//Userland/Libraries/LibGfx",
|
||||
"//Userland/Libraries/LibIPC",
|
||||
|
|
|
@ -12,8 +12,5 @@ shared_library("LibRIFF") {
|
|||
"RIFF.h",
|
||||
]
|
||||
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
]
|
||||
deps = [ "//AK" ]
|
||||
}
|
||||
|
|
|
@ -13,7 +13,6 @@ shared_library("LibRegex") {
|
|||
}
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
"//Userland/Libraries/LibUnicode",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -177,10 +177,8 @@ source_set("LibUnicode") {
|
|||
"URL.cpp",
|
||||
"UnicodeUtils.cpp",
|
||||
]
|
||||
deps = [
|
||||
"//AK",
|
||||
"//Userland/Libraries/LibCore",
|
||||
]
|
||||
deps = [ "//AK" ]
|
||||
|
||||
if (enable_unicode_database_download) {
|
||||
deps += [
|
||||
":generate_emoji_sources",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue