Skip to content

Commit 8119aed

Browse files
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 and update namespace accordingly - BUILD.bazel: Update dependency from @bazel_tools//tools/cpp/runfiles to @rules_cc//cc/runfiles
1 parent 77a7e4e commit 8119aed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

misc/bazel/internal/zipmerge/zipmerge_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
#include <gtest/gtest.h>
1111
#include <gmock/gmock.h>
12-
#include "tools/cpp/runfiles/runfiles.h"
12+
#include "rules_cc/cc/runfiles/runfiles.h"
1313

14-
using bazel::tools::cpp::runfiles::Runfiles;
14+
using rules_cc::cc::runfiles::Runfiles;
1515
using namespace std::string_literals;
1616
namespace fs = std::filesystem;
1717

0 commit comments

Comments
 (0)