1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

[gn build] Add missing llvm-profgen dependency

Or else a clean build fails with missing Attributes.inc.
This commit is contained in:
Arthur Eubanks 2021-02-12 12:43:27 -08:00
parent 5e6e337ba9
commit 6bb03a7eef

View File

@ -1,6 +1,9 @@
import("//llvm/utils/unittest/unittest.gni")
unittest("LLVMProfgenTests") {
deps = [ "//llvm/lib/Testing/Support" ]
deps = [
"//llvm/include/llvm/IR:public_tablegen",
"//llvm/lib/Testing/Support",
]
sources = [ "ContextCompressionTest.cpp" ]
}