diff options
Diffstat (limited to 'security/nss/cmd/lib/lib.gyp')
-rw-r--r-- | security/nss/cmd/lib/lib.gyp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/security/nss/cmd/lib/lib.gyp b/security/nss/cmd/lib/lib.gyp new file mode 100644 index 000000000..6b7da5810 --- /dev/null +++ b/security/nss/cmd/lib/lib.gyp @@ -0,0 +1,36 @@ +# 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': 'sectool', + 'type': 'static_library', + 'standalone_static_library': 1, + 'sources': [ + 'basicutil.c', + 'derprint.c', + 'ffs.c', + 'moreoids.c', + 'pk11table.c', + 'pppolicy.c', + 'secpwd.c', + 'secutil.c' + ], + 'dependencies': [ + '<(DEPTH)/exports.gyp:nss_exports' + ] + } + ], + 'target_defaults': { + 'defines': [ + 'NSPR20' + ] + }, + 'variables': { + 'module': 'nss' + } +}
\ No newline at end of file |