summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorVertexwahn <julian.amann@tum.de>2021-09-17 08:04:26 (GMT)
committerVertexwahn <julian.amann@tum.de>2021-09-17 08:04:26 (GMT)
commit277e0a016887d8ef3e5bacd950f2875aeda14efb (patch)
tree26fdad343373e05d945f01fc7f674ec0f26ecbca /docs
parent40dfd4b775a66979ad1bd19321cdfd0feadfea27 (diff)
downloadgoogletest-277e0a016887d8ef3e5bacd950f2875aeda14efb.zip
googletest-277e0a016887d8ef3e5bacd950f2875aeda14efb.tar.gz
googletest-277e0a016887d8ef3e5bacd950f2875aeda14efb.tar.bz2
Remove bazelbuild/rules_cc dependencyrefs/pull/3574/head
Diffstat (limited to 'docs')
-rw-r--r--docs/quickstart-bazel.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/quickstart-bazel.md b/docs/quickstart-bazel.md
index 362ee6d..3a63a27 100644
--- a/docs/quickstart-bazel.md
+++ b/docs/quickstart-bazel.md
@@ -62,18 +62,6 @@ as a ZIP archive from GitHub. In the above example,
GoogleTest version to use; we recommend updating the hash often to point to the
latest version.
-Bazel also needs a dependency on the
-[`rules_cc` repository](https://github.com/bazelbuild/rules_cc) to build C++
-code, so add the following to the `WORKSPACE` file:
-
-```
-http_archive(
- name = "rules_cc",
- urls = ["https://github.com/bazelbuild/rules_cc/archive/40548a2974f1aea06215272d9c2b47a14a24e556.zip"],
- strip_prefix = "rules_cc-40548a2974f1aea06215272d9c2b47a14a24e556",
-)
-```
-
Now you're ready to build C++ code that uses GoogleTest.
## Create and run a binary
@@ -104,8 +92,6 @@ To build the code, create a file named `BUILD` in the same directory with the
following contents:
```
-load("@rules_cc//cc:defs.bzl", "cc_test")
-
cc_test(
name = "hello_test",
size = "small",