summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/SConscript')
-rw-r--r--src/mongo/db/repl/SConscript14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/mongo/db/repl/SConscript b/src/mongo/db/repl/SConscript
index 5266a31302c..0c2e72fc9fb 100644
--- a/src/mongo/db/repl/SConscript
+++ b/src/mongo/db/repl/SConscript
@@ -2,6 +2,13 @@
Import("env")
+env.Library('repl_settings',
+ 'repl_settings.cpp',
+ LIBDEPS=[
+ '$BUILD_DIR/mongo/base/base',
+ '$BUILD_DIR/mongo/server_parameters'
+ ])
+
env.Library(
'network_interface_impl',
'network_interface_impl.cpp',
@@ -24,7 +31,12 @@ env.Library('topology_coordinator_impl',
['topology_coordinator_impl.cpp',
'member_heartbeat_data.cpp'],
LIBDEPS=['replica_set_config',
- 'replication_executor'])
+ 'replication_executor',
+ 'repl_settings'])
+
+env.CppUnitTest('topology_coordinator_impl_test',
+ 'topology_coordinator_impl_test.cpp',
+ LIBDEPS=['topology_coordinator_impl'])
env.Library('repl_coordinator_impl',
[