mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 03:55:24 +00:00
Meta: Port recent build changes to gn build
This ports the following commits:6476dea898
153ae93f9c
45b36bd08a
7870f10aa8
139c575cc9
63d09f6daf
1b3ad1c721
77d32fcb5f
This commit is contained in:
parent
d168bfabc4
commit
1681d6f721
Notes:
sideshowbarker
2024-07-17 03:16:02 +09:00
Author: https://github.com/krkk Commit: https://github.com/SerenityOS/serenity/commit/1681d6f721 Pull-request: https://github.com/SerenityOS/serenity/pull/21136
8 changed files with 11 additions and 2 deletions
|
@ -32,6 +32,7 @@ shared_library("LibCrypto") {
|
|||
"Curves/SECP256r1.cpp",
|
||||
"Curves/X25519.cpp",
|
||||
"Curves/X448.cpp",
|
||||
"Hash/BLAKE2b.cpp",
|
||||
"Hash/MD5.cpp",
|
||||
"Hash/SHA1.cpp",
|
||||
"Hash/SHA2.cpp",
|
||||
|
|
|
@ -9,14 +9,14 @@ emoji_cache = cache_path + "EMOJI/"
|
|||
|
||||
if (enable_unicode_database_download) {
|
||||
download_file("unicode_database_download") {
|
||||
version = "15.0.0"
|
||||
version = "15.1.0"
|
||||
url = "https://www.unicode.org/Public/" + version + "/ucd/UCD.zip"
|
||||
cache = unicode_cache
|
||||
output = "UCD.zip"
|
||||
version_file = "version.txt"
|
||||
}
|
||||
download_file("emoji_test_download") {
|
||||
version = "15.0"
|
||||
version = "15.1"
|
||||
url = "https://www.unicode.org/Public/emoji/" + version + "/emoji-test.txt"
|
||||
cache = emoji_cache
|
||||
output = "emoji-test.txt"
|
||||
|
|
|
@ -34,6 +34,7 @@ source_set("StyleValues") {
|
|||
"LengthStyleValue.cpp",
|
||||
"LinearGradientStyleValue.cpp",
|
||||
"ListStyleStyleValue.cpp",
|
||||
"MathDepthStyleValue.cpp",
|
||||
"NumberStyleValue.cpp",
|
||||
"OverflowStyleValue.cpp",
|
||||
"PlaceContentStyleValue.cpp",
|
||||
|
|
|
@ -45,6 +45,8 @@ source_set("DOM") {
|
|||
"RadioNodeList.cpp",
|
||||
"Range.cpp",
|
||||
"ShadowRoot.cpp",
|
||||
"Slot.cpp",
|
||||
"Slottable.cpp",
|
||||
"StaticNodeList.cpp",
|
||||
"StaticRange.cpp",
|
||||
"StyleElementUtils.cpp",
|
||||
|
|
|
@ -6,5 +6,6 @@ source_set("FileAPI") {
|
|||
"BlobURLStore.cpp",
|
||||
"File.cpp",
|
||||
"FileList.cpp",
|
||||
"FileReader.cpp",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -149,6 +149,7 @@ source_set("HTML") {
|
|||
"TextMetrics.cpp",
|
||||
"TimeRanges.cpp",
|
||||
"Timer.cpp",
|
||||
"ToggleEvent.cpp",
|
||||
"TrackEvent.cpp",
|
||||
"TraversableNavigable.cpp",
|
||||
"VideoTrack.cpp",
|
||||
|
|
|
@ -83,6 +83,7 @@ standard_idl_files = [
|
|||
"//Userland/Libraries/LibWeb/FileAPI/Blob.idl",
|
||||
"//Userland/Libraries/LibWeb/FileAPI/File.idl",
|
||||
"//Userland/Libraries/LibWeb/FileAPI/FileList.idl",
|
||||
"//Userland/Libraries/LibWeb/FileAPI/FileReader.idl",
|
||||
"//Userland/Libraries/LibWeb/Geometry/DOMMatrix.idl",
|
||||
"//Userland/Libraries/LibWeb/Geometry/DOMMatrixReadOnly.idl",
|
||||
"//Userland/Libraries/LibWeb/Geometry/DOMPoint.idl",
|
||||
|
@ -200,6 +201,7 @@ standard_idl_files = [
|
|||
"//Userland/Libraries/LibWeb/HTML/SubmitEvent.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/TextMetrics.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/TimeRanges.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/ToggleEvent.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/TrackEvent.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/VideoTrack.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/VideoTrackList.idl",
|
||||
|
|
|
@ -85,6 +85,7 @@ shared_library("LibWebView") {
|
|||
"RequestServerAdapter.cpp",
|
||||
"SourceHighlighter.cpp",
|
||||
"StylePropertiesModel.cpp",
|
||||
"UserAgent.cpp",
|
||||
"ViewImplementation.cpp",
|
||||
"WebContentClient.cpp",
|
||||
"WebSocketClientAdapter.cpp",
|
||||
|
|
Loading…
Add table
Reference in a new issue