summaryrefslogtreecommitdiff
path: root/src/mongo/db/timeseries/SConscript
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2021-09-10 06:16:21 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-09-10 10:39:26 +0000
commit0b3787d34b3f0963dea2fc53ddc10ff0e8ae81be (patch)
tree56efc08e665b21cb53aa99ede7bc3fe27f4c3147 /src/mongo/db/timeseries/SConscript
parent52e44c576826cae6871694ff6ee48bb43207d33d (diff)
downloadmongo-0b3787d34b3f0963dea2fc53ddc10ff0e8ae81be.tar.gz
SERVER-59855 merge timeseries_idl into timeseries_options
Diffstat (limited to 'src/mongo/db/timeseries/SConscript')
-rw-r--r--src/mongo/db/timeseries/SConscript22
1 files changed, 6 insertions, 16 deletions
diff --git a/src/mongo/db/timeseries/SConscript b/src/mongo/db/timeseries/SConscript
index 96d79cf1b4a..da95424f213 100644
--- a/src/mongo/db/timeseries/SConscript
+++ b/src/mongo/db/timeseries/SConscript
@@ -5,17 +5,6 @@ Import("env")
env = env.Clone()
env.Library(
- target='timeseries_idl',
- source=[
- 'timeseries.idl',
- ],
- LIBDEPS=[
- '$BUILD_DIR/mongo/idl/idl_parser',
- '$BUILD_DIR/mongo/idl/server_parameter',
- ],
-)
-
-env.Library(
target='bucket_catalog',
source=[
'bucket_catalog.cpp',
@@ -27,7 +16,6 @@ env.Library(
'$BUILD_DIR/mongo/db/concurrency/write_conflict_exception',
'$BUILD_DIR/mongo/db/views/views',
'$BUILD_DIR/mongo/util/fail_point',
- 'timeseries_idl',
'timeseries_options',
],
)
@@ -40,7 +28,7 @@ env.Library(
LIBDEPS_PRIVATE=[
'$BUILD_DIR/mongo/db/index_names',
'$BUILD_DIR/mongo/db/storage/storage_options',
- 'timeseries_idl',
+ 'timeseries_options',
],
)
@@ -53,7 +41,7 @@ env.Library(
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/db/catalog/collection_catalog',
'$BUILD_DIR/mongo/db/namespace_string',
- 'timeseries_idl',
+ 'timeseries_options',
],
)
@@ -68,17 +56,20 @@ env.Library(
'$BUILD_DIR/mongo/db/namespace_string',
'$BUILD_DIR/mongo/db/storage/storage_options',
'timeseries_index_schema_conversion_functions',
+ 'timeseries_options',
],
)
env.Library(
target='timeseries_options',
source=[
+ 'timeseries.idl',
'timeseries_options.cpp',
],
LIBDEPS_PRIVATE=[
'$BUILD_DIR/mongo/base',
- 'timeseries_idl',
+ '$BUILD_DIR/mongo/idl/idl_parser',
+ '$BUILD_DIR/mongo/idl/server_parameter',
],
)
@@ -115,7 +106,6 @@ env.CppUnitTest(
LIBDEPS=[
'$BUILD_DIR/mongo/db/catalog/catalog_test_fixture',
'bucket_catalog',
- 'timeseries_idl',
'timeseries_index_schema_conversion_functions',
'timeseries_options',
'timeseries_update_delete_util',