aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/buildgen
diff options
context:
space:
mode:
authorGravatar Masood Malekghassemi <soltanmm@users.noreply.github.com>2015-12-11 15:53:38 -0800
committerGravatar Masood Malekghassemi <soltanmm@users.noreply.github.com>2016-01-07 09:43:42 -0800
commit116982ea89e85c046fbc3a48b8829e3c4d4a5c1a (patch)
treee34b843840bddf9d42938f31e7c743b071b8e7f8 /tools/buildgen
parentbbaad2a7e4d15977b86d5c8a0ca477ab3658f38c (diff)
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))