diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-09-23 13:06:54 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-09-23 13:06:54 +0200 |
commit | 1f99796d6f808f006dff6dc6576910bef493e244 (patch) | |
tree | 92ff88b497fed6a6d69ebc90dc88f3db3c940b8e /test/buildtool/crypto | |
parent | dc1db0e8b43f5e907a3ded2e39da8b58fa50a04b (diff) | |
download | justbuild-1f99796d6f808f006dff6dc6576910bef493e244.tar.gz |
Reorder dependencies and remove duplicates in OSS
Diffstat (limited to 'test/buildtool/crypto')
-rw-r--r-- | test/buildtool/crypto/TARGETS | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/buildtool/crypto/TARGETS b/test/buildtool/crypto/TARGETS index 43617dae..40971816 100644 --- a/test/buildtool/crypto/TARGETS +++ b/test/buildtool/crypto/TARGETS @@ -4,8 +4,8 @@ , "srcs": ["hasher.test.cpp"] , "private-deps": [ ["@", "catch2", "", "catch2"] - , ["", "catch-main"] , ["@", "src", "src/buildtool/crypto", "hasher"] + , ["", "catch-main"] ] , "stage": ["test", "buildtool", "crypto"] } @@ -15,8 +15,8 @@ , "srcs": ["hash_function.test.cpp"] , "private-deps": [ ["@", "catch2", "", "catch2"] - , ["", "catch-main"] , ["@", "src", "src/buildtool/crypto", "hash_function"] + , ["", "catch-main"] ] , "stage": ["test", "buildtool", "crypto"] } @@ -26,15 +26,15 @@ , "srcs": ["hash_info.test.cpp"] , "private-deps": [ ["@", "catch2", "", "catch2"] - , ["", "catch-main"] - , ["@", "src", "src/buildtool/crypto", "hash_info"] , ["@", "src", "src/buildtool/crypto", "hash_function"] + , ["@", "src", "src/buildtool/crypto", "hash_info"] + , ["", "catch-main"] ] , "stage": ["test", "buildtool", "crypto"] } , "TESTS": { "type": ["@", "rules", "test", "suite"] , "stage": ["crypto"] - , "deps": ["hasher", "hash_function", "hash_info"] + , "deps": ["hash_function", "hash_info", "hasher"] } } |