Skip to content

Commit 4f69217

Browse files
committed
Fix build issues with stb change
1 parent 348d8f4 commit 4f69217

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ cc_library(
3131
visibility = ["//visibility:public"],
3232
deps = [
3333
"//:pixelmatch-cpp17",
34-
"@stb//:image",
35-
"@stb//:image_write",
34+
"//third_party/stb:image",
35+
"//third_party/stb:image_write",
3636
],
3737
)

third_party/stb/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,5 +157,5 @@ cc_library(
157157
name = "vorbis",
158158
defines = ["STB_VORBIS_HEADER_ONLY"],
159159
visibility = ["//visibility:public"],
160-
deps = ["//:vorbis-private"],
160+
deps = [":vorbis-private"],
161161
)

0 commit comments

Comments
 (0)