[llvm] [gn build] Port c3650687e0b7 (PR #192250)
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 15 05:48:07 PDT 2026
https://github.com/nico created https://github.com/llvm/llvm-project/pull/192250
[gn build] Port c3650687e0b7
>From 834b352ada1ef48c643e163fe180872fb6ad10f9 Mon Sep 17 00:00:00 2001
From: Nico Weber <thakis at chromium.org>
Date: Wed, 15 Apr 2026 08:47:41 -0400
Subject: [PATCH] [gn build] Port c3650687e0b7
---
llvm/utils/gn/secondary/llvm/lib/DebugInfo/GSYM/BUILD.gn | 6 ++++++
.../gn/secondary/llvm/unittests/DebugInfo/GSYM/BUILD.gn | 6 +++++-
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/llvm/utils/gn/secondary/llvm/lib/DebugInfo/GSYM/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/DebugInfo/GSYM/BUILD.gn
index a0c679e0dc423..cbb21ed2c0757 100644
--- a/llvm/utils/gn/secondary/llvm/lib/DebugInfo/GSYM/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/lib/DebugInfo/GSYM/BUILD.gn
@@ -11,10 +11,16 @@ static_library("GSYM") {
"ExtractRanges.cpp",
"FileWriter.cpp",
"FunctionInfo.cpp",
+ "GlobalData.cpp",
"GsymContext.cpp",
"GsymCreator.cpp",
+ "GsymCreatorV1.cpp",
+ "GsymCreatorV2.cpp",
"GsymReader.cpp",
+ "GsymReaderV1.cpp",
+ "GsymReaderV2.cpp",
"Header.cpp",
+ "HeaderV2.cpp",
"InlineInfo.cpp",
"LineTable.cpp",
"LookupResult.cpp",
diff --git a/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/GSYM/BUILD.gn b/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/GSYM/BUILD.gn
index 16c0faf1ac08d..1833fecd329e6 100644
--- a/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/GSYM/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/GSYM/BUILD.gn
@@ -11,5 +11,9 @@ unittest("DebugInfoGSYMTests") {
"//llvm/lib/Target:TargetsToBuild",
"//llvm/lib/Testing/Support",
]
- sources = [ "GSYMTest.cpp" ]
+ sources = [
+ "GSYMTest.cpp",
+ "GSYMV2Test.cpp",
+ "GsymDataExtractorTest.cpp",
+ ]
}
More information about the llvm-commits
mailing list