diff options
Diffstat (limited to 'src/mongo/db/commands/SConscript')
-rw-r--r-- | src/mongo/db/commands/SConscript | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mongo/db/commands/SConscript b/src/mongo/db/commands/SConscript index db92db44bac..d28bd5d286b 100644 --- a/src/mongo/db/commands/SConscript +++ b/src/mongo/db/commands/SConscript @@ -107,10 +107,12 @@ env.Library( LIBDEPS_PRIVATE=[ '$BUILD_DIR/mongo/bson/mutable/mutable_bson', '$BUILD_DIR/mongo/crypto/encrypted_field_config', + '$BUILD_DIR/mongo/crypto/fle_crypto', '$BUILD_DIR/mongo/db/auth/auth', '$BUILD_DIR/mongo/db/auth/authprivilege', '$BUILD_DIR/mongo/db/commands', '$BUILD_DIR/mongo/db/common', + '$BUILD_DIR/mongo/db/fle_crud', '$BUILD_DIR/mongo/db/kill_sessions', '$BUILD_DIR/mongo/db/logical_session_cache', '$BUILD_DIR/mongo/db/logical_session_cache_impl', @@ -560,6 +562,7 @@ env.Library( LIBDEPS_PRIVATE=[ '$BUILD_DIR/mongo/base', '$BUILD_DIR/mongo/client/clientdriver_minimal', + '$BUILD_DIR/mongo/crypto/fle_crypto', '$BUILD_DIR/mongo/db/auth/address_restriction', '$BUILD_DIR/mongo/db/auth/auth', '$BUILD_DIR/mongo/db/auth/auth_options', @@ -581,6 +584,7 @@ env.Library( '$BUILD_DIR/mongo/db/dbhelpers', '$BUILD_DIR/mongo/db/exec/sbe_cmd', '$BUILD_DIR/mongo/db/exec/stagedebug_cmd', + '$BUILD_DIR/mongo/db/fle_crud_mongod', '$BUILD_DIR/mongo/db/index_builds_coordinator_interface', '$BUILD_DIR/mongo/db/multitenancy', '$BUILD_DIR/mongo/db/pipeline/pipeline', @@ -604,6 +608,7 @@ env.Library( '$BUILD_DIR/mongo/idl/idl_parser', '$BUILD_DIR/mongo/util/net/ssl_manager', 'core', + 'create_command', 'kill_common', 'map_reduce_agg', 'mongod_fcv', @@ -811,6 +816,7 @@ env.CppUnitTest( target="db_commands_test", source=[ "index_filter_commands_test.cpp", + "fle_compact_test.cpp", "list_collections_filter_test.cpp", "mr_test.cpp" if get_option('js-engine') != 'none' else [], "parse_log_component_settings_test.cpp", @@ -818,10 +824,14 @@ env.CppUnitTest( "set_cluster_parameter_invocation_test.cpp", ], LIBDEPS=[ + "$BUILD_DIR/mongo/crypto/encrypted_field_config", + "$BUILD_DIR/mongo/crypto/fle_crypto", "$BUILD_DIR/mongo/db/auth/authmocks", "$BUILD_DIR/mongo/db/catalog/collection", "$BUILD_DIR/mongo/db/commands/list_collections_filter", "$BUILD_DIR/mongo/db/dbdirectclient", + "$BUILD_DIR/mongo/db/fle_crud", + "$BUILD_DIR/mongo/db/fle_mocks", "$BUILD_DIR/mongo/db/multitenancy", "$BUILD_DIR/mongo/db/op_observer", "$BUILD_DIR/mongo/db/query/query_planner", |