exports.gyp (1189B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 { 5 'includes': [ 6 '../../coreconf/config.gypi' 7 ], 8 'targets': [ 9 { 10 'target_name': 'lib_freebl_exports', 11 'type': 'none', 12 'copies': [ 13 { 14 'files': [ 15 'blapit.h', 16 'ecl/ecl-exp.h', 17 'shsign.h' 18 ], 19 'conditions': [ 20 [ 'OS=="linux"', { 21 'files': [ 22 'nsslowhash.h', 23 ], 24 }], 25 ], 26 'destination': '<(nss_public_dist_dir)/<(module)' 27 }, 28 { 29 'files': [ 30 'cmac.h', 31 'alghmac.h', 32 'blapi.h', 33 'blake2b.h', 34 'chacha20poly1305.h', 35 'ec.h', 36 'ecl/ecl-curve.h', 37 'ecl/ecl.h', 38 'ecl/eclt.h', 39 'hmacct.h', 40 'secmpi.h', 41 'secrng.h' 42 ], 43 'destination': '<(nss_private_dist_dir)/<(module)' 44 } 45 ] 46 } 47 ], 48 'variables': { 49 'module': 'nss' 50 } 51 }