# -*- mode: python -*- Import("env") env = env.Clone() # This needs to use its own env to tell scons to suppress scanning the .tpl.h and .tpl.cpp inputs # for #includes since they aren't directly preprocessed. Scons will still scan the generated files # to produce the correct implicit dependencies when they are compiled. env_for_error_codes = env.Clone() env_for_error_codes['SCANNERS'] = [] generateErrorCodes = env_for_error_codes.Command( target=[ 'error_codes.h', 'error_codes.cpp' ], source=[ 'generate_error_codes.py', 'error_codes.err', 'error_codes.tpl.h', 'error_codes.tpl.cpp', ], action=['$PYTHON ${SOURCES[0]} ${SOURCES[1]} ' '${SOURCES[2]}=${TARGETS[0]} ' '${SOURCES[3]}=${TARGETS[1]}' ], ) env.Alias('generated-sources', generateErrorCodes) env.CppUnitTest('base_test', ['counter_test.cpp', 'data_builder_test.cpp', 'data_cursor_test.cpp', 'data_range_cursor_test.cpp', 'data_range_test.cpp', 'data_type_string_data_test.cpp', 'data_type_terminated_test.cpp', 'data_type_validated_test.cpp', 'data_view_test.cpp', 'encoded_value_storage_test.cpp', 'initializer_dependency_graph_test.cpp', 'initializer_test.cpp', 'murmurhash3_test.cpp', 'owned_pointer_map_test.cpp', 'owned_pointer_vector_test.cpp', 'parse_number_test.cpp', 'status_test.cpp', 'status_with_test.cpp', 'string_data_test.cpp', 'transaction_error_test.cpp', 'uuid_test.cpp', ]) env.Library( target=[ 'system_error' ], source=[ 'system_error.cpp', ], LIBDEPS=[ '$BUILD_DIR/mongo/base', ], ) env.CppUnitTest( target=[ 'system_error_test', ], source=[ 'system_error_test.cpp', ], LIBDEPS=[ 'system_error', ], ) env.CppUnitTest( target=[ 'clonable_ptr_test', ], source=[ 'clonable_ptr_test.cpp', ], ) env.Library( target=[ 'secure_allocator' ], source=[ 'secure_allocator.cpp', ], LIBDEPS=[ '$BUILD_DIR/mongo/base', '$BUILD_DIR/mongo/db/server_options_core', '$BUILD_DIR/mongo/util/processinfo', '$BUILD_DIR/mongo/util/secure_zero_memory', ], ) env.CppUnitTest( target=[ 'secure_allocator_test', ], source=[ 'secure_allocator_test.cpp', ], LIBDEPS=[ 'secure_allocator', ], )