Skip to content

Commit

Permalink
Run buildifier.
Browse files Browse the repository at this point in the history
  • Loading branch information
cdleary committed Aug 9, 2023
1 parent 53340d4 commit a0de9e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dependency_support/z3/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def gen_srcs():
srcs = [
"LICENSE.txt",
"scripts/mk_make.py",
] + native.glob(["src/**", "examples/**"], exclude=GEN_HDRS + GEN_SRCS),
] + native.glob(["src/**", "examples/**"], exclude = GEN_HDRS + GEN_SRCS),
tools = ["scripts/mk_make.py"],
outs = MK_MAKE_SRCS + MK_MAKE_HDRS,
# We can't use $(location) here, since the bundled script internally
Expand Down
4 changes: 2 additions & 2 deletions dependency_support/z3/bundled.BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Description:
# Z3 is a theorem prover from Microsoft Research.

load("@com_google_xls//dependency_support/z3:build_defs.bzl", "gen_srcs", "GEN_SRCS", "GEN_HDRS")
load("@com_google_xls//dependency_support/z3:build_defs.bzl", "GEN_HDRS", "GEN_SRCS", "gen_srcs")

licenses(["notice"])

Expand Down Expand Up @@ -121,7 +121,7 @@ cc_library(
"src/test/fuzzing/*.cpp",
"src/util/*.cpp",
"src/util/lp/*.cpp",
], exclude=GEN_SRCS),
], exclude = GEN_SRCS),
hdrs = GEN_HDRS + glob([
"src/ackermannization/*.h",
"src/ackermannization/*.hpp",
Expand Down

0 comments on commit a0de9e1

Please sign in to comment.