From 8636a49f47fd21ff4b46a05e0f9b8761da1f035e Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Wed, 25 Sep 2024 12:43:10 -0600 Subject: [PATCH] Meta: Update AK gn build for new files and dependencies --- Meta/gn/secondary/AK/BUILD.gn | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Meta/gn/secondary/AK/BUILD.gn b/Meta/gn/secondary/AK/BUILD.gn index a4776db2f5f..23142652710 100644 --- a/Meta/gn/secondary/AK/BUILD.gn +++ b/Meta/gn/secondary/AK/BUILD.gn @@ -16,7 +16,8 @@ shared_library("AK") { ":ak_debug_gen", ] - # FIXME: Split out non-kernel sources to their own set + deps = [ "//Meta/gn/build/libs/simdutf" ] + sources = [ "AllOf.h", "AnyOf.h", @@ -42,6 +43,7 @@ shared_library("AK") { "ByteReader.h", "ByteString.cpp", "ByteString.h", + "COWVector.h", "CharacterTypes.h", "Checked.h", "CheckedFormatString.h", @@ -51,6 +53,7 @@ shared_library("AK") { "Concepts.h", "ConstrainedStream.cpp", "ConstrainedStream.h", + "CopyOnWrite.h", "CountingStream.cpp", "CountingStream.h", "DOSPackedTime.cpp", @@ -66,6 +69,7 @@ shared_library("AK") { "DoublyLinkedList.h", "Endian.h", "EnumBits.h", + "Enumerate.h", "Error.cpp", "Error.h", "Find.h", @@ -111,6 +115,7 @@ shared_library("AK") { "LEB128.h", "LexicalPath.cpp", "LexicalPath.h", + "LsanSuppressions.h", "Math.h", "MaybeOwned.h", "MemMem.h", @@ -130,7 +135,6 @@ shared_library("AK") { "Optional.h", "OwnPtr.h", "Platform.h", - "Ptr32.h", "Queue.h", "QuickSelect.h", "QuickSort.h", @@ -148,6 +152,7 @@ shared_library("AK") { "ScopeGuard.h", "ScopeLogger.h", "ScopedValueRollback.h", + "SegmentedVector.h", "Singleton.h", "SinglyLinkedList.h", "SinglyLinkedListSizePolicy.h", @@ -170,6 +175,7 @@ shared_library("AK") { "StringBase.h", "StringBuilder.cpp", "StringBuilder.h", + "StringData.h", "StringFloatingPointConversions.cpp", "StringFloatingPointConversions.h", "StringHash.h", @@ -179,6 +185,7 @@ shared_library("AK") { "StringUtils.h", "StringView.cpp", "StringView.h", + "Swift.h", "TemporaryChange.h", "Time.cpp", "Time.h",