Update index.html dependency with Bazel section.

This commit is contained in:
panzhongxian 2020-09-23 17:57:54 +08:00 committed by Andreas Schuh
parent cb68d9eeb8
commit a386bd0f20

View file

@ -156,7 +156,7 @@ add the following lines to your <code>WORKSPACE</code> file
git_repository(
name = "com_github_gflags_gflags",
remote = "https://github.com/gflags/gflags.git",
tags = ["v2.2.2"]
tag = "v2.2.2"
)
</pre>
@ -172,7 +172,7 @@ In order to use the single-threaded shared gflags library, use the dependency
cc_binary(
name = "foo",
srcs = ["main.cc"],
deps = ["//external:gflags"],
deps = ["@com_github_gflags_gflags//:gflags"],
)
</pre>