summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/SConscript
diff options
context:
space:
mode:
authorADAM David Alan Martin <adam.martin@10gen.com>2017-03-16 14:07:04 -0400
committerADAM David Alan Martin <adam.martin@10gen.com>2017-03-16 14:07:04 -0400
commit38a2af996ae67f3c65194ea38a2d6e3a64682839 (patch)
tree030002649fb57b48a6bb1d665133e54d35423675 /src/mongo/db/matcher/SConscript
parenteaf3190fd59d291bb537cd3f3edde7e6abab7466 (diff)
downloadmongo-38a2af996ae67f3c65194ea38a2d6e3a64682839.tar.gz
SERVER-28281 Rotate deps, moving catalog to top.
Rotation of the dependency graph's "slices" to move db/catalog/catalog to being fully resolved. This will facilitate breaking dependencies into this library.
Diffstat (limited to 'src/mongo/db/matcher/SConscript')
-rw-r--r--src/mongo/db/matcher/SConscript6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mongo/db/matcher/SConscript b/src/mongo/db/matcher/SConscript
index 7400ccc5726..57a4c786db0 100644
--- a/src/mongo/db/matcher/SConscript
+++ b/src/mongo/db/matcher/SConscript
@@ -139,12 +139,16 @@ env.Library(
],
LIBDEPS=[
'$BUILD_DIR/mongo/db/auth/authorization_manager_global',
- '$BUILD_DIR/mongo/db/catalog/catalog',
'$BUILD_DIR/mongo/db/concurrency/lock_manager',
'$BUILD_DIR/mongo/db/db_raii',
'$BUILD_DIR/mongo/db/fts/base',
'$BUILD_DIR/mongo/scripting/scripting_server',
'expressions',
+ #'$BUILD_DIR/mongo/db/catalog/catalog', # CYCLE
+ ],
+ LIBDEPS_TAGS=[
+ # TODO(ADAM, 2017-03-10): See `CYCLE` tags above.
+ 'illegal_cyclic_or_unresolved_dependencies_whitelisted',
],
)