forked from OSchip/llvm-project
[gn build] Port 62d5f254cc
This commit is contained in:
parent
62d5f254cc
commit
ced9bbe0b2
|
@ -9,6 +9,7 @@ static_library("lib") {
|
|||
include_dirs = [ "../include" ]
|
||||
sources = [
|
||||
"DirectiveMap.cpp",
|
||||
"Forest.cpp",
|
||||
"Grammar.cpp",
|
||||
"GrammarBNF.cpp",
|
||||
"LRGraph.cpp",
|
||||
|
|
|
@ -3,15 +3,16 @@ import("//llvm/utils/unittest/unittest.gni")
|
|||
unittest("ClangPseudoTests") {
|
||||
configs += [ "//llvm/utils/gn/build:clang_code" ]
|
||||
deps = [
|
||||
"//clang-tools-extra/pseudo/lib",
|
||||
"//clang/lib/Basic",
|
||||
"//clang/lib/Lex",
|
||||
"//clang/lib/Testing",
|
||||
"//clang-tools-extra/pseudo/lib",
|
||||
"//llvm/lib/Support",
|
||||
]
|
||||
include_dirs = [ "../include" ]
|
||||
sources = [
|
||||
"DirectiveMapTest.cpp",
|
||||
"ForestTest.cpp",
|
||||
"GrammarTest.cpp",
|
||||
"LRTableTest.cpp",
|
||||
"TokenTest.cpp",
|
||||
|
|
Loading…
Reference in New Issue