summaryrefslogtreecommitdiff
path: root/src/mongo/db/stats
diff options
context:
space:
mode:
authorADAM David Alan Martin <adam.martin@10gen.com>2017-01-17 14:40:56 -0500
committerADAM David Alan Martin <adam.martin@10gen.com>2017-01-17 14:44:05 -0500
commiteb71198dbd1b51ea9653cf58c3e1fc2f9cbce4fb (patch)
tree374edb3cc214f79019983e8fc21090f3eb8afd52 /src/mongo/db/stats
parentfdec6ed545c0045646c7cca33eb4094385bc9429 (diff)
downloadmongo-eb71198dbd1b51ea9653cf58c3e1fc2f9cbce4fb.tar.gz
SERVER-27709 Remove cycles & change incomplete tag
Allow `incomplete` for the time being to prevent breaking code in enterprise. The cycle/incomplete exemption has been renamed to `illegal_cyclic_or_unresolved_dependencies_whitelisted`, to discourage overuse. Removed the incompletes that we can.
Diffstat (limited to 'src/mongo/db/stats')
-rw-r--r--src/mongo/db/stats/SConscript7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mongo/db/stats/SConscript b/src/mongo/db/stats/SConscript
index 3bd923f64b1..3020659a95b 100644
--- a/src/mongo/db/stats/SConscript
+++ b/src/mongo/db/stats/SConscript
@@ -100,12 +100,11 @@ env.Library(
LIBDEPS=[
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/db/commands/core',
+ '$BUILD_DIR/mongo/db/catalog/catalog',
+ '$BUILD_DIR/mongo/db/index/index_access_methods',
'$BUILD_DIR/mongo/db/range_deleter',
+ '$BUILD_DIR/mongo/db/range_deleter_d',
'fill_locker_info',
'top',
],
- LIBDEPS_TAGS=[
- # Depends on mongo::getDeleter from db/serveronly
- 'incomplete',
- ],
)