aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/buildgen/plugins/transitive_dependencies.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/buildgen/plugins/transitive_dependencies.py')
-rw-r--r--tools/buildgen/plugins/transitive_dependencies.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/buildgen/plugins/transitive_dependencies.py b/tools/buildgen/plugins/transitive_dependencies.py
index c2d3da3a3b..1fc76a3cd5 100644
--- a/tools/buildgen/plugins/transitive_dependencies.py
+++ b/tools/buildgen/plugins/transitive_dependencies.py
@@ -58,6 +58,10 @@ def mako_plugin(dictionary):
node_modules = dictionary.get('node_modules')
targets = dictionary.get('targets')
- for target_list in (libs, node_modules, targets):
+ for target_list in (libs, targets, node_modules):
for target in target_list:
target['transitive_deps'] = transitive_deps(target, libs)
+
+ python_dependencies = dictionary.get('python_dependencies')
+ python_dependencies['transitive_deps'] = (
+ transitive_deps(python_dependencies, libs))