summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/SConscript
blob: 670d464a4fb8cb3abb5f5e0dec4932fa11ddcd33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- mode: python; -*-

Import("env")

env = env.Clone()

# Should not be referenced outside this SConscript file.
env.Library(
    target='kv_drop_pending_ident_reaper',
    source=['kv_drop_pending_ident_reaper.cpp'],
    LIBDEPS=[
        '$BUILD_DIR/mongo/db/concurrency/exception_util',
        '$BUILD_DIR/mongo/db/concurrency/lock_manager',
        '$BUILD_DIR/mongo/db/storage/write_unit_of_work',
    ],
)

env.Library(
    target='kv_engine_test_harness',
    source=[
        'durable_catalog_feature_tracker_test.cpp',
        'kv_engine_test_harness.cpp',
        'kv_engine_timestamps_test.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/db/catalog/catalog_impl',
        '$BUILD_DIR/mongo/db/service_context',
        '$BUILD_DIR/mongo/db/service_context_test_fixture',
        '$BUILD_DIR/mongo/db/storage/durable_catalog_impl',
        '$BUILD_DIR/mongo/db/storage/storage_options',
        '$BUILD_DIR/mongo/unittest/unittest',
        '$BUILD_DIR/mongo/util/clock_source_mock',
    ],
)