-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BEGIN_PUBLIC Copybara import of the project: -- 82e44f3 by Fabian Meumertzheim <[email protected]>: Copy over runfiles library from Bazel The runfiles library can be maintained independently of Bazel releases and bazel_tools can refer to it via an alias. -- 885d333 by Fabian Meumertzheim <[email protected]>: Switch to new include path and namespace -- b8cd815 by Fabian Meumertzheim <[email protected]>: Fix CI -- 41b7d48 by Fabian Meumertzheim <[email protected]>: Silence warnings -- b97a30e by Fabian Meumertzheim <[email protected]>: Remove per_file_copt END_PUBLIC PiperOrigin-RevId: 697942902 Change-Id: I10a6c9baf0464722fca026db99cf572acfd159f1
- Loading branch information
1 parent
4db02b7
commit 8395ec0
Showing
9 changed files
with
1,657 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Required by abseil-cpp. | ||
common --cxxopt=-std=c++14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
bazel-* | ||
MODULE.bazel.lock | ||
/.ijwb/ | ||
/.clwb/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
load("//cc:cc_library.bzl", "cc_library") | ||
|
||
licenses(["notice"]) | ||
|
||
alias( | ||
cc_library( | ||
name = "runfiles", | ||
actual = "@bazel_tools//tools/cpp/runfiles", | ||
srcs = ["runfiles.cc"], | ||
hdrs = ["runfiles.h"], | ||
include_prefix = "rules_cc/cc/runfiles", | ||
strip_include_prefix = ".", | ||
visibility = ["//visibility:public"], | ||
) |
Oops, something went wrong.