summaryrefslogtreecommitdiff
path: root/src/mongo/s/SConscript
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2016-10-27 17:49:19 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2016-10-28 16:29:27 -0400
commitcd9e8e08276dee0d6232042a46d2b78799e33787 (patch)
treec25c7d70d8745986d6ea8a1ba07068cd58df5383 /src/mongo/s/SConscript
parent4a6e21b8c747877f32362deafcdad603b49b9475 (diff)
downloadmongo-cd9e8e08276dee0d6232042a46d2b78799e33787.tar.gz
SERVER-25665 Cleanup chunk metadata caching library dependencies
No functional changes. Removes unused includes and libraries and moves cluster_write.cpp to be only part of the mongos commands since it is not used elsewhere.
Diffstat (limited to 'src/mongo/s/SConscript')
-rw-r--r--src/mongo/s/SConscript24
1 files changed, 2 insertions, 22 deletions
diff --git a/src/mongo/s/SConscript b/src/mongo/s/SConscript
index 285ffd4b746..2ccbe5b43e4 100644
--- a/src/mongo/s/SConscript
+++ b/src/mongo/s/SConscript
@@ -188,27 +188,6 @@ env.CppUnitTest(
]
)
-#
-# Implementations of components to perform cluster operations in mongos
-#
-# This is the glue code implementing the interfaces required by cluster ops
-# in particular environments.
-#
-env.Library(
- target='cluster_ops_impl',
- source=[
- 'chunk_manager_targeter.cpp',
- 'cluster_write.cpp',
- ],
- LIBDEPS=[
- 'client/sharding_client',
- 'mongoscore',
- 'write_ops/cluster_write_op',
- 'write_ops/cluster_write_op_conversion',
- '$BUILD_DIR/mongo/base',
- ],
-)
-
env.CppUnitTest(
target='chunk_manager_targeter_test',
source=[
@@ -296,6 +275,7 @@ env.Library(
env.Library(
target='mongoscore',
source=[
+ 'chunk_manager_targeter.cpp',
'cluster_cursor_stats.cpp',
'mongos_options.cpp',
's_only.cpp',
@@ -305,8 +285,8 @@ env.Library(
'version_mongos.cpp',
],
LIBDEPS=[
- '$BUILD_DIR/mongo/db/auth/authmongos',
'$BUILD_DIR/mongo/client/parallel',
+ '$BUILD_DIR/mongo/db/auth/authmongos',
'$BUILD_DIR/mongo/db/fts/ftsmongos',
'$BUILD_DIR/mongo/db/stats/counters',
'$BUILD_DIR/mongo/s/query/cluster_query',