2014-07-13 21:52:44 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
NO_DIST_INSTALL = True
|
|
|
|
SOURCES += [
|
2014-10-21 06:16:19 +00:00
|
|
|
'gmp-fake.cpp',
|
|
|
|
'gmp-test-decryptor.cpp',
|
|
|
|
'gmp-test-storage.cpp',
|
2014-07-13 21:52:44 +00:00
|
|
|
]
|
|
|
|
|
2014-09-04 00:04:45 +00:00
|
|
|
SharedLibrary("fake")
|
2014-07-13 21:52:44 +00:00
|
|
|
|
2014-11-03 10:02:30 +00:00
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
OS_LIBS += [
|
|
|
|
'ole32',
|
|
|
|
]
|
|
|
|
|
2014-07-13 21:52:44 +00:00
|
|
|
USE_STATIC_LIBS = True
|
|
|
|
NO_VISIBILITY_FLAGS = True
|
|
|
|
# Don't use STL wrappers; this isn't Gecko code
|
|
|
|
DISABLE_STL_WRAPPING = True
|
2014-11-14 08:36:20 +00:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|