# -*- mode: python; -*- Import('env') env = env.Clone() env.Library( target='bson_extract', source=[ 'bson_extract.cpp', ], LIBDEPS=[ '$BUILD_DIR/mongo/base', ], ) env.CppUnitTest( target='bson_util_test', source=[ 'bson_check_test.cpp', 'bson_extract_test.cpp', 'builder_test.cpp', ], LIBDEPS=[ '$BUILD_DIR/mongo/base', 'bson_extract', ], )