[roll] Roll third_party/fuchsia-infra-bazel-rules [roll] Roll third_party/googletest This change adjusts how `ASSERT_NEAR` and `EXPECT_NEAR` treats infinity, such that `ASSERT_NEAR(inf, inf, 0)` passes. This makes the behavior more consistent with `ASSERT_EQ(inf, inf)` which succeeds.

Some examples of asserts that now pass:
```
ASSERT_NEAR(inf, inf, 0)
ASSERT_NEAR(-inf, inf, inf)
ASSERT_NEAR(inf, x, inf)  // x is any finite floating point value
```

PiperOrigin-RevId: 685748133
Original-Revision: 62df7bdbc10887e094661e07ec2595b7920376fd

Original-Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia-infra-bazel-rules/+/1137395
Original-Revision: 3d9312c9882d5463cedf1d3089dfd4865e4a8583

Roller-URL: https://ci.chromium.org/b/8734082594639477953
CQ-Do-Not-Cancel-Tryjobs: true
Change-Id: I8da38acf2367d8cf93265f0dc17bf427fbb501db
Reviewed-on: https://fuchsia-review.googlesource.com/c/drivers/graphics/gpu/+/1137337
Commit-Queue: GI Roller <global-integration-roller@fuchsia-infra.iam.gserviceaccount.com>
1 file changed
tree: f0a4e7e58efdefcdd236fdf35b072f4aa3c517f0
  1. common/
  2. drivers/
  3. fidl/
  4. manifests/
  5. products/
  6. scripts/
  7. src/
  8. third_party/
  9. tools/
  10. .bazelrc
  11. .clang-format
  12. .gitignore
  13. .gitmodules
  14. AUTHORS
  15. BUILD.bazel
  16. CONTRIBUTING.md
  17. fuchsia_env.toml
  18. LICENSE
  19. MODULE.bazel
  20. OWNERS
  21. PATENTS
  22. README.md
  23. rollers.textproto
  24. shac.star
  25. shac.textproto
  26. WORKSPACE.bazel
  27. workspace.bzl
README.md

Fuchsia GPU Driver Repository

Getting Started

To perform an initial bootstrap, execute the following:

  1. In a terminal, clone the repository:

    git clone https://fuchsia.googlesource.com/drivers/graphics/gpu
    
  2. Change to that directory:

    cd gpu
    
  3. Fetch all git submodules:

    git submodule init && git submodule update --recursive
    
  4. Bootstrap the build environment:

    scripts/bootstrap.sh
    
  5. Fetch and build the SDK:

    tools/bazel build @fuchsia_sdk//:fuchsia_toolchain_sdk
    

See the getting started guide for more info.

Building And Testing the ARM Mali GPU driver

See drivers/msd-arm-mali/README.md.