diff options
author | Benety Goh <benety@mongodb.com> | 2019-11-21 16:16:40 +0000 |
---|---|---|
committer | evergreen <evergreen@mongodb.com> | 2019-11-21 16:16:40 +0000 |
commit | 725469619160f02e62d8dace122e3210594597ff (patch) | |
tree | 07194b50b90db6afcc090179d4b997619b751b98 /src/mongo/db/SConscript | |
parent | 7eaae0cabb86f75d5b31de7c755f357c6b031d91 (diff) | |
download | mongo-725469619160f02e62d8dace122e3210594597ff.tar.gz |
SERVER-43642 remove IndexBuilder
Diffstat (limited to 'src/mongo/db/SConscript')
-rw-r--r-- | src/mongo/db/SConscript | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mongo/db/SConscript b/src/mongo/db/SConscript index 77eb23e934e..bb653aa9e7c 100644 --- a/src/mongo/db/SConscript +++ b/src/mongo/db/SConscript @@ -859,21 +859,11 @@ env.Library( env.Library( target="index_d", source=[ - "index_builder.cpp", "index_legacy.cpp", ], LIBDEPS=[ - 'db_raii', 'index/index_access_methods', - '$BUILD_DIR/mongo/db/index_builds_coordinator_interface', '$BUILD_DIR/mongo/db/catalog/index_catalog', - '$BUILD_DIR/mongo/db/catalog/multi_index_block', - ], - LIBDEPS_PRIVATE=[ - "logical_clock", - "server_options_core", - '$BUILD_DIR/mongo/db/catalog/index_timestamp_helper', - '$BUILD_DIR/mongo/db/repl/timestamp_block', ], ) |