Lines Matching full:build
4 build system. If you're using GoogleTest for the first time or need a refresher,
13 * [Bazel](https://bazel.build/), the preferred build system used by the
20 [Bazel installation guide](https://bazel.build/install).
28 [Bazel workspace](https://docs.bazel.build/versions/main/build-ref.html#workspace)
30 software you want to build. Each workspace directory has a text file named
32 dependencies required to build the outputs.
42 [Bazel external dependency](https://docs.bazel.build/versions/main/external.html)
44 [`http_archive` rule](https://docs.bazel.build/versions/main/repo/http.html#http_archive).
64 Now you're ready to build C++ code that uses GoogleTest.
90 To build the code, create a file named `BUILD` in the same directory with the
102 This `cc_test` rule declares the C++ test binary you want to build, and links to
104 file (`@com_google_googletest`). For more information about Bazel `BUILD` files,
106 [Bazel C++ Tutorial](https://docs.bazel.build/versions/main/tutorial/cpp.html).
115 Now you can build and run your test:
139 INFO: Build completed successfully, 27 total actions
142 INFO: Build completed successfully, 27 total actions