From 10ea6fb9a3f408bc23881235427427c3b9e97149 Mon Sep 17 00:00:00 2001 From: Mitch Powell Date: Tue, 30 Aug 2022 10:04:49 -0700 Subject: [PATCH] Mirror fbcode directory structure for container targets Summary: Mirrors the fbcode directory structure for the folly container subdirectory skip-frl-buck-targeting Reviewed By: mzlee Differential Revision: D38632215 fbshipit-source-id: 93cf4ae018417803a84b3edc750feb4cf24e17a7 --- ReactCommon/butter/BUCK | 2 +- ReactCommon/react/utils/BUCK | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ReactCommon/butter/BUCK b/ReactCommon/butter/BUCK index c0f182b361bb5e..834c4dcf6e066a 100644 --- a/ReactCommon/butter/BUCK +++ b/ReactCommon/butter/BUCK @@ -48,9 +48,9 @@ rn_xplat_cxx_library( deps = [ "//third-party/glog:glog", "//xplat/fbsystrace:fbsystrace", - "//xplat/folly:container_f14_hash", "//xplat/folly:memory", "//xplat/folly:shared_mutex", "//xplat/folly:small_vector", + "//xplat/folly/container:f14_hash", ], ) diff --git a/ReactCommon/react/utils/BUCK b/ReactCommon/react/utils/BUCK index bc2b70d745d77d..ef3cb974095b79 100644 --- a/ReactCommon/react/utils/BUCK +++ b/ReactCommon/react/utils/BUCK @@ -56,7 +56,7 @@ rn_xplat_cxx_library( tests = [], visibility = ["PUBLIC"], deps = [ - "//xplat/folly:container_evicting_cache_map", + "//xplat/folly/container:evicting_cache_map", "//xplat/jsi:jsi", react_native_xplat_target("butter:butter"), react_native_xplat_target("react/debug:debug"),