[gn build] don't repeat arm header targets twice. no behavior change.

This commit is contained in:
Nico Weber 2020-03-15 18:20:17 -04:00
parent b1cdada023
commit 7f5b8115ac
1 changed files with 4 additions and 3 deletions

View File

@ -45,9 +45,10 @@ copy("arm_headers") {
":arm_neon",
":arm_sve",
]
sources = get_target_outputs(":arm_neon") + get_target_outputs(":arm_fp16") +
get_target_outputs(":arm_mve") + get_target_outputs(":arm_cde") +
get_target_outputs(":arm_sve")
sources = []
foreach (dep, deps) {
sources += get_target_outputs(dep)
}
outputs = [ "$clang_resource_dir/include/{{source_file_part}}" ]
}