# -*- mode: python -*-

Import("env")

env.Library(
    target='lock_mgr',
    source=[
        'lock_mgr.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/base/base',
        '$BUILD_DIR/third_party/shim_boost',
        '$BUILD_DIR/mongo/foundation'
    ],
)

