mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
Now that scrolling and rendering scrollbars is handled entirely in the WebContent process, there's no reason to place the WebView inside scroll views.
20 lines
402 B
Plaintext
20 lines
402 B
Plaintext
module Ladybird [system] {
|
|
requires cplusplus
|
|
requires objc_arc
|
|
|
|
explicit module WebView {
|
|
header "UI/LadybirdWebView.h"
|
|
export *
|
|
}
|
|
|
|
explicit module WebViewWindow {
|
|
header "UI/LadybirdWebViewWindow.h"
|
|
export *
|
|
}
|
|
|
|
explicit module WebViewApplication {
|
|
header "../../Userland/Libraries/LibWebView/Application.h"
|
|
export *
|
|
}
|
|
}
|