1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00

LibWebView: Remove the DumpLayoutTree program

This program's purpose is now achieved with headless-browser, which has
the added benefit of being runnable outside of Serenity.
This commit is contained in:
Timothy Flynn 2023-05-16 15:16:45 -04:00 committed by Tim Flynn
parent 77008d4bac
commit d1a1b1ab75
4 changed files with 1 additions and 36 deletions

View file

@ -167,7 +167,7 @@ DeprecatedString ProjectBuilder::generate_cmake_file_content() const
builder.appendff("add_library({} SHARED IMPORTED GLOBAL)\n", library.key);
builder.appendff("set_target_properties({} PROPERTIES IMPORTED_LOCATION {})\n", library.key, library.value->path);
if (library.key == "LibCStaticWithoutDeps"sv || library.key == "DumpLayoutTree"sv)
if (library.key == "LibCStaticWithoutDeps"sv)
continue;
// We need to specify the dependencies for each defined library in CMake because some applications do not specify