summaryrefslogtreecommitdiff
path: root/src/other_tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/other_tools')
-rw-r--r--src/other_tools/just_mr/TARGETS5
-rw-r--r--src/other_tools/just_mr/utils.cpp2
-rw-r--r--src/other_tools/ops_maps/TARGETS2
-rw-r--r--src/other_tools/ops_maps/content_cas_map.cpp4
-rw-r--r--src/other_tools/ops_maps/repo_fetch_map.cpp2
-rw-r--r--src/other_tools/root_maps/TARGETS2
-rw-r--r--src/other_tools/root_maps/content_git_map.cpp2
-rw-r--r--src/other_tools/root_maps/distdir_git_map.cpp4
8 files changed, 15 insertions, 8 deletions
diff --git a/src/other_tools/just_mr/TARGETS b/src/other_tools/just_mr/TARGETS
index 6706b780..e534d986 100644
--- a/src/other_tools/just_mr/TARGETS
+++ b/src/other_tools/just_mr/TARGETS
@@ -33,7 +33,10 @@
]
, "stage": ["src", "other_tools", "just_mr"]
, "private-deps":
- [["src/utils/cpp", "path"], ["src/buildtool/execution_api/local", "local"]]
+ [ ["src/utils/cpp", "path"]
+ , ["src/buildtool/execution_api/local", "local"]
+ , ["src/buildtool/file_system", "file_storage"]
+ ]
}
, "exit_codes":
{ "type": ["@", "rules", "CC", "library"]
diff --git a/src/other_tools/just_mr/utils.cpp b/src/other_tools/just_mr/utils.cpp
index f0ca606c..f2272053 100644
--- a/src/other_tools/just_mr/utils.cpp
+++ b/src/other_tools/just_mr/utils.cpp
@@ -14,8 +14,8 @@
#include "src/other_tools/just_mr/utils.hpp"
-#include "src/buildtool/execution_api/local/file_storage.hpp"
#include "src/buildtool/execution_api/local/local_cas.hpp"
+#include "src/buildtool/file_system/file_storage.hpp"
#include "src/utils/cpp/path.hpp"
namespace JustMR::Utils {
diff --git a/src/other_tools/ops_maps/TARGETS b/src/other_tools/ops_maps/TARGETS
index b5f2fe16..72002975 100644
--- a/src/other_tools/ops_maps/TARGETS
+++ b/src/other_tools/ops_maps/TARGETS
@@ -62,6 +62,7 @@
[ ["src/utils/cpp", "curl_easy_handle"]
, ["src/buildtool/crypto", "hasher"]
, ["src/buildtool/execution_api/local", "local"]
+ , ["src/buildtool/file_system", "file_storage"]
]
}
, "repo_fetch_map":
@@ -74,6 +75,7 @@
, "private-deps":
[ ["src/other_tools/just_mr", "utils"]
, ["src/buildtool/execution_api/local", "local"]
+ , ["src/buildtool/file_system", "file_storage"]
]
}
}
diff --git a/src/other_tools/ops_maps/content_cas_map.cpp b/src/other_tools/ops_maps/content_cas_map.cpp
index 28b2e4bc..55aa78a7 100644
--- a/src/other_tools/ops_maps/content_cas_map.cpp
+++ b/src/other_tools/ops_maps/content_cas_map.cpp
@@ -15,8 +15,8 @@
#include "src/other_tools/ops_maps/content_cas_map.hpp"
#include "src/buildtool/crypto/hasher.hpp"
-#include "src/buildtool/execution_api/local/file_storage.hpp"
#include "src/buildtool/execution_api/local/local_cas.hpp"
+#include "src/buildtool/file_system/file_storage.hpp"
#include "src/utils/cpp/curl_easy_handle.hpp"
namespace {
@@ -124,4 +124,4 @@ auto CreateContentCASMap(JustMR::PathsPtr const& just_mr_paths,
(*setter)(true);
};
return AsyncMapConsumer<ArchiveContent, bool>(ensure_in_cas, jobs);
-} \ No newline at end of file
+}
diff --git a/src/other_tools/ops_maps/repo_fetch_map.cpp b/src/other_tools/ops_maps/repo_fetch_map.cpp
index e0ff438e..890e8518 100644
--- a/src/other_tools/ops_maps/repo_fetch_map.cpp
+++ b/src/other_tools/ops_maps/repo_fetch_map.cpp
@@ -14,8 +14,8 @@
#include "src/other_tools/ops_maps/repo_fetch_map.hpp"
-#include "src/buildtool/execution_api/local/file_storage.hpp"
#include "src/buildtool/execution_api/local/local_cas.hpp"
+#include "src/buildtool/file_system/file_storage.hpp"
#include "src/other_tools/just_mr/utils.hpp"
auto CreateRepoFetchMap(gsl::not_null<ContentCASMap*> const& content_cas_map,
diff --git a/src/other_tools/root_maps/TARGETS b/src/other_tools/root_maps/TARGETS
index 64f44494..a17bdecd 100644
--- a/src/other_tools/root_maps/TARGETS
+++ b/src/other_tools/root_maps/TARGETS
@@ -16,6 +16,7 @@
, ["src/buildtool/execution_api/local", "config"]
, ["src/buildtool/execution_api/local", "local"]
, ["src/utils/cpp", "tmp_dir"]
+ , ["src/buildtool/file_system", "file_storage"]
]
}
, "commit_git_map":
@@ -62,6 +63,7 @@
, "private-deps":
[ ["src/utils/cpp", "archive_ops"]
, ["src/buildtool/execution_api/local", "local"]
+ , ["src/buildtool/file_system", "file_storage"]
]
}
}
diff --git a/src/other_tools/root_maps/content_git_map.cpp b/src/other_tools/root_maps/content_git_map.cpp
index 9b23c0f9..cab723b4 100644
--- a/src/other_tools/root_maps/content_git_map.cpp
+++ b/src/other_tools/root_maps/content_git_map.cpp
@@ -14,8 +14,8 @@
#include "src/other_tools/root_maps/content_git_map.hpp"
-#include "src/buildtool/execution_api/local/file_storage.hpp"
#include "src/buildtool/execution_api/local/local_cas.hpp"
+#include "src/buildtool/file_system/file_storage.hpp"
#include "src/utils/cpp/archive_ops.hpp"
namespace {
diff --git a/src/other_tools/root_maps/distdir_git_map.cpp b/src/other_tools/root_maps/distdir_git_map.cpp
index 4e75658e..36914118 100644
--- a/src/other_tools/root_maps/distdir_git_map.cpp
+++ b/src/other_tools/root_maps/distdir_git_map.cpp
@@ -18,8 +18,8 @@
#include "src/buildtool/execution_api/common/execution_common.hpp"
#include "src/buildtool/execution_api/local/config.hpp"
-#include "src/buildtool/execution_api/local/file_storage.hpp"
#include "src/buildtool/execution_api/local/local_cas.hpp"
+#include "src/buildtool/file_system/file_storage.hpp"
#include "src/other_tools/just_mr/utils.hpp"
#include "src/other_tools/ops_maps/content_cas_map.hpp"
#include "src/other_tools/ops_maps/critical_git_op_map.hpp"
@@ -197,4 +197,4 @@ auto CreateDistdirGitMap(
}
};
return AsyncMapConsumer<DistdirInfo, nlohmann::json>(distdir_to_git, jobs);
-} \ No newline at end of file
+}