diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-20 13:15:38 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-20 16:24:25 +0100 |
commit | 04765b75fd186329755695a9afba906edfcda135 (patch) | |
tree | d67671a95a478780358ee40c3b87fda38c42efb0 /src/buildtool/execution_api/common/TARGETS | |
parent | 413d9ee4211a78a35e753bb7d6b21211ae928fbd (diff) | |
download | justbuild-04765b75fd186329755695a9afba906edfcda135.tar.gz |
Separate off id generation to a separate library
... and rename appropriately to reflect contents more precisely
than the generic "common". This separation also disentangles
dependencies a bit.
Diffstat (limited to 'src/buildtool/execution_api/common/TARGETS')
-rw-r--r-- | src/buildtool/execution_api/common/TARGETS | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/src/buildtool/execution_api/common/TARGETS b/src/buildtool/execution_api/common/TARGETS index 1aff977d..f7258cb6 100644 --- a/src/buildtool/execution_api/common/TARGETS +++ b/src/buildtool/execution_api/common/TARGETS @@ -2,8 +2,7 @@ { "type": ["@", "rules", "CC", "library"] , "name": ["common"] , "hdrs": - [ "execution_common.hpp" - , "execution_api.hpp" + [ "execution_api.hpp" , "execution_action.hpp" , "execution_response.hpp" , "tree_reader.hpp" @@ -22,19 +21,33 @@ , ["src/buildtool/execution_engine/dag", "dag"] , ["src/buildtool/file_system", "git_repo"] , ["src/buildtool/file_system", "object_type"] - , ["src/buildtool/logging", "log_level"] , ["src/buildtool/logging", "logging"] , ["src/utils/cpp", "expected"] - , ["src/utils/cpp", "gsl"] - , ["src/utils/cpp", "hex_string"] ] , "private-deps": [ ["@", "json", "", "json"] , ["src/buildtool/common", "artifact_digest_factory"] + , ["src/buildtool/logging", "log_level"] + , ["src/utils/cpp", "hex_string"] , ["src/utils/cpp", "path"] ] , "stage": ["src", "buildtool", "execution_api", "common"] } +, "ids": + { "type": ["@", "rules", "CC", "library"] + , "name": ["common"] + , "hdrs": ["ids.hpp"] + , "deps": + [ ["@", "fmt", "", "fmt"] + , ["@", "gsl", "", "gsl"] + , ["src/buildtool/crypto", "hash_function"] + , ["src/buildtool/logging", "log_level"] + , ["src/buildtool/logging", "logging"] + , ["src/utils/cpp", "gsl"] + , ["src/utils/cpp", "hex_string"] + ] + , "stage": ["src", "buildtool", "execution_api", "common"] + } , "bytestream_utils": { "type": ["@", "rules", "CC", "library"] , "name": ["bytestream_utils"] |