summaryrefslogtreecommitdiff
path: root/src/other_tools/git_operations/TARGETS
diff options
context:
space:
mode:
authorPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-02-15 17:12:15 +0100
committerPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-02-17 16:27:50 +0100
commit65944566d8d3ae81d3dc3acb8c82944f5698ca5d (patch)
tree9700c15732d21dc03fd2f33c600e2ead80694c2c /src/other_tools/git_operations/TARGETS
parentebe7695ee5803dd3c2bb4f22f5e12d776c985d56 (diff)
downloadjustbuild-65944566d8d3ae81d3dc3acb8c82944f5698ca5d.tar.gz
structure cleanup: move remote operations of GitRepo to other_tools...
...in order to not include unwanted dependencies in just proper. The new class extends the GitRepo class used for just's Git tree operations and gets used in all of just-mr's async maps.
Diffstat (limited to 'src/other_tools/git_operations/TARGETS')
-rw-r--r--src/other_tools/git_operations/TARGETS15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/other_tools/git_operations/TARGETS b/src/other_tools/git_operations/TARGETS
index ac41c117..28e514f0 100644
--- a/src/other_tools/git_operations/TARGETS
+++ b/src/other_tools/git_operations/TARGETS
@@ -16,8 +16,21 @@
, "stage": ["src", "other_tools", "git_operations"]
, "private-deps":
[ ["src/buildtool/file_system", "file_system_manager"]
- , ["src/buildtool/file_system", "git_repo"]
+ , "git_repo_remote"
, ["src/buildtool/logging", "logging"]
]
}
+, "git_repo_remote":
+ { "type": ["@", "rules", "CC", "library"]
+ , "name": ["git_repo_remote"]
+ , "hdrs": ["git_repo_remote.hpp"]
+ , "srcs": ["git_repo_remote.cpp"]
+ , "deps": [["src/buildtool/file_system", "git_repo"]]
+ , "stage": ["src", "other_tools", "git_operations"]
+ , "private-deps":
+ [ ["src/buildtool/logging", "logging"]
+ , ["@", "fmt", "", "fmt"]
+ , ["", "libgit2"]
+ ]
+ }
}