[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 20cb6c7ceb
commit 242304f3e2
1 changed files with 4 additions and 1 deletions

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" ]
}