mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Reland "gn build: (manually) merge r373551"
373551 relanded in 373651. llvm-svn: 373654
This commit is contained in:
parent
2ee13eebfa
commit
ddba9942be
@ -34,6 +34,7 @@ group("unittests") {
|
||||
"Remarks:RemarksTests",
|
||||
"Support:SupportTests",
|
||||
"Support/DynamicLibrary:DynamicLibraryTests",
|
||||
"TableGen:TableGenTests",
|
||||
"TextAPI:TextAPITests",
|
||||
"Transforms/IPO:IPOTests",
|
||||
"Transforms/Scalar:ScalarTests",
|
||||
|
13
utils/gn/secondary/llvm/unittests/TableGen/BUILD.gn
Normal file
13
utils/gn/secondary/llvm/unittests/TableGen/BUILD.gn
Normal file
@ -0,0 +1,13 @@
|
||||
import("//llvm/utils/unittest/unittest.gni")
|
||||
|
||||
unittest("TableGenTests") {
|
||||
deps = [
|
||||
"//llvm/lib/Support",
|
||||
"//llvm/lib/TableGen",
|
||||
"//llvm/utils/TableGen/GlobalISel",
|
||||
]
|
||||
include_dirs = [ "//llvm/utils/TableGen" ]
|
||||
sources = [
|
||||
"CodeExpanderTest.cpp",
|
||||
]
|
||||
}
|
@ -4,6 +4,7 @@ executable("llvm-tblgen") {
|
||||
"//llvm/lib/MC",
|
||||
"//llvm/lib/Support",
|
||||
"//llvm/lib/TableGen",
|
||||
"//llvm/utils/TableGen/GlobalISel",
|
||||
]
|
||||
sources = [
|
||||
"AsmMatcherEmitter.cpp",
|
||||
|
@ -0,0 +1,8 @@
|
||||
source_set("GlobalISel") {
|
||||
deps = [
|
||||
"//llvm/lib/Support",
|
||||
]
|
||||
sources = [
|
||||
"CodeExpander.cpp",
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user