gecko-dev/security/nss/lib/dbm/include/exports.gyp
Franziskus Kiefer 4c1797bf92 Bug 1305970 - land NSS 0x3e7b53b18112, r=me
--HG--
extra : rebase_source : ef363dba56df3ca76c43cfb20702ddef13d0f855
2016-10-25 20:38:17 +02:00

39 lines
872 B
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/.
{
'includes': [
'../../../coreconf/config.gypi'
],
'targets': [
{
'target_name': 'lib_dbm_include_exports',
'type': 'none',
'copies': [
{
'files': [
'mcom_db.h',
'ncompat.h',
'winfile.h'
],
'destination': '<(nss_dist_dir)/public/<(module)'
},
{
'files': [
'extern.h',
'hash.h',
'hsearch.h',
'page.h',
'queue.h',
'search.h'
],
'destination': '<(nss_dist_dir)/private/<(module)'
}
]
}
],
'variables': {
'module': 'dbm'
}
}