diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-11-13 12:26:27 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-14 14:23:06 +0100 |
commit | 23ea7c18fa594c0e53957a8f97893467c67c941f (patch) | |
tree | 6cb7a370dd00f5e9ca66fbf68c35b7533e1e3846 /src/other_tools/root_maps | |
parent | 3bc1d8aa17339154c9de88e7ee29ff533041cb6d (diff) | |
download | justbuild-23ea7c18fa594c0e53957a8f97893467c67c941f.tar.gz |
other_tools/ops_maps: Implement IWYU suggestions
Also follow-up changes to ensure build success.
Diffstat (limited to 'src/other_tools/root_maps')
-rw-r--r-- | src/other_tools/root_maps/TARGETS | 2 | ||||
-rw-r--r-- | src/other_tools/root_maps/content_git_map.cpp | 1 | ||||
-rw-r--r-- | src/other_tools/root_maps/tree_id_git_map.cpp | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/other_tools/root_maps/TARGETS b/src/other_tools/root_maps/TARGETS index 5340ef32..4ad51d2f 100644 --- a/src/other_tools/root_maps/TARGETS +++ b/src/other_tools/root_maps/TARGETS @@ -127,6 +127,7 @@ , ["src/buildtool/file_system/symlinks_map", "pragma_special"] , ["src/buildtool/multithreading", "task_system"] , ["src/buildtool/storage", "fs_utils"] + , ["src/other_tools/git_operations", "git_repo_remote"] , ["src/other_tools/utils", "content"] , ["src/utils/archive", "archive_ops"] ] @@ -183,6 +184,7 @@ , ["src/buildtool/crypto", "hash_info"] , ["src/buildtool/execution_api/serve", "mr_git_api"] , ["src/buildtool/file_system", "file_root"] + , ["src/other_tools/git_operations", "git_repo_remote"] ] } , "root_utils": diff --git a/src/other_tools/root_maps/content_git_map.cpp b/src/other_tools/root_maps/content_git_map.cpp index 2338c066..c68500ba 100644 --- a/src/other_tools/root_maps/content_git_map.cpp +++ b/src/other_tools/root_maps/content_git_map.cpp @@ -21,6 +21,7 @@ #include "src/buildtool/file_system/symlinks_map/pragma_special.hpp" #include "src/buildtool/multithreading/task_system.hpp" #include "src/buildtool/storage/fs_utils.hpp" +#include "src/other_tools/git_operations/git_repo_remote.hpp" #include "src/other_tools/root_maps/root_utils.hpp" #include "src/other_tools/utils/content.hpp" #include "src/utils/archive/archive_ops.hpp" diff --git a/src/other_tools/root_maps/tree_id_git_map.cpp b/src/other_tools/root_maps/tree_id_git_map.cpp index 7b3099ae..50cd3de8 100644 --- a/src/other_tools/root_maps/tree_id_git_map.cpp +++ b/src/other_tools/root_maps/tree_id_git_map.cpp @@ -20,6 +20,7 @@ #include "src/buildtool/crypto/hash_info.hpp" #include "src/buildtool/execution_api/serve/mr_git_api.hpp" #include "src/buildtool/file_system/file_root.hpp" +#include "src/other_tools/git_operations/git_repo_remote.hpp" #include "src/other_tools/root_maps/root_utils.hpp" namespace { |