mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
After making no progress on this for a very long time, let's acknowledge it's not going anywhere and remove it from the codebase.
25 lines
583 B
CMake
25 lines
583 B
CMake
set(TEST_SOURCES
|
|
TestCSSIDSpeed.cpp
|
|
TestContentFilter.cpp
|
|
TestControlMessageQueue.cpp
|
|
TestCSSInheritedProperty.cpp
|
|
TestCSSPixels.cpp
|
|
TestCSSSyntaxParser.cpp
|
|
TestCSSTokenStream.cpp
|
|
TestFetchURL.cpp
|
|
TestHTMLTokenizer.cpp
|
|
TestMicrosyntax.cpp
|
|
TestMimeSniff.cpp
|
|
TestNumbers.cpp
|
|
TestStrings.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
ladybird_test("${source}" LibWeb LIBS LibWeb)
|
|
endforeach()
|
|
|
|
target_link_libraries(TestContentFilter PRIVATE LibURL)
|
|
target_link_libraries(TestFetchURL PRIVATE LibURL)
|
|
|
|
add_subdirectory("test-web")
|