Skip to content

Commit

Permalink
Adds dependencies on submodules.
Browse files Browse the repository at this point in the history
Ignores deps/go.mod, which is useful to add temporarily to stop "go
mod tidy" from trying to download some protobuf package for an example
inside the v8 repository.
  • Loading branch information
tommie committed Dec 30, 2023
1 parent 7370d03 commit 695981b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

deps/darwin-x86_64/libv8_debug.a
deps/.gclient_previous*
deps/go.mod
c.out
go.work
.idea/*
Expand Down
9 changes: 9 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
module github.com/tommie/v8go

go 1.17

require (
github.com/tommie/v8go/deps/android_amd64 v0.0.0-20231230100618-7370d03fcda3
github.com/tommie/v8go/deps/android_arm64 v0.0.0-20231230100618-7370d03fcda3
github.com/tommie/v8go/deps/darwin_amd64 v0.0.0-20231230100618-7370d03fcda3
github.com/tommie/v8go/deps/darwin_arm64 v0.0.0-20231230100618-7370d03fcda3
github.com/tommie/v8go/deps/linux_amd64 v0.0.0-20231230100618-7370d03fcda3
github.com/tommie/v8go/deps/linux_arm64 v0.0.0-20231230100618-7370d03fcda3
)
12 changes: 12 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
github.com/tommie/v8go/deps/android_amd64 v0.0.0-20231230100618-7370d03fcda3 h1:a4nMLaoseAYgEbWADFmEj6c06OiPvQsFUs24qNVSRbE=
github.com/tommie/v8go/deps/android_amd64 v0.0.0-20231230100618-7370d03fcda3/go.mod h1:P3Y430vJQICpWshYTlJ4F7d80w5CQfWG+y1Av72oYiI=
github.com/tommie/v8go/deps/android_arm64 v0.0.0-20231230100618-7370d03fcda3 h1:J3kwUe2wvmJJKpzLxu0AtpOtxuUcj28USnSw+pG2hu4=
github.com/tommie/v8go/deps/android_arm64 v0.0.0-20231230100618-7370d03fcda3/go.mod h1:VoiPjUf1OwfkR/KS0D6PLF1axid06DuCptoyTkDKHiI=
github.com/tommie/v8go/deps/darwin_amd64 v0.0.0-20231230100618-7370d03fcda3 h1:jrg7Efoq74lZjPHtjJ/ak5FtV/Tp6LRZ8gew9dAR2cg=
github.com/tommie/v8go/deps/darwin_amd64 v0.0.0-20231230100618-7370d03fcda3/go.mod h1:rnquNHGZ2NABmOB0KxdkoZr2oaECO2XWOcgHqRO7P7Y=
github.com/tommie/v8go/deps/darwin_arm64 v0.0.0-20231230100618-7370d03fcda3 h1:MbaHR6QuRkugLCSInzAAyCggSwmqz+KW3C92LaZNJm8=
github.com/tommie/v8go/deps/darwin_arm64 v0.0.0-20231230100618-7370d03fcda3/go.mod h1:nXZZ5Y/Nhe0guNiFf66Nfs4ELgYlOsyYx4gD1HnGIeA=
github.com/tommie/v8go/deps/linux_amd64 v0.0.0-20231230100618-7370d03fcda3 h1:pb6ELR3+XRJmUqDM51gHRg87z6rJvMzm9pJqO86dp+Y=
github.com/tommie/v8go/deps/linux_amd64 v0.0.0-20231230100618-7370d03fcda3/go.mod h1:x+ZODfvTFg4K3B1cUQEiXWd0BbRxzZbxMR3P79eHc+M=
github.com/tommie/v8go/deps/linux_arm64 v0.0.0-20231230100618-7370d03fcda3 h1:bPfGUlNy2iCPbLOEk5bCXAWQEHn/H7gYSeiVm09dFZg=
github.com/tommie/v8go/deps/linux_arm64 v0.0.0-20231230100618-7370d03fcda3/go.mod h1:RRqUJUvKTf8jnA3reWNlunWV3Bg3yJSbasm6j6UDBHc=

0 comments on commit 695981b

Please sign in to comment.