Searched refs:processObj (Results 1 – 2 of 2) sorted by relevance
/third_party/node/deps/npm/node_modules/node-gyp/test/ |
D | test-find-node-directory.js | 16 var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] } variable 18 findNodeDirectory('/x/deps/npm/node_modules/node-gyp/lib', processObj), 31 var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] } variable 35 processObj), path.join('/y')) 39 processObj), path.join('/y')) 49 var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] } variable 51 findNodeDirectory('/nothere/npm/node_modules/node-gyp/lib', processObj), 61 var processObj 63 processObj = { execPath: '/x/y/Release/node', platform: platforms[next] } variable 65 processObj = { variable [all …]
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
D | find-node-directory.js | 6 function findNodeDirectory (scriptLocation, processObj) { argument 12 if (processObj === undefined) { 13 processObj = process 34 if (processObj.platform === 'win32') { 44 var nodeDir = path.dirname(processObj.execPath) 52 if (processObj.platform === 'win32') {
|