Skip to content

Commit

Permalink
Fix deps to unbreak OSS Buck2
Browse files Browse the repository at this point in the history
Summary: Avoid the `fbcode` prefix, match the other rules

Reviewed By: yfeldblum

Differential Revision: D62591179

fbshipit-source-id: 670c3f743ecc08174ee4b2c6b6084510240990e0
  • Loading branch information
Cullen Walsh authored and facebook-github-bot committed Sep 12, 2024
1 parent 0c3e5c5 commit 2f3cbdc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions folly/container/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ cpp_library(
name = "span",
headers = ["span.h"],
exported_deps = [
"fbcode//folly:portability",
"fbcode//folly/portability:constexpr",
"//folly:portability",
"//folly/portability:constexpr",
],
)

Expand Down
4 changes: 2 additions & 2 deletions folly/container/test/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,8 @@ cpp_unittest(
headers = [],
supports_static_listing = False,
deps = [
"fbcode//folly/container:span",
"fbcode//folly/portability:gtest",
"//folly/container:span",
"//folly/portability:gtest",
],
)

Expand Down
4 changes: 2 additions & 2 deletions folly/hash/test/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ cpp_unittest(
srcs = ["traits_test.cpp"],
headers = [],
deps = [
"fbcode//folly/hash:traits",
"fbcode//folly/portability:gtest",
"//folly/hash:traits",
"//folly/portability:gtest",
],
)

Expand Down

0 comments on commit 2f3cbdc

Please sign in to comment.