├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── scripts │ └── check-engines.js └── workflows │ ├── release-please.yml │ ├── tests.yml │ ├── update-gyp-next.yml │ └── visual-studio.yml ├── .gitignore ├── .npmignore ├── .release-please-manifest.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── addon.gypi ├── bin └── node-gyp.js ├── docs ├── Error-pre-versions-of-node-cannot-be-installed.md ├── Force-npm-to-use-global-node-gyp.md ├── Home.md ├── Linking-to-OpenSSL.md ├── README.md ├── Updating-npm-bundled-node-gyp.md └── binding.gyp-files-in-the-wild.md ├── eslint.config.js ├── gyp ├── .github │ ├── dependabot.yml │ └── workflows │ │ ├── node-gyp.yml │ │ ├── nodejs.yml │ │ ├── python_tests.yml │ │ └── release-please.yml ├── .gitignore ├── .release-please-manifest.json ├── AUTHORS ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── data │ ├── ninja │ │ └── build.ninja │ └── win │ │ └── large-pdb-shim.cc ├── docs │ ├── GypVsCMake.md │ ├── Hacking.md │ ├── InputFormatReference.md │ ├── LanguageSpecification.md │ ├── README.md │ ├── Testing.md │ └── UserDocumentation.md ├── gyp ├── gyp.bat ├── gyp_main.py ├── pylib │ ├── gyp │ │ ├── MSVSNew.py │ │ ├── MSVSProject.py │ │ ├── MSVSSettings.py │ │ ├── MSVSSettings_test.py │ │ ├── MSVSToolFile.py │ │ ├── MSVSUserFile.py │ │ ├── MSVSUtil.py │ │ ├── MSVSVersion.py │ │ ├── __init__.py │ │ ├── common.py │ │ ├── common_test.py │ │ ├── easy_xml.py │ │ ├── easy_xml_test.py │ │ ├── flock_tool.py │ │ ├── generator │ │ │ ├── __init__.py │ │ │ ├── analyzer.py │ │ │ ├── android.py │ │ │ ├── cmake.py │ │ │ ├── compile_commands_json.py │ │ │ ├── dump_dependency_json.py │ │ │ ├── eclipse.py │ │ │ ├── gypd.py │ │ │ ├── gypsh.py │ │ │ ├── make.py │ │ │ ├── msvs.py │ │ │ ├── msvs_test.py │ │ │ ├── ninja.py │ │ │ ├── ninja_test.py │ │ │ ├── xcode.py │ │ │ └── xcode_test.py │ │ ├── input.py │ │ ├── input_test.py │ │ ├── mac_tool.py │ │ ├── msvs_emulation.py │ │ ├── ninja_syntax.py │ │ ├── simple_copy.py │ │ ├── win_tool.py │ │ ├── xcode_emulation.py │ │ ├── xcode_emulation_test.py │ │ ├── xcode_ninja.py │ │ ├── xcodeproj_file.py │ │ └── xml_fix.py │ └── packaging │ │ ├── LICENSE │ │ ├── LICENSE.APACHE │ │ ├── LICENSE.BSD │ │ ├── __init__.py │ │ ├── _elffile.py │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _parser.py │ │ ├── _structures.py │ │ ├── _tokenizer.py │ │ ├── markers.py │ │ ├── metadata.py │ │ ├── py.typed │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py ├── pyproject.toml ├── release-please-config.json ├── test_gyp.py └── tools │ ├── README │ ├── Xcode │ ├── README │ └── Specifications │ │ ├── gyp.pbfilespec │ │ └── gyp.xclangspec │ ├── emacs │ ├── README │ ├── gyp-tests.el │ ├── gyp.el │ ├── run-unit-tests.sh │ └── testdata │ │ ├── media.gyp │ │ └── media.gyp.fontified │ ├── graphviz.py │ ├── pretty_gyp.py │ ├── pretty_sln.py │ └── pretty_vcproj.py ├── lib ├── Find-VisualStudio.cs ├── build.js ├── clean.js ├── configure.js ├── create-config-gypi.js ├── download.js ├── find-node-directory.js ├── find-python.js ├── find-visualstudio.js ├── install.js ├── list.js ├── log.js ├── node-gyp.js ├── process-release.js ├── rebuild.js ├── remove.js └── util.js ├── macOS_Catalina_acid_test.sh ├── package.json ├── release-please-config.json ├── src └── win_delay_load_hook.cc ├── test ├── common.js ├── fixtures │ ├── VSSetup_VS_2019_Professional_workload.txt │ ├── VSSetup_VS_2022_VS2019_workload.txt │ ├── VSSetup_VS_2022_multiple_install.txt │ ├── VSSetup_VS_2022_workload.txt │ ├── VSSetup_VS_2022_workload_missing_sdk.txt │ ├── VS_2017_BuildTools_minimal.txt │ ├── VS_2017_Community_workload.txt │ ├── VS_2017_Express.txt │ ├── VS_2017_Unusable.txt │ ├── VS_2019_BuildTools_minimal.txt │ ├── VS_2019_Community_workload.txt │ ├── VS_2019_Preview.txt │ ├── VS_2022_BuildTools_arm64_only.txt │ ├── VS_2022_Community_workload.txt │ ├── VS_2026_Community_workload.txt │ ├── VS_2026_Insiders_workload.txt │ ├── certs.js │ ├── nodedir │ │ └── include │ │ │ └── node │ │ │ └── config.gypi │ └── test-charmap.py ├── node_modules │ ├── hello_napi │ │ ├── binding.gyp │ │ ├── common.gypi │ │ ├── hello.c │ │ ├── hello.js │ │ └── package.json │ └── hello_world │ │ ├── binding.gyp │ │ ├── hello.cc │ │ ├── hello.js │ │ └── package.json ├── simple-proxy.js ├── test-addon.js ├── test-configure-nodedir.js ├── test-configure-python.js ├── test-create-config-gypi.js ├── test-download.js ├── test-find-accessible-sync.js ├── test-find-node-directory.js ├── test-find-python.js ├── test-find-visualstudio.js ├── test-install.js ├── test-options.js ├── test-process-release.js └── test-windows-make.js └── update-gyp.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/scripts/check-engines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/.github/scripts/check-engines.js -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/update-gyp-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/.github/workflows/update-gyp-next.yml -------------------------------------------------------------------------------- /.github/workflows/visual-studio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/.github/workflows/visual-studio.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/.npmignore -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "12.1.0" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/SECURITY.md -------------------------------------------------------------------------------- /addon.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/addon.gypi -------------------------------------------------------------------------------- /bin/node-gyp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/bin/node-gyp.js -------------------------------------------------------------------------------- /docs/Error-pre-versions-of-node-cannot-be-installed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/docs/Error-pre-versions-of-node-cannot-be-installed.md -------------------------------------------------------------------------------- /docs/Force-npm-to-use-global-node-gyp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/docs/Force-npm-to-use-global-node-gyp.md -------------------------------------------------------------------------------- /docs/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/docs/Home.md -------------------------------------------------------------------------------- /docs/Linking-to-OpenSSL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/docs/Linking-to-OpenSSL.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Updating-npm-bundled-node-gyp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/docs/Updating-npm-bundled-node-gyp.md -------------------------------------------------------------------------------- /docs/binding.gyp-files-in-the-wild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/docs/binding.gyp-files-in-the-wild.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('neostandard')({}) 4 | -------------------------------------------------------------------------------- /gyp/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/.github/dependabot.yml -------------------------------------------------------------------------------- /gyp/.github/workflows/node-gyp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/.github/workflows/node-gyp.yml -------------------------------------------------------------------------------- /gyp/.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /gyp/.github/workflows/python_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/.github/workflows/python_tests.yml -------------------------------------------------------------------------------- /gyp/.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /gyp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/.gitignore -------------------------------------------------------------------------------- /gyp/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "0.21.0" 3 | } 4 | -------------------------------------------------------------------------------- /gyp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/AUTHORS -------------------------------------------------------------------------------- /gyp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/CHANGELOG.md -------------------------------------------------------------------------------- /gyp/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /gyp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/CONTRIBUTING.md -------------------------------------------------------------------------------- /gyp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/LICENSE -------------------------------------------------------------------------------- /gyp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/README.md -------------------------------------------------------------------------------- /gyp/data/ninja/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/data/ninja/build.ninja -------------------------------------------------------------------------------- /gyp/data/win/large-pdb-shim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/data/win/large-pdb-shim.cc -------------------------------------------------------------------------------- /gyp/docs/GypVsCMake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/docs/GypVsCMake.md -------------------------------------------------------------------------------- /gyp/docs/Hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/docs/Hacking.md -------------------------------------------------------------------------------- /gyp/docs/InputFormatReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/docs/InputFormatReference.md -------------------------------------------------------------------------------- /gyp/docs/LanguageSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/docs/LanguageSpecification.md -------------------------------------------------------------------------------- /gyp/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/docs/README.md -------------------------------------------------------------------------------- /gyp/docs/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/docs/Testing.md -------------------------------------------------------------------------------- /gyp/docs/UserDocumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/docs/UserDocumentation.md -------------------------------------------------------------------------------- /gyp/gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/gyp -------------------------------------------------------------------------------- /gyp/gyp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/gyp.bat -------------------------------------------------------------------------------- /gyp/gyp_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/gyp_main.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/MSVSNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/MSVSNew.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/MSVSProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/MSVSProject.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/MSVSSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/MSVSSettings.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/MSVSSettings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/MSVSSettings_test.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/MSVSToolFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/MSVSToolFile.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/MSVSUserFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/MSVSUserFile.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/MSVSUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/MSVSUtil.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/MSVSVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/MSVSVersion.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/__init__.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/common.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/common_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/common_test.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/easy_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/easy_xml.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/easy_xml_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/easy_xml_test.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/flock_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/flock_tool.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/analyzer.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/android.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/cmake.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/compile_commands_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/compile_commands_json.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/dump_dependency_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/dump_dependency_json.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/eclipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/eclipse.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/gypd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/gypd.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/gypsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/gypsh.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/make.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/msvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/msvs.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/msvs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/msvs_test.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/ninja.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/ninja_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/ninja_test.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/xcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/xcode.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/generator/xcode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/generator/xcode_test.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/input.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/input_test.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/mac_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/mac_tool.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/msvs_emulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/msvs_emulation.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/ninja_syntax.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/simple_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/simple_copy.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/win_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/win_tool.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/xcode_emulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/xcode_emulation.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/xcode_emulation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/xcode_emulation_test.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/xcode_ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/xcode_ninja.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/xcodeproj_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/xcodeproj_file.py -------------------------------------------------------------------------------- /gyp/pylib/gyp/xml_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/gyp/xml_fix.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/LICENSE -------------------------------------------------------------------------------- /gyp/pylib/packaging/LICENSE.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/LICENSE.APACHE -------------------------------------------------------------------------------- /gyp/pylib/packaging/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/LICENSE.BSD -------------------------------------------------------------------------------- /gyp/pylib/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/__init__.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/_elffile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/_elffile.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/_manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/_manylinux.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/_musllinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/_musllinux.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/_parser.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/_structures.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/_tokenizer.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/markers.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/metadata.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gyp/pylib/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/requirements.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/specifiers.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/tags.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/utils.py -------------------------------------------------------------------------------- /gyp/pylib/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pylib/packaging/version.py -------------------------------------------------------------------------------- /gyp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/pyproject.toml -------------------------------------------------------------------------------- /gyp/release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/release-please-config.json -------------------------------------------------------------------------------- /gyp/test_gyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/test_gyp.py -------------------------------------------------------------------------------- /gyp/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/README -------------------------------------------------------------------------------- /gyp/tools/Xcode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/Xcode/README -------------------------------------------------------------------------------- /gyp/tools/Xcode/Specifications/gyp.pbfilespec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/Xcode/Specifications/gyp.pbfilespec -------------------------------------------------------------------------------- /gyp/tools/Xcode/Specifications/gyp.xclangspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/Xcode/Specifications/gyp.xclangspec -------------------------------------------------------------------------------- /gyp/tools/emacs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/emacs/README -------------------------------------------------------------------------------- /gyp/tools/emacs/gyp-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/emacs/gyp-tests.el -------------------------------------------------------------------------------- /gyp/tools/emacs/gyp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/emacs/gyp.el -------------------------------------------------------------------------------- /gyp/tools/emacs/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/emacs/run-unit-tests.sh -------------------------------------------------------------------------------- /gyp/tools/emacs/testdata/media.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/emacs/testdata/media.gyp -------------------------------------------------------------------------------- /gyp/tools/emacs/testdata/media.gyp.fontified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/emacs/testdata/media.gyp.fontified -------------------------------------------------------------------------------- /gyp/tools/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/graphviz.py -------------------------------------------------------------------------------- /gyp/tools/pretty_gyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/pretty_gyp.py -------------------------------------------------------------------------------- /gyp/tools/pretty_sln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/pretty_sln.py -------------------------------------------------------------------------------- /gyp/tools/pretty_vcproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/gyp/tools/pretty_vcproj.py -------------------------------------------------------------------------------- /lib/Find-VisualStudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/Find-VisualStudio.cs -------------------------------------------------------------------------------- /lib/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/build.js -------------------------------------------------------------------------------- /lib/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/clean.js -------------------------------------------------------------------------------- /lib/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/configure.js -------------------------------------------------------------------------------- /lib/create-config-gypi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/create-config-gypi.js -------------------------------------------------------------------------------- /lib/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/download.js -------------------------------------------------------------------------------- /lib/find-node-directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/find-node-directory.js -------------------------------------------------------------------------------- /lib/find-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/find-python.js -------------------------------------------------------------------------------- /lib/find-visualstudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/find-visualstudio.js -------------------------------------------------------------------------------- /lib/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/install.js -------------------------------------------------------------------------------- /lib/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/list.js -------------------------------------------------------------------------------- /lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/log.js -------------------------------------------------------------------------------- /lib/node-gyp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/node-gyp.js -------------------------------------------------------------------------------- /lib/process-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/process-release.js -------------------------------------------------------------------------------- /lib/rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/rebuild.js -------------------------------------------------------------------------------- /lib/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/remove.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/lib/util.js -------------------------------------------------------------------------------- /macOS_Catalina_acid_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/macOS_Catalina_acid_test.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/package.json -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/release-please-config.json -------------------------------------------------------------------------------- /src/win_delay_load_hook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/src/win_delay_load_hook.cc -------------------------------------------------------------------------------- /test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/common.js -------------------------------------------------------------------------------- /test/fixtures/VSSetup_VS_2019_Professional_workload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VSSetup_VS_2019_Professional_workload.txt -------------------------------------------------------------------------------- /test/fixtures/VSSetup_VS_2022_VS2019_workload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VSSetup_VS_2022_VS2019_workload.txt -------------------------------------------------------------------------------- /test/fixtures/VSSetup_VS_2022_multiple_install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VSSetup_VS_2022_multiple_install.txt -------------------------------------------------------------------------------- /test/fixtures/VSSetup_VS_2022_workload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VSSetup_VS_2022_workload.txt -------------------------------------------------------------------------------- /test/fixtures/VSSetup_VS_2022_workload_missing_sdk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VSSetup_VS_2022_workload_missing_sdk.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2017_BuildTools_minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2017_BuildTools_minimal.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2017_Community_workload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2017_Community_workload.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2017_Express.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2017_Express.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2017_Unusable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2017_Unusable.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2019_BuildTools_minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2019_BuildTools_minimal.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2019_Community_workload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2019_Community_workload.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2019_Preview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2019_Preview.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2022_BuildTools_arm64_only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2022_BuildTools_arm64_only.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2022_Community_workload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2022_Community_workload.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2026_Community_workload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2026_Community_workload.txt -------------------------------------------------------------------------------- /test/fixtures/VS_2026_Insiders_workload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/VS_2026_Insiders_workload.txt -------------------------------------------------------------------------------- /test/fixtures/certs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/certs.js -------------------------------------------------------------------------------- /test/fixtures/nodedir/include/node/config.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/nodedir/include/node/config.gypi -------------------------------------------------------------------------------- /test/fixtures/test-charmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/fixtures/test-charmap.py -------------------------------------------------------------------------------- /test/node_modules/hello_napi/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/node_modules/hello_napi/binding.gyp -------------------------------------------------------------------------------- /test/node_modules/hello_napi/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/node_modules/hello_napi/common.gypi -------------------------------------------------------------------------------- /test/node_modules/hello_napi/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/node_modules/hello_napi/hello.c -------------------------------------------------------------------------------- /test/node_modules/hello_napi/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/node_modules/hello_napi/hello.js -------------------------------------------------------------------------------- /test/node_modules/hello_napi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/node_modules/hello_napi/package.json -------------------------------------------------------------------------------- /test/node_modules/hello_world/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/node_modules/hello_world/binding.gyp -------------------------------------------------------------------------------- /test/node_modules/hello_world/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/node_modules/hello_world/hello.cc -------------------------------------------------------------------------------- /test/node_modules/hello_world/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/node_modules/hello_world/hello.js -------------------------------------------------------------------------------- /test/node_modules/hello_world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/node_modules/hello_world/package.json -------------------------------------------------------------------------------- /test/simple-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/simple-proxy.js -------------------------------------------------------------------------------- /test/test-addon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-addon.js -------------------------------------------------------------------------------- /test/test-configure-nodedir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-configure-nodedir.js -------------------------------------------------------------------------------- /test/test-configure-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-configure-python.js -------------------------------------------------------------------------------- /test/test-create-config-gypi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-create-config-gypi.js -------------------------------------------------------------------------------- /test/test-download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-download.js -------------------------------------------------------------------------------- /test/test-find-accessible-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-find-accessible-sync.js -------------------------------------------------------------------------------- /test/test-find-node-directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-find-node-directory.js -------------------------------------------------------------------------------- /test/test-find-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-find-python.js -------------------------------------------------------------------------------- /test/test-find-visualstudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-find-visualstudio.js -------------------------------------------------------------------------------- /test/test-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-install.js -------------------------------------------------------------------------------- /test/test-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-options.js -------------------------------------------------------------------------------- /test/test-process-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-process-release.js -------------------------------------------------------------------------------- /test/test-windows-make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/test/test-windows-make.js -------------------------------------------------------------------------------- /update-gyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/node-gyp/HEAD/update-gyp.py --------------------------------------------------------------------------------