зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
562 B
Python
19 строки
562 B
Python
# -*- 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/.
|
|
|
|
Library('ffi')
|
|
|
|
if CONFIG['MOZ_NATIVE_FFI']:
|
|
OS_LIBS += CONFIG['MOZ_FFI_LIBS']
|
|
else:
|
|
if CONFIG['_MSC_VER']:
|
|
prefix = 'lib'
|
|
else:
|
|
prefix = ''
|
|
USE_LIBS += [
|
|
'static:/js/src/ctypes/libffi/.libs/%sffi' % prefix,
|
|
]
|