|
@@ -1,6 +1,8 @@
|
|
# These are the minimal set of sources needed to build the code generators. We separate them to allow
|
|
# These are the minimal set of sources needed to build the code generators. We separate them to allow
|
|
# LibCore to depend on generated sources.
|
|
# LibCore to depend on generated sources.
|
|
-source_set("minimal") {
|
|
|
|
|
|
+shared_library("minimal") {
|
|
|
|
+ output_name = "core-minimal"
|
|
|
|
+
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
include_dirs = [ "//Userland/Libraries" ]
|
|
|
|
|
|
sources = [
|
|
sources = [
|
|
@@ -14,9 +16,13 @@ source_set("minimal") {
|
|
"Directory.h",
|
|
"Directory.h",
|
|
"DirectoryEntry.cpp",
|
|
"DirectoryEntry.cpp",
|
|
"DirectoryEntry.h",
|
|
"DirectoryEntry.h",
|
|
|
|
+ "Environment.cpp",
|
|
|
|
+ "Environment.h",
|
|
"File.cpp",
|
|
"File.cpp",
|
|
"File.h",
|
|
"File.h",
|
|
"Forward.h",
|
|
"Forward.h",
|
|
|
|
+ "SessionManagement.cpp",
|
|
|
|
+ "SessionManagement.h",
|
|
"StandardPaths.cpp",
|
|
"StandardPaths.cpp",
|
|
"StandardPaths.h",
|
|
"StandardPaths.h",
|
|
"System.cpp",
|
|
"System.cpp",
|
|
@@ -45,8 +51,6 @@ source_set("sources") {
|
|
"DeferredInvocationContext.h",
|
|
"DeferredInvocationContext.h",
|
|
"ElapsedTimer.cpp",
|
|
"ElapsedTimer.cpp",
|
|
"ElapsedTimer.h",
|
|
"ElapsedTimer.h",
|
|
- "Environment.cpp",
|
|
|
|
- "Environment.h",
|
|
|
|
"Event.cpp",
|
|
"Event.cpp",
|
|
"Event.h",
|
|
"Event.h",
|
|
"EventLoop.cpp",
|
|
"EventLoop.cpp",
|
|
@@ -81,8 +85,6 @@ source_set("sources") {
|
|
"SOCKSProxyClient.h",
|
|
"SOCKSProxyClient.h",
|
|
"SecretString.cpp",
|
|
"SecretString.cpp",
|
|
"SecretString.h",
|
|
"SecretString.h",
|
|
- "SessionManagement.cpp",
|
|
|
|
- "SessionManagement.h",
|
|
|
|
"SharedCircularQueue.h",
|
|
"SharedCircularQueue.h",
|
|
"Socket.cpp",
|
|
"Socket.cpp",
|
|
"Socket.h",
|
|
"Socket.h",
|
|
@@ -151,7 +153,6 @@ shared_library("LibCore") {
|
|
|
|
|
|
deps = [
|
|
deps = [
|
|
":filewatcher",
|
|
":filewatcher",
|
|
- ":minimal",
|
|
|
|
":sources",
|
|
":sources",
|
|
"//Meta/gn/build/libs/crypt",
|
|
"//Meta/gn/build/libs/crypt",
|
|
"//Meta/gn/build/libs/pthread",
|
|
"//Meta/gn/build/libs/pthread",
|
|
@@ -159,4 +160,6 @@ shared_library("LibCore") {
|
|
"//Userland/Libraries/LibTimeZone",
|
|
"//Userland/Libraries/LibTimeZone",
|
|
"//Userland/Libraries/LibURL",
|
|
"//Userland/Libraries/LibURL",
|
|
]
|
|
]
|
|
|
|
+
|
|
|
|
+ public_deps = [ ":minimal" ]
|
|
}
|
|
}
|