Generate dependencies per package build for Debian (#147335)

Fixes #13089
This commit is contained in:
Raymond Zhao
2022-07-19 10:43:05 -07:00
committed by GitHub
parent 650e4b5e68
commit 8feb40b928
14 changed files with 832 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ function calculatePackageDeps(binaryPath: string): Set<string> {
return requires;
}
// Based on https://source.chromium.org/chromium/chromium/src/+/main:chrome/installer/linux/rpm/merge_package_deps.py
// Based on https://source.chromium.org/chromium/chromium/src/+/main:chrome/installer/linux/rpm/merge_package_deps.py.
function mergePackageDeps(inputDeps: Set<string>[]): Set<string> {
const requires = new Set<string>();
for (const depSet of inputDeps) {