diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2023-11-15 16:08:18 +0100 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2023-11-15 16:43:33 +0100 |
commit | 808352e5473f90b4042370e037788d3793f4b8c3 (patch) | |
tree | 1e49afff0eeafe875796d063f06a0941ff541255 /src/buildtool/execution_api/execution_service/TARGETS | |
parent | e3e3cba99c06d1ee56200800fce727f8c5dd4d41 (diff) | |
download | justbuild-808352e5473f90b4042370e037788d3793f4b8c3.tar.gz |
just-execute: verify the validity of all the hashes received over the wire
Diffstat (limited to 'src/buildtool/execution_api/execution_service/TARGETS')
-rw-r--r-- | src/buildtool/execution_api/execution_service/TARGETS | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/execution_service/TARGETS b/src/buildtool/execution_api/execution_service/TARGETS index cc0fad3a..56aa04d5 100644 --- a/src/buildtool/execution_api/execution_service/TARGETS +++ b/src/buildtool/execution_api/execution_service/TARGETS @@ -17,6 +17,7 @@ , ["src/buildtool/storage", "storage"] , ["src/buildtool/file_system", "file_system_manager"] , "operation_cache" + , ["src/utils/cpp", "verify_hash"] ] , "private-ldflags": ["-pthread"] } @@ -35,6 +36,7 @@ , "private-deps": [ ["src/buildtool/storage", "storage"] , ["src/buildtool/execution_api/local", "local"] + , ["src/utils/cpp", "verify_hash"] ] } , "cas_server": @@ -54,6 +56,7 @@ , ["@", "fmt", "", "fmt"] , ["src/buildtool/storage", "storage"] , ["src/buildtool/execution_api/local", "local"] + , ["src/utils/cpp", "verify_hash"] ] } , "server_implementation": @@ -98,6 +101,7 @@ , ["@", "fmt", "", "fmt"] , ["src/buildtool/storage", "storage"] , ["src/buildtool/execution_api/local", "local"] + , ["src/utils/cpp", "verify_hash"] ] } , "capabilities_server": @@ -130,6 +134,6 @@ , "deps": [["src/buildtool/logging", "logging"]] , "proto": [["@", "googleapis", "", "google_longrunning_operations_proto"]] , "stage": ["src", "buildtool", "execution_api", "execution_service"] - , "private-deps": ["operation_cache"] + , "private-deps": ["operation_cache", ["src/utils/cpp", "verify_hash"]] } } |