summaryrefslogtreecommitdiff
path: root/src/mongo/db/concurrency/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/concurrency/SConscript')
-rw-r--r--src/mongo/db/concurrency/SConscript9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mongo/db/concurrency/SConscript b/src/mongo/db/concurrency/SConscript
index 7967f6579c2..963961bffa8 100644
--- a/src/mongo/db/concurrency/SConscript
+++ b/src/mongo/db/concurrency/SConscript
@@ -15,16 +15,17 @@ env.Library(
],
LIBDEPS_PRIVATE=[
'$BUILD_DIR/mongo/db/catalog/catalog_helpers',
+ '$BUILD_DIR/mongo/db/concurrency/exception_util',
'$BUILD_DIR/mongo/db/db_raii',
'$BUILD_DIR/mongo/util/concurrency/thread_pool',
],
)
env.Library(
- target='write_conflict_exception',
+ target='exception_util',
source=[
- 'write_conflict_exception.cpp',
- 'write_conflict_exception.idl',
+ 'exception_util.cpp',
+ 'exception_util.idl',
],
LIBDEPS=[
'$BUILD_DIR/mongo/base',
@@ -105,7 +106,7 @@ env.CppUnitTest(
'$BUILD_DIR/mongo/transport/transport_layer_common',
'$BUILD_DIR/mongo/transport/transport_layer_mock',
'$BUILD_DIR/mongo/util/progress_meter',
+ 'exception_util',
'lock_manager',
- 'write_conflict_exception',
]
)