mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
43ed03145d
Now that scrolling and rendering scrollbars is handled entirely in the WebContent process, there's no reason to place the WebView inside scroll views.
19 lines
402 B
Text
19 lines
402 B
Text
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 *
|
|
}
|
|
}
|