diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-08-12 14:20:44 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-08-24 09:36:31 -0400 |
commit | 01fff117c028cb820755ba8a7a392ba4c51a0ecc (patch) | |
tree | ba614e67fb64ad51afe5426ea5b91d28bb003218 /src/mongo/scripting/SConscript | |
parent | dd15f9c211f5bc40b6fa8a7cd44350d3aeb87d89 (diff) | |
download | mongo-01fff117c028cb820755ba8a7a392ba4c51a0ecc.tar.gz |
SERVER-9666 Tag cyclic or incomplete libraries, add more missing edges
Diffstat (limited to 'src/mongo/scripting/SConscript')
-rw-r--r-- | src/mongo/scripting/SConscript | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mongo/scripting/SConscript b/src/mongo/scripting/SConscript index e6bc59b5464..71416337fd0 100644 --- a/src/mongo/scripting/SConscript +++ b/src/mongo/scripting/SConscript @@ -19,6 +19,11 @@ env.Library( '$BUILD_DIR/mongo/util/foundation', '$BUILD_DIR/mongo/util/md5', ], + LIBDEPS_TAGS=[ + # Depends on mongo::createDirectClient, which is not uniquely defined + 'incomplete' + ], + ) env.Library( @@ -136,6 +141,11 @@ if usemozjs: '$BUILD_DIR/mongo/shell/mongojs', '$BUILD_DIR/mongo/db/service_context', ], + LIBDEPS_TAGS=[ + # Depends on haveLocalShardingInfo and createDirectClient, which are not + # uniquely defined. + 'incomplete', + ], ) else: env.Library( |