aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/buildgen
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2016-01-12 08:26:52 -0800
committerGravatar Nathaniel Manista <nathaniel@google.com>2016-01-12 08:26:52 -0800
commit4cdb6247a6364bbc8c412e555d30d812611e4783 (patch)
tree2b9c7dc700e34531fe7e48ee18126d97be291f03 /tools/buildgen
parent2eeae979d88ef1d03e070efa2d3fcefa7c678a93 (diff)
parent387e116fd6e3afd2413bd2d01b25eb19decd842e (diff)
Merge pull request #4457 from soltanmm/plate-tectonics
Include core in Python distribution.
Diffstat (limited to 'tools/buildgen')
-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))