mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:17:35 +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
8 changed files with 11 additions and 2 deletions
|
@ -32,6 +32,7 @@ shared_library("LibCrypto") {
|
||||||
"Curves/SECP256r1.cpp",
|
"Curves/SECP256r1.cpp",
|
||||||
"Curves/X25519.cpp",
|
"Curves/X25519.cpp",
|
||||||
"Curves/X448.cpp",
|
"Curves/X448.cpp",
|
||||||
|
"Hash/BLAKE2b.cpp",
|
||||||
"Hash/MD5.cpp",
|
"Hash/MD5.cpp",
|
||||||
"Hash/SHA1.cpp",
|
"Hash/SHA1.cpp",
|
||||||
"Hash/SHA2.cpp",
|
"Hash/SHA2.cpp",
|
||||||
|
|
|
@ -9,14 +9,14 @@ emoji_cache = cache_path + "EMOJI/"
|
||||||
|
|
||||||
if (enable_unicode_database_download) {
|
if (enable_unicode_database_download) {
|
||||||
download_file("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"
|
url = "https://www.unicode.org/Public/" + version + "/ucd/UCD.zip"
|
||||||
cache = unicode_cache
|
cache = unicode_cache
|
||||||
output = "UCD.zip"
|
output = "UCD.zip"
|
||||||
version_file = "version.txt"
|
version_file = "version.txt"
|
||||||
}
|
}
|
||||||
download_file("emoji_test_download") {
|
download_file("emoji_test_download") {
|
||||||
version = "15.0"
|
version = "15.1"
|
||||||
url = "https://www.unicode.org/Public/emoji/" + version + "/emoji-test.txt"
|
url = "https://www.unicode.org/Public/emoji/" + version + "/emoji-test.txt"
|
||||||
cache = emoji_cache
|
cache = emoji_cache
|
||||||
output = "emoji-test.txt"
|
output = "emoji-test.txt"
|
||||||
|
|
|
@ -34,6 +34,7 @@ source_set("StyleValues") {
|
||||||
"LengthStyleValue.cpp",
|
"LengthStyleValue.cpp",
|
||||||
"LinearGradientStyleValue.cpp",
|
"LinearGradientStyleValue.cpp",
|
||||||
"ListStyleStyleValue.cpp",
|
"ListStyleStyleValue.cpp",
|
||||||
|
"MathDepthStyleValue.cpp",
|
||||||
"NumberStyleValue.cpp",
|
"NumberStyleValue.cpp",
|
||||||
"OverflowStyleValue.cpp",
|
"OverflowStyleValue.cpp",
|
||||||
"PlaceContentStyleValue.cpp",
|
"PlaceContentStyleValue.cpp",
|
||||||
|
|
|
@ -45,6 +45,8 @@ source_set("DOM") {
|
||||||
"RadioNodeList.cpp",
|
"RadioNodeList.cpp",
|
||||||
"Range.cpp",
|
"Range.cpp",
|
||||||
"ShadowRoot.cpp",
|
"ShadowRoot.cpp",
|
||||||
|
"Slot.cpp",
|
||||||
|
"Slottable.cpp",
|
||||||
"StaticNodeList.cpp",
|
"StaticNodeList.cpp",
|
||||||
"StaticRange.cpp",
|
"StaticRange.cpp",
|
||||||
"StyleElementUtils.cpp",
|
"StyleElementUtils.cpp",
|
||||||
|
|
|
@ -6,5 +6,6 @@ source_set("FileAPI") {
|
||||||
"BlobURLStore.cpp",
|
"BlobURLStore.cpp",
|
||||||
"File.cpp",
|
"File.cpp",
|
||||||
"FileList.cpp",
|
"FileList.cpp",
|
||||||
|
"FileReader.cpp",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -149,6 +149,7 @@ source_set("HTML") {
|
||||||
"TextMetrics.cpp",
|
"TextMetrics.cpp",
|
||||||
"TimeRanges.cpp",
|
"TimeRanges.cpp",
|
||||||
"Timer.cpp",
|
"Timer.cpp",
|
||||||
|
"ToggleEvent.cpp",
|
||||||
"TrackEvent.cpp",
|
"TrackEvent.cpp",
|
||||||
"TraversableNavigable.cpp",
|
"TraversableNavigable.cpp",
|
||||||
"VideoTrack.cpp",
|
"VideoTrack.cpp",
|
||||||
|
|
|
@ -83,6 +83,7 @@ standard_idl_files = [
|
||||||
"//Userland/Libraries/LibWeb/FileAPI/Blob.idl",
|
"//Userland/Libraries/LibWeb/FileAPI/Blob.idl",
|
||||||
"//Userland/Libraries/LibWeb/FileAPI/File.idl",
|
"//Userland/Libraries/LibWeb/FileAPI/File.idl",
|
||||||
"//Userland/Libraries/LibWeb/FileAPI/FileList.idl",
|
"//Userland/Libraries/LibWeb/FileAPI/FileList.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/FileAPI/FileReader.idl",
|
||||||
"//Userland/Libraries/LibWeb/Geometry/DOMMatrix.idl",
|
"//Userland/Libraries/LibWeb/Geometry/DOMMatrix.idl",
|
||||||
"//Userland/Libraries/LibWeb/Geometry/DOMMatrixReadOnly.idl",
|
"//Userland/Libraries/LibWeb/Geometry/DOMMatrixReadOnly.idl",
|
||||||
"//Userland/Libraries/LibWeb/Geometry/DOMPoint.idl",
|
"//Userland/Libraries/LibWeb/Geometry/DOMPoint.idl",
|
||||||
|
@ -200,6 +201,7 @@ standard_idl_files = [
|
||||||
"//Userland/Libraries/LibWeb/HTML/SubmitEvent.idl",
|
"//Userland/Libraries/LibWeb/HTML/SubmitEvent.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/TextMetrics.idl",
|
"//Userland/Libraries/LibWeb/HTML/TextMetrics.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/TimeRanges.idl",
|
"//Userland/Libraries/LibWeb/HTML/TimeRanges.idl",
|
||||||
|
"//Userland/Libraries/LibWeb/HTML/ToggleEvent.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/TrackEvent.idl",
|
"//Userland/Libraries/LibWeb/HTML/TrackEvent.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/VideoTrack.idl",
|
"//Userland/Libraries/LibWeb/HTML/VideoTrack.idl",
|
||||||
"//Userland/Libraries/LibWeb/HTML/VideoTrackList.idl",
|
"//Userland/Libraries/LibWeb/HTML/VideoTrackList.idl",
|
||||||
|
|
|
@ -85,6 +85,7 @@ shared_library("LibWebView") {
|
||||||
"RequestServerAdapter.cpp",
|
"RequestServerAdapter.cpp",
|
||||||
"SourceHighlighter.cpp",
|
"SourceHighlighter.cpp",
|
||||||
"StylePropertiesModel.cpp",
|
"StylePropertiesModel.cpp",
|
||||||
|
"UserAgent.cpp",
|
||||||
"ViewImplementation.cpp",
|
"ViewImplementation.cpp",
|
||||||
"WebContentClient.cpp",
|
"WebContentClient.cpp",
|
||||||
"WebSocketClientAdapter.cpp",
|
"WebSocketClientAdapter.cpp",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue