Skip to content

Commit 473ed8e

Browse files
committed
[gn] port 8a27ef6 better
I added this to the wrong target. Reverts 00f83a8 and adds it to the right target instead.
1 parent 139df36 commit 473ed8e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

llvm/utils/gn/secondary/lldb/source/Symbol/BUILD.gn

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
static_library("Symbol") {
22
output_name = "lldbSymbol"
3-
configs += [
4-
"//llvm/utils/gn/build:clang_code",
5-
"//llvm/utils/gn/build:lldb_code",
6-
]
3+
configs += [ "//llvm/utils/gn/build:lldb_code" ]
74
deps = [
85
"//lldb/source/Core",
96
"//lldb/source/Expression",

llvm/utils/gn/secondary/lldb/source/Target/BUILD.gn

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ lldb_tablegen("TargetPropertiesEnum") {
1111

1212
static_library("Target") {
1313
output_name = "lldbTarget"
14-
configs += [ "//llvm/utils/gn/build:lldb_code" ]
14+
configs += [
15+
"//llvm/utils/gn/build:clang_code",
16+
"//llvm/utils/gn/build:lldb_code",
17+
]
1518
deps = [
1619
":TargetProperties",
1720
":TargetPropertiesEnum",

0 commit comments

Comments
 (0)