From 0cb15646150d35ccfbe410fe14c58fa34031e330 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 3 Jun 2024 19:53:22 -0400 Subject: [PATCH] Meta: Removed unused LibVT from the GN build --- Meta/gn/secondary/Userland/Libraries/LibVT/BUILD.gn | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 Meta/gn/secondary/Userland/Libraries/LibVT/BUILD.gn diff --git a/Meta/gn/secondary/Userland/Libraries/LibVT/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibVT/BUILD.gn deleted file mode 100644 index f6944db739f..00000000000 --- a/Meta/gn/secondary/Userland/Libraries/LibVT/BUILD.gn +++ /dev/null @@ -1,12 +0,0 @@ -import("//Meta/gn/build/compiled_action.gni") - -compiled_action("generate_vt_state_machine") { - tool = "//Meta/Lagom/Tools/CodeGenerators/StateMachineGenerator" - inputs = [ "StateMachine.txt" ] - outputs = [ "$root_gen_dir/LibVT/EscapeSequenceStateMachine.h" ] - args = [ - "-o", - rebase_path(outputs[0], root_build_dir), - rebase_path(inputs[0], root_build_dir), - ] -}