refactor: migrate C++ runfiles API from bazel_tools to rules_cc

Bazel 9 moves the C++ runfiles library from @bazel_tools to @rules_cc.
Update zipmerge_test.cpp:
- Change include from tools/cpp/runfiles to rules_cc/cc/runfiles
- Update namespace from bazel::tools::cpp::runfiles to rules_cc::cc::runfiles

Note: The BUILD.bazel dependency change is in a separate commit.
This commit is contained in:
Paolo Tranquilli
2026-02-05 17:35:39 +01:00
parent 10a2824b82
commit f8ed810a44

View File

@@ -9,9 +9,9 @@
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include "tools/cpp/runfiles/runfiles.h"
#include "rules_cc/cc/runfiles/runfiles.h"
using bazel::tools::cpp::runfiles::Runfiles;
using rules_cc::cc::runfiles::Runfiles;
using namespace std::string_literals;
namespace fs = std::filesystem;