summaryrefslogtreecommitdiff
path: root/src/mongo/db/timeseries/SConscript
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2021-09-22 05:48:03 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-09-22 10:13:48 +0000
commit0d792cf4f9d003b02110f249dad767c29a7b0621 (patch)
treec70d58f1230c47312c8b0779596097683488c2dd /src/mongo/db/timeseries/SConscript
parent27d9632d277e63f42752b117ac5e93ac4f0e37a7 (diff)
downloadmongo-0d792cf4f9d003b02110f249dad767c29a7b0621.tar.gz
SERVER-60011 combine time-series conversion libraries
Diffstat (limited to 'src/mongo/db/timeseries/SConscript')
-rw-r--r--src/mongo/db/timeseries/SConscript47
1 files changed, 8 insertions, 39 deletions
diff --git a/src/mongo/db/timeseries/SConscript b/src/mongo/db/timeseries/SConscript
index 3294f903b0f..2a5ac31b204 100644
--- a/src/mongo/db/timeseries/SConscript
+++ b/src/mongo/db/timeseries/SConscript
@@ -47,18 +47,6 @@ env.Library(
)
env.Library(
- target='timeseries_index_schema_conversion_functions',
- source=[
- 'timeseries_index_schema_conversion_functions.cpp',
- ],
- LIBDEPS_PRIVATE=[
- '$BUILD_DIR/mongo/db/index_names',
- '$BUILD_DIR/mongo/db/storage/storage_options',
- 'timeseries_options',
- ],
-)
-
-env.Library(
target='catalog_helper',
source=[
'catalog_helper.cpp',
@@ -72,40 +60,23 @@ env.Library(
)
env.Library(
- target='timeseries_commands_conversion_helper',
+ target='timeseries_conversion_util',
source=[
'timeseries_commands_conversion_helper.cpp',
- ],
- LIBDEPS_PRIVATE=[
- '$BUILD_DIR/mongo/db/index_commands_idl',
- '$BUILD_DIR/mongo/db/index_names',
- '$BUILD_DIR/mongo/db/namespace_string',
- '$BUILD_DIR/mongo/db/storage/storage_options',
- 'timeseries_index_schema_conversion_functions',
- 'timeseries_options',
- ],
-)
-
-env.Library(
- target='timeseries_dotted_path_support',
- source=[
'timeseries_dotted_path_support.cpp',
- ],
- LIBDEPS_PRIVATE=[
- '$BUILD_DIR/mongo/base',
- ],
-)
-
-env.Library(
- target='timeseries_update_delete_util',
- source=[
+ 'timeseries_index_schema_conversion_functions.cpp',
'timeseries_update_delete_util.cpp',
],
LIBDEPS_PRIVATE=[
+ '$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/bson/mutable/mutable_bson',
'$BUILD_DIR/mongo/db/exec/bucket_unpacker',
+ '$BUILD_DIR/mongo/db/index_commands_idl',
+ '$BUILD_DIR/mongo/db/index_names',
'$BUILD_DIR/mongo/db/namespace_string',
'$BUILD_DIR/mongo/db/ops/write_ops_parsers',
+ '$BUILD_DIR/mongo/db/storage/storage_options',
+ 'timeseries_options',
],
)
@@ -122,9 +93,7 @@ env.CppUnitTest(
LIBDEPS=[
'$BUILD_DIR/mongo/db/catalog/catalog_test_fixture',
'bucket_catalog',
- 'timeseries_dotted_path_support',
- 'timeseries_index_schema_conversion_functions',
+ 'timeseries_conversion_util',
'timeseries_options',
- 'timeseries_update_delete_util',
],
)