20 lines
370 B
Plaintext
20 lines
370 B
Plaintext
import("//llvm/utils/TableGen/tablegen.gni")
|
|
import("//llvm/utils/unittest/unittest.gni")
|
|
|
|
tablegen("Opts") {
|
|
visibility = [ ":OptionTests" ]
|
|
args = [ "-gen-opt-parser-defs" ]
|
|
}
|
|
|
|
unittest("OptionTests") {
|
|
deps = [
|
|
":Opts",
|
|
"//llvm/lib/Option",
|
|
"//llvm/lib/Support",
|
|
]
|
|
sources = [
|
|
"OptionMarshallingTest.cpp",
|
|
"OptionParsingTest.cpp",
|
|
]
|
|
}
|