summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2017-04-19 23:43:54 -0400
committerAndrew Morrow <acm@mongodb.com>2017-04-20 14:26:54 -0400
commit96ab10faa3738ab9c374621f57719167767c5f10 (patch)
tree2ae25fd2ff9dc01b25cc2ade63e781d4c441b9f3
parent0293c14cbdc5646d9f09f4fe5b2a27e6d540dce0 (diff)
downloadmongo-96ab10faa3738ab9c374621f57719167767c5f10.tar.gz
SERVER-28878 Mark mozjs shim as a private dependency edge
-rw-r--r--src/mongo/scripting/SConscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/scripting/SConscript b/src/mongo/scripting/SConscript
index 0f6ccad52f0..20d222ffbc5 100644
--- a/src/mongo/scripting/SConscript
+++ b/src/mongo/scripting/SConscript
@@ -1,5 +1,7 @@
# -*- mode: python -*-
+import libdeps
+
Import([
'env',
'get_option',
@@ -145,7 +147,7 @@ if usemozjs:
LIBDEPS=[
'bson_template_evaluator',
'scripting_common',
- '$BUILD_DIR/third_party/shim_mozjs',
+ ('$BUILD_DIR/third_party/shim_mozjs', libdeps.dependency.Private),
'$BUILD_DIR/mongo/shell/mongojs',
'$BUILD_DIR/mongo/db/service_context',
],