summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/devnull/SConscript
blob: f2963e5938061e8b7c9904c53533ba7d349889b1 (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
# -*- mode: python; -*-

Import("env")

env = env.Clone()

env.Library(
    target='storage_devnull_core',
    source=[
        'devnull_kv_engine.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_record_store',
        '$BUILD_DIR/mongo/db/storage/kv/kv_prefix',
    ],
)

env.Library(
    target='storage_devnull',
    source=[
        'devnull_init.cpp',
    ],
    LIBDEPS=[
        'storage_devnull_core',
        '$BUILD_DIR/mongo/db/storage/durable_catalog_impl',
        '$BUILD_DIR/mongo/db/storage/storage_engine_impl',
    ],
    LIBDEPS_PRIVATE=[
        '$BUILD_DIR/mongo/db/storage/storage_engine_common',
    ],
)