[llvm] r373419 - gn build: (manually) merge r373407

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 1 18:26:47 PDT 2019


Author: nico
Date: Tue Oct  1 18:26:46 2019
New Revision: 373419

URL: http://llvm.org/viewvc/llvm-project?rev=373419&view=rev
Log:
gn build: (manually) merge r373407

Modified:
    llvm/trunk/utils/gn/secondary/clang/include/clang/AST/BUILD.gn
    llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn
    llvm/trunk/utils/gn/secondary/clang/utils/TableGen/BUILD.gn

Modified: llvm/trunk/utils/gn/secondary/clang/include/clang/AST/BUILD.gn
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/gn/secondary/clang/include/clang/AST/BUILD.gn?rev=373419&r1=373418&r2=373419&view=diff
==============================================================================
--- llvm/trunk/utils/gn/secondary/clang/include/clang/AST/BUILD.gn (original)
+++ llvm/trunk/utils/gn/secondary/clang/include/clang/AST/BUILD.gn Tue Oct  1 18:26:46 2019
@@ -55,6 +55,12 @@ clang_tablegen("DeclNodes") {
   td_file = "../Basic/DeclNodes.td"
 }
 
+clang_tablegen("TypeNodes") {
+  args = [ "-gen-clang-type-nodes" ]
+  td_file = "../Basic/TypeNodes.td"
+  output_name = "TypeNodes.def"
+}
+
 clang_tablegen("CommentNodes") {
   args = [ "-gen-clang-comment-nodes" ]
   td_file = "../Basic/CommentNodes.td"

Modified: llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn?rev=373419&r1=373418&r2=373419&view=diff
==============================================================================
--- llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn (original)
+++ llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn Tue Oct  1 18:26:46 2019
@@ -33,6 +33,7 @@ static_library("AST") {
     "//clang/include/clang/AST:CommentCommandList",
     "//clang/include/clang/AST:CommentNodes",
     "//clang/include/clang/AST:StmtNodes",
+    "//clang/include/clang/AST:TypeNodes",
   ]
   sources = [
     "APValue.cpp",

Modified: llvm/trunk/utils/gn/secondary/clang/utils/TableGen/BUILD.gn
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/gn/secondary/clang/utils/TableGen/BUILD.gn?rev=373419&r1=373418&r2=373419&view=diff
==============================================================================
--- llvm/trunk/utils/gn/secondary/clang/utils/TableGen/BUILD.gn (original)
+++ llvm/trunk/utils/gn/secondary/clang/utils/TableGen/BUILD.gn Tue Oct  1 18:26:46 2019
@@ -15,6 +15,7 @@ executable("clang-tblgen") {
     "ClangOpenCLBuiltinEmitter.cpp",
     "ClangOptionDocEmitter.cpp",
     "ClangSACheckersEmitter.cpp",
+    "ClangTypeNodesEmitter.cpp",
     "NeonEmitter.cpp",
     "TableGen.cpp",
   ]




More information about the llvm-commits mailing list