src.gyp (818B)
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': 'dbm', 11 'type': 'static_library', 12 'sources': [ 13 'db.c', 14 'h_bigkey.c', 15 'h_func.c', 16 'h_log2.c', 17 'h_page.c', 18 'hash.c', 19 'hash_buf.c', 20 'mktemp.c' 21 ], 22 'dependencies': [ 23 '<(DEPTH)/exports.gyp:dbm_exports' 24 ] 25 } 26 ], 27 'target_defaults': { 28 'defines': [ 29 'STDC_HEADERS', 30 'HAVE_STRERROR', 31 'HAVE_SNPRINTF', 32 'MEMMOVE', 33 '__DBINTERFACE_PRIVATE' 34 ] 35 }, 36 'variables': { 37 'module': 'dbm' 38 } 39 }