Skip to content

Commit

Permalink
fuzztest: Update GN files for FuzzTest and Abseil
Browse files Browse the repository at this point in the history
Change-Id: I9c1d1fb5e42a79e8053b2b0fdca887b264c6e60f
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/234453
Commit-Queue: Aaron Green <[email protected]>
Reviewed-by: Taylor Cramer <[email protected]>
Lint: Lint 🤖 <[email protected]>
  • Loading branch information
nopsledder authored and CQ Bot Account committed Sep 6, 2024
1 parent 54679d2 commit 77d4ffe
Show file tree
Hide file tree
Showing 32 changed files with 3,268 additions and 415 deletions.
2 changes: 1 addition & 1 deletion pw_package/py/pw_package/packages/abseil_cpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, *args, **kwargs):
'https://pigweed.googlesource.com/'
'third_party/github/abseil/abseil-cpp'
),
commit='3ab97e7212bff931a201c794fa1331960158bbfa',
commit='e9ca8d1ca225ef94fd20890b5440b22f490a410a',
**kwargs,
)

Expand Down
2 changes: 1 addition & 1 deletion pw_package/py/pw_package/packages/fuzztest.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, *args, **kwargs):
'https://pigweed.googlesource.com/'
'third_party/github/google/fuzztest'
),
commit='6eb010c7223a6aa609b94d49bfc06ac88f922961',
commit='b7257a64c701fc30265eb91179bf9310549bf440',
**kwargs,
)

Expand Down
37 changes: 37 additions & 0 deletions third_party/abseil-cpp/absl/algorithm/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,51 @@ import("$dir_pw_third_party/abseil-cpp/abseil-cpp.gni")
# Generated from @com_google_absl//absl/algorithm:algorithm
abseil_cpp_source_set("algorithm") {
public = [ "$dir_pw_third_party_abseil_cpp/absl/algorithm/algorithm.h" ]
cflags = [
"-DNOMINMAX",
"-Wall",
"-Wcast-qual",
"-Wconversion-null",
"-Wextra",
"-Wformat-security",
"-Wmissing-declarations",
"-Wnon-virtual-dtor",
"-Woverlength-strings",
"-Wpointer-arith",
"-Wundef",
"-Wunused-local-typedefs",
"-Wunused-result",
"-Wvarargs",
"-Wvla",
"-Wwrite-strings",
]
public_deps = [ "../base:config" ]
}

# Generated from @com_google_absl//absl/algorithm:container
abseil_cpp_source_set("container") {
public = [ "$dir_pw_third_party_abseil_cpp/absl/algorithm/container.h" ]
cflags = [
"-DNOMINMAX",
"-Wall",
"-Wcast-qual",
"-Wconversion-null",
"-Wextra",
"-Wformat-security",
"-Wmissing-declarations",
"-Wnon-virtual-dtor",
"-Woverlength-strings",
"-Wpointer-arith",
"-Wundef",
"-Wunused-local-typedefs",
"-Wunused-result",
"-Wvarargs",
"-Wvla",
"-Wwrite-strings",
]
public_deps = [
":algorithm",
"../base:config",
"../base:core_headers",
"../base:nullability",
"../meta:type_traits",
Expand Down
Loading

0 comments on commit 77d4ffe

Please sign in to comment.