Skip to content

Commit

Permalink
Change BUILD order
Browse files Browse the repository at this point in the history
  • Loading branch information
grasskin committed Jul 10, 2020
1 parent 1af1f3c commit 623430d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tensorflow/security/fuzzing/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -31,34 +31,34 @@ tf_fuzz_target(
name = "consume_non_whitespace_fuzz",
srcs = ["consume_non_whitespace_fuzz.cc"],
deps = [
"//tensorflow/core/platform:str_util",
"//tensorflow/core/platform:stringpiece"
"//tensorflow/core/platform:stringpiece",
"//tensorflow/core/platform:str_util"
],
)

tf_fuzz_target(
name = "consume_leading_digits_fuzz",
srcs = ["consume_leading_digits_fuzz.cc"],
deps = [
"//tensorflow/core/platform:str_util",
"//tensorflow/core/platform:stringpiece"
"//tensorflow/core/platform:stringpiece",
"//tensorflow/core/platform:str_util"
],
)

tf_fuzz_target(
name = "arg_def_case_fuzz",
srcs = ["arg_def_case_fuzz.cc"],
deps = [
"//tensorflow/core/platform:str_util",
"//tensorflow/core/platform:stringpiece"
"//tensorflow/core/platform:stringpiece",
"//tensorflow/core/platform:str_util"
],
)

tf_fuzz_target(
name = "string_replace_fuzz",
srcs = ["string_replace_fuzz.cc"],
deps = [
"//tensorflow/core/platform:str_util",
"//tensorflow/core/platform:stringpiece"
"//tensorflow/core/platform:stringpiece",
"//tensorflow/core/platform:str_util"
],
)

0 comments on commit 623430d

Please sign in to comment.