[llvm] r350974 - gn build: Merge r350958.

Peter Collingbourne via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 11 14:15:54 PST 2019


Author: pcc
Date: Fri Jan 11 14:15:53 2019
New Revision: 350974

URL: http://llvm.org/viewvc/llvm-project?rev=350974&view=rev
Log:
gn build: Merge r350958.

Modified:
    llvm/trunk/utils/gn/secondary/clang/include/clang/AST/BUILD.gn
    llvm/trunk/utils/gn/secondary/clang/lib/AST/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=350974&r1=350973&r2=350974&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 Fri Jan 11 14:15:53 2019
@@ -18,9 +18,18 @@ clang_tablegen("AttrImpl") {
   td_file = "../Basic/Attr.td"
 }
 
-clang_tablegen("AttrDump") {
+clang_tablegen("AttrTextNodeDump") {
   args = [
-    "-gen-clang-attr-dump",
+    "-gen-clang-attr-text-node-dump",
+    "-I",
+    rebase_path("../..", root_out_dir),
+  ]
+  td_file = "../Basic/Attr.td"
+}
+
+clang_tablegen("AttrNodeTraverse") {
+  args = [
+    "-gen-clang-attr-node-traverse",
     "-I",
     rebase_path("../..", root_out_dir),
   ]

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=350974&r1=350973&r2=350974&view=diff
==============================================================================
--- llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn (original)
+++ llvm/trunk/utils/gn/secondary/clang/lib/AST/BUILD.gn Fri Jan 11 14:15:53 2019
@@ -2,8 +2,9 @@ static_library("AST") {
   output_name = "clangAST"
   configs += [ "//llvm/utils/gn/build:clang_code" ]
   deps = [
-    "//clang/include/clang/AST:AttrDump",
     "//clang/include/clang/AST:AttrImpl",
+    "//clang/include/clang/AST:AttrNodeTraverse",
+    "//clang/include/clang/AST:AttrTextNodeDump",
     "//clang/include/clang/AST:CommentCommandInfo",
     "//clang/include/clang/AST:CommentHTMLNamedCharacterReferences",
     "//clang/include/clang/AST:CommentHTMLTags",




More information about the llvm-commits mailing list