summaryrefslogtreecommitdiff
path: root/src/mongo/executor/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/executor/SConscript')
-rw-r--r--src/mongo/executor/SConscript48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/mongo/executor/SConscript b/src/mongo/executor/SConscript
index 355a0d6cc06..627675845a2 100644
--- a/src/mongo/executor/SConscript
+++ b/src/mongo/executor/SConscript
@@ -119,16 +119,6 @@ env.Library(
)
env.Library(
- target='connection_pool_controllers',
- source=[
- 'connection_pool_controllers.cpp',
- ],
- LIBDEPS=[
- 'connection_pool_executor',
- ],
-)
-
-env.Library(
target='network_test_env',
source=[
'network_test_env.cpp',
@@ -241,20 +231,6 @@ env.Library(
)
env.Library(
- target='pinned_connection_task_executor',
- source=[
- 'pinned_connection_task_executor.cpp',
- ],
- LIBDEPS=[
- 'scoped_task_executor',
- 'task_executor_interface',
- ],
- LIBDEPS_PRIVATE=[
- '$BUILD_DIR/mongo/client/async_client',
- ],
-)
-
-env.Library(
target='network_interface_thread_pool',
source=[
'network_interface_thread_pool.cpp',
@@ -292,15 +268,11 @@ env.Library(
target='task_executor_cursor',
source=[
'task_executor_cursor.cpp',
- 'task_executor_cursor_parameters.idl',
],
LIBDEPS=[
'$BUILD_DIR/mongo/db/query/command_request_response',
'task_executor_interface',
],
- LIBDEPS_PRIVATE=[
- 'pinned_connection_task_executor_factory',
- ],
)
env.Library(
@@ -316,21 +288,6 @@ env.Library(
],
)
-env.Library(
- target='pinned_connection_task_executor_factory',
- source=[
- 'pinned_connection_task_executor_factory.cpp',
- ],
- LIBDEPS=[
- 'task_executor_interface',
- ],
- LIBDEPS_PRIVATE=[
- 'network_interface',
- 'pinned_connection_task_executor',
- 'thread_pool_task_executor',
- ],
-)
-
env.CppUnitTest(
target='executor_test',
source=[
@@ -340,17 +297,14 @@ env.CppUnitTest(
'mock_network_fixture_test.cpp',
'network_interface_mock_test.cpp',
'network_interface_mock_test_fixture.cpp',
- 'pinned_connection_task_executor_test.cpp',
'scoped_task_executor_test.cpp',
'task_executor_cursor_test.cpp',
'thread_pool_task_executor_test.cpp',
],
LIBDEPS=[
- '$BUILD_DIR/mongo/transport/message_compressor',
'connection_pool_executor',
'egress_tag_closer_manager',
'network_interface_mock',
- 'pinned_connection_task_executor',
'scoped_task_executor',
'task_executor_cursor',
'thread_pool_task_executor',
@@ -366,12 +320,10 @@ env.CppIntegrationTest(
'thread_pool_task_executor_integration_test.cpp',
],
LIBDEPS=[
- '$BUILD_DIR/mongo/client/async_client',
'$BUILD_DIR/mongo/client/clientdriver_network',
'$BUILD_DIR/mongo/db/wire_version',
'$BUILD_DIR/mongo/executor/network_interface_factory',
'$BUILD_DIR/mongo/executor/network_interface_thread_pool',
- '$BUILD_DIR/mongo/executor/pinned_connection_task_executor',
'$BUILD_DIR/mongo/executor/thread_pool_task_executor',
'$BUILD_DIR/mongo/transport/transport_layer_egress_init',
'$BUILD_DIR/mongo/util/concurrency/thread_pool',