[llvm] 016b7e8 - [gn] port 184ca39529a9
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 25 09:03:23 PST 2024
Author: Nico Weber
Date: 2024-01-25T12:03:13-05:00
New Revision: 016b7e8bf4df839f4bf84ee615cbe422e75f7868
URL: https://github.com/llvm/llvm-project/commit/016b7e8bf4df839f4bf84ee615cbe422e75f7868
DIFF: https://github.com/llvm/llvm-project/commit/016b7e8bf4df839f4bf84ee615cbe422e75f7868.diff
LOG: [gn] port 184ca39529a9
Added:
llvm/utils/gn/secondary/llvm/lib/CodeGenTypes/BUILD.gn
Modified:
Removed:
################################################################################
diff --git a/llvm/utils/gn/secondary/llvm/lib/CodeGenTypes/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/CodeGenTypes/BUILD.gn
new file mode 100644
index 000000000000000..5df31c33a3ad0d9
--- /dev/null
+++ b/llvm/utils/gn/secondary/llvm/lib/CodeGenTypes/BUILD.gn
@@ -0,0 +1,13 @@
+static_library("CodeGenTypes") {
+ output_name = "LLVMCodeGenTypes"
+ public_deps = [
+ # Must be a public_dep because CodeGen's headers include llvm-config.h.
+ "//llvm/include/llvm/Config:llvm-config",
+ ]
+ deps = [
+ "//llvm/include/llvm/CodeGen:GenVT",
+ "//llvm/lib/Support",
+ ]
+ sources = [ "LowLevelType.cpp" ]
+}
+
More information about the llvm-commits
mailing list