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

Import("env")

env = env.Clone()

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

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',
        '$BUILD_DIR/mongo/db/storage/storage_engine_lock_file',
    ],
)