summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/auth/SConscript')
-rw-r--r--src/mongo/db/auth/SConscript27
1 files changed, 7 insertions, 20 deletions
diff --git a/src/mongo/db/auth/SConscript b/src/mongo/db/auth/SConscript
index b8639a62846..57af14b709d 100644
--- a/src/mongo/db/auth/SConscript
+++ b/src/mongo/db/auth/SConscript
@@ -82,7 +82,7 @@ env.Library(
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/db/audit',
'$BUILD_DIR/mongo/db/catalog/collection_options',
- '$BUILD_DIR/mongo/db/index/index_access_method',
+ '$BUILD_DIR/mongo/db/index/index_descriptor',
'$BUILD_DIR/mongo/db/op_observer',
'$BUILD_DIR/mongo/db/op_observer_util',
'$BUILD_DIR/mongo/db/repl/oplog_entry',
@@ -189,9 +189,9 @@ env.Library(
'$BUILD_DIR/mongo/base/secure_allocator',
'$BUILD_DIR/mongo/bson/util/bson_extract',
'$BUILD_DIR/mongo/db/common',
+ '$BUILD_DIR/mongo/db/curop',
'$BUILD_DIR/mongo/db/global_settings',
'$BUILD_DIR/mongo/db/namespace_string',
- '$BUILD_DIR/mongo/db/query/query_stats/query_stats',
'$BUILD_DIR/mongo/idl/feature_flag',
'$BUILD_DIR/mongo/util/concurrency/thread_pool',
'$BUILD_DIR/mongo/util/icu',
@@ -514,7 +514,7 @@ env.Library(
source=[
'ldap_operation_stats.cpp',
'ldap_cumulative_operation_stats.cpp',
- 'user_cache_acquisition_stats.cpp',
+ 'user_cache_acquisition_stats.cpp'
],
LIBDEPS_PRIVATE=[
'$BUILD_DIR/mongo/base',
@@ -522,22 +522,6 @@ env.Library(
],
)
-env.Library(
- target='authorization_session_test_fixture',
- source=[
- 'authorization_session_for_test.cpp',
- 'authorization_session_test_fixture.cpp',
- ],
- LIBDEPS=[
- '$BUILD_DIR/mongo/db/service_context_d_test_fixture',
- '$BUILD_DIR/mongo/transport/transport_layer_mock',
- 'auth',
- 'auth_impl_internal',
- 'authentication_restriction',
- 'authmocks',
- ],
-)
-
env.CppUnitTest(
target='db_auth_test',
source=[
@@ -547,6 +531,7 @@ env.CppUnitTest(
'authorization_contract_test.cpp',
'auth_op_observer_test.cpp',
'authorization_manager_test.cpp',
+ 'authorization_session_for_test.cpp',
'authorization_session_test.cpp',
'builtin_roles_test.cpp',
'privilege_parser_test.cpp',
@@ -569,12 +554,14 @@ env.CppUnitTest(
'$BUILD_DIR/mongo/db/service_context_d_test_fixture',
'$BUILD_DIR/mongo/db/service_context_test_fixture',
'$BUILD_DIR/mongo/transport/transport_layer_common',
+ '$BUILD_DIR/mongo/transport/transport_layer_mock',
'$BUILD_DIR/mongo/util/net/network',
'address_restriction',
+ 'auth',
+ 'auth_impl_internal',
'auth_op_observer',
'authentication_restriction',
'authmocks',
- 'authorization_session_test_fixture',
'saslauth',
'security_file',
'security_key',