-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/master' into abseil
Signed-off-by: Alyssa Wilk <[email protected]>
- Loading branch information
Showing
232 changed files
with
5,823 additions
and
1,416 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
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
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,6 @@ | ||
cc_library( | ||
name = "backward", | ||
hdrs = ["backward.hpp"], | ||
includes = ["."], | ||
visibility = ["//visibility:public"], | ||
) |
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,21 @@ | ||
load("@subpar//:subpar.bzl", "par_binary") | ||
|
||
# gcovr is difficult to run from a CI environment because it has hard | ||
# assumptions about its local working directory, which interact poorly | ||
# with `bazel run`. To make gcovr more mobile, we package it into a | ||
# .par file (a mostly-hermetic "Python binary"). | ||
par_binary( | ||
name = "gcovr", | ||
srcs = [":renamed_gcovr.py"], | ||
main = ":renamed_gcovr.py", | ||
visibility = ["//visibility:public"], | ||
) | ||
|
||
# par_binary expects its `srcs` to contain only *.py files, but gcovr is | ||
# distributed as a script with no filename extension. Rename it here. | ||
genrule( | ||
name = "gcovr_to_exec_py", | ||
srcs = ["scripts/gcovr"], | ||
outs = ["renamed_gcovr.py"], | ||
cmd = "cat $(location scripts/gcovr) > $(location renamed_gcovr.py)", | ||
) |
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,7 @@ | ||
cc_library( | ||
name = "http_parser", | ||
srcs = ["http_parser.c", "http_parser.h"], | ||
hdrs = ["http_parser.h"], | ||
includes = ["."], | ||
visibility = ["//visibility:public"], | ||
) |
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,6 @@ | ||
cc_library( | ||
name = "rapidjson", | ||
hdrs = glob(["include/rapidjson/**/*.h"]), | ||
includes = ["include"], | ||
visibility = ["//visibility:public"], | ||
) |
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,6 @@ | ||
cc_library( | ||
name = "tclap", | ||
hdrs = glob(["include/tclap/*.h"]), | ||
includes = ["include"], | ||
visibility = ["//visibility:public"], | ||
) |
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,6 @@ | ||
cc_library( | ||
name = "xxhash", | ||
srcs = ["xxhash.c"], | ||
hdrs = ["xxhash.h"], | ||
visibility = ["//visibility:public"], | ||
) |
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,7 @@ | ||
REPO_LOCATIONS = { | ||
"jinja2": "https://github.com/pallets/jinja.git", | ||
"grpc_transcoding": "https://github.com/grpc-ecosystem/grpc-httpjson-transcoding.git", | ||
"envoy_api": "https://github.com/envoyproxy/data-plane-api.git", | ||
"data-plane-api": "https://github.com/envoyproxy/data-plane-api.git", | ||
"markupsafe": "https://github.com/pallets/markupsafe.git", | ||
"abseil_cpp": "https://github.com/abseil/abseil-cpp", | ||
} |
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
Oops, something went wrong.