diff options
author | Henrik Edin <henrik.edin@mongodb.com> | 2018-09-27 15:04:21 -0400 |
---|---|---|
committer | Henrik Edin <henrik.edin@mongodb.com> | 2018-10-04 14:31:16 -0400 |
commit | d19dcfc1ccf76518898c5c6d0ebb3e78e37af45c (patch) | |
tree | 6861c500a1f620ff24316dd8203fe494020c896a /src/mongo/scripting | |
parent | 3fcaa553f5c8ade0a4b6d1b66c29478fe7e2d937 (diff) | |
download | mongo-d19dcfc1ccf76518898c5c6d0ebb3e78e37af45c.tar.gz |
SERVER-37294 Remove dependency on clientdriver_network and transport_layer for embedded.
Diffstat (limited to 'src/mongo/scripting')
-rw-r--r-- | src/mongo/scripting/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/scripting/SConscript b/src/mongo/scripting/SConscript index c1726fba7cd..edbc90ce365 100644 --- a/src/mongo/scripting/SConscript +++ b/src/mongo/scripting/SConscript @@ -20,7 +20,7 @@ env.Library( ], LIBDEPS=[ '$BUILD_DIR/mongo/base', - '$BUILD_DIR/mongo/client/clientdriver_network', + '$BUILD_DIR/mongo/client/clientdriver_minimal', '$BUILD_DIR/mongo/shell/mongojs', '$BUILD_DIR/mongo/util/md5', ], @@ -155,6 +155,7 @@ if usemozjs: '$BUILD_DIR/mongo/db/service_context', ], LIBDEPS_PRIVATE=[ + '$BUILD_DIR/mongo/client/clientdriver_network', '$BUILD_DIR/third_party/shim_mozjs', ], ) |