From a88ee029d7a8465eabd1248f21604875a4f59eb3 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sat, 23 Mar 2024 17:38:23 -0400 Subject: [PATCH] Meta: Add the base64 utility to the GN build --- Meta/gn/secondary/BUILD.gn | 1 + Meta/gn/secondary/Userland/Utilities/BUILD.gn | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/Meta/gn/secondary/BUILD.gn b/Meta/gn/secondary/BUILD.gn index 4f9bb8d2e1..3e92d138a4 100644 --- a/Meta/gn/secondary/BUILD.gn +++ b/Meta/gn/secondary/BUILD.gn @@ -6,6 +6,7 @@ group("default") { "//Meta/Lagom/Tools/CodeGenerators/IPCCompiler", "//Tests", "//Userland/Libraries/LibWeb", + "//Userland/Utilities:base64", "//Userland/Utilities:js", ] testonly = true diff --git a/Meta/gn/secondary/Userland/Utilities/BUILD.gn b/Meta/gn/secondary/Userland/Utilities/BUILD.gn index 3694639d54..054c981426 100644 --- a/Meta/gn/secondary/Userland/Utilities/BUILD.gn +++ b/Meta/gn/secondary/Userland/Utilities/BUILD.gn @@ -1,3 +1,13 @@ +executable("base64") { + sources = [ "base64.cpp" ] + include_dirs = [ "//Userland/Libraries" ] + deps = [ + "//AK", + "//Userland/Libraries/LibCore", + "//Userland/Libraries/LibMain", + ] +} + executable("js") { sources = [ "js.cpp" ] include_dirs = [ "//Userland/Libraries" ]