├── .gclient ├── .github ├── actions │ ├── build-linux │ │ └── action.yml │ ├── build-macos │ │ └── action.yml │ └── build-windows │ │ └── action.yml └── workflows │ ├── scripts │ ├── archive-name.ps1 │ └── archive-name.sh │ ├── v8-build-test.yml │ ├── v8-release.yml │ └── v8-version-check.yml ├── .gitignore ├── .gitmodules ├── .gitpod.Dockerfile ├── .gitpod.yml ├── README.md ├── VERSION ├── archive.bat ├── archive.sh ├── args ├── Linux.gn ├── README.md ├── Windows.gn └── macOS.gn ├── scripts ├── get_arch.bat ├── get_arch.sh ├── get_os.bat └── get_os.sh ├── v8_compile.bat ├── v8_compile.sh ├── v8_download.bat ├── v8_download.sh ├── v8_test.bat └── v8_test.sh /.gclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.gclient -------------------------------------------------------------------------------- /.github/actions/build-linux/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.github/actions/build-linux/action.yml -------------------------------------------------------------------------------- /.github/actions/build-macos/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.github/actions/build-macos/action.yml -------------------------------------------------------------------------------- /.github/actions/build-windows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.github/actions/build-windows/action.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/archive-name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.github/workflows/scripts/archive-name.ps1 -------------------------------------------------------------------------------- /.github/workflows/scripts/archive-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.github/workflows/scripts/archive-name.sh -------------------------------------------------------------------------------- /.github/workflows/v8-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.github/workflows/v8-build-test.yml -------------------------------------------------------------------------------- /.github/workflows/v8-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.github/workflows/v8-release.yml -------------------------------------------------------------------------------- /.github/workflows/v8-version-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.github/workflows/v8-version-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | image: 2 | file: .gitpod.Dockerfile 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 14.2.231.21 2 | -------------------------------------------------------------------------------- /archive.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/archive.bat -------------------------------------------------------------------------------- /archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/archive.sh -------------------------------------------------------------------------------- /args/Linux.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/args/Linux.gn -------------------------------------------------------------------------------- /args/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/args/README.md -------------------------------------------------------------------------------- /args/Windows.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/args/Windows.gn -------------------------------------------------------------------------------- /args/macOS.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/args/macOS.gn -------------------------------------------------------------------------------- /scripts/get_arch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/scripts/get_arch.bat -------------------------------------------------------------------------------- /scripts/get_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/scripts/get_arch.sh -------------------------------------------------------------------------------- /scripts/get_os.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/scripts/get_os.bat -------------------------------------------------------------------------------- /scripts/get_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/scripts/get_os.sh -------------------------------------------------------------------------------- /v8_compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/v8_compile.bat -------------------------------------------------------------------------------- /v8_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/v8_compile.sh -------------------------------------------------------------------------------- /v8_download.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/v8_download.bat -------------------------------------------------------------------------------- /v8_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/v8_download.sh -------------------------------------------------------------------------------- /v8_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/v8_test.bat -------------------------------------------------------------------------------- /v8_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuoruan/libv8/HEAD/v8_test.sh --------------------------------------------------------------------------------