pkcs12.gyp (778B)
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': 'pkcs12', 11 'type': 'static_library', 12 'sources': [ 13 'p12creat.c', 14 'p12d.c', 15 'p12dec.c', 16 'p12e.c', 17 'p12local.c', 18 'p12plcy.c', 19 'p12tmpl.c' 20 ], 21 'dependencies': [ 22 '<(DEPTH)/exports.gyp:nss_exports' 23 ], 24 'conditions': [ 25 [ 'fuzz_tls==1', { 26 'defines': [ 27 'UNSAFE_FUZZER_MODE', 28 ], 29 }], 30 ], 31 } 32 ], 33 'variables': { 34 'module': 'nss' 35 } 36 }