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:
Karol Kosek 2023-09-18 08:20:00 +02:00 committed by Andrew Kaster
parent d168bfabc4
commit 1681d6f721
Notes: sideshowbarker 2024-07-17 03:16:02 +09:00
8 changed files with 11 additions and 2 deletions

View file

@ -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",

View file

@ -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"

View file

@ -34,6 +34,7 @@ source_set("StyleValues") {
"LengthStyleValue.cpp",
"LinearGradientStyleValue.cpp",
"ListStyleStyleValue.cpp",
"MathDepthStyleValue.cpp",
"NumberStyleValue.cpp",
"OverflowStyleValue.cpp",
"PlaceContentStyleValue.cpp",

View file

@ -45,6 +45,8 @@ source_set("DOM") {
"RadioNodeList.cpp",
"Range.cpp",
"ShadowRoot.cpp",
"Slot.cpp",
"Slottable.cpp",
"StaticNodeList.cpp",
"StaticRange.cpp",
"StyleElementUtils.cpp",

View file

@ -6,5 +6,6 @@ source_set("FileAPI") {
"BlobURLStore.cpp",
"File.cpp",
"FileList.cpp",
"FileReader.cpp",
]
}

View file

@ -149,6 +149,7 @@ source_set("HTML") {
"TextMetrics.cpp",
"TimeRanges.cpp",
"Timer.cpp",
"ToggleEvent.cpp",
"TrackEvent.cpp",
"TraversableNavigable.cpp",
"VideoTrack.cpp",

View file

@ -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",

View file

@ -85,6 +85,7 @@ shared_library("LibWebView") {
"RequestServerAdapter.cpp",
"SourceHighlighter.cpp",
"StylePropertiesModel.cpp",
"UserAgent.cpp",
"ViewImplementation.cpp",
"WebContentClient.cpp",
"WebSocketClientAdapter.cpp",