Files
ladybird/Tests/LibWebView/CMakeLists.txt
Andreas Kling 54f14609f4 LibWebView: Add a SQL history store
Add a HistoryStore abstraction with transient and persisted backends,
normalize recorded URLs, and skip non-browsable schemes.

Cover lookup and persistence in TestHistoryStore so history-driven
features can share one backend.
2026-04-16 21:01:28 +02:00

9 lines
196 B
CMake

set(TEST_SOURCES
TestHistoryStore.cpp
TestWebViewURL.cpp
)
foreach(source IN LISTS TEST_SOURCES)
ladybird_test("${source}" LibWebView LIBS LibDatabase LibWebView LibURL)
endforeach()