Skip to content

Commit

Permalink
Minor Bazel cleanups.
Browse files Browse the repository at this point in the history
Change-Id: Ie9005616e61a7b97f15c3fa957decb315b901fc8
Reviewed-on: https://code-review.googlesource.com/c/re2/+/61650
Reviewed-by: Paul Wankadia <[email protected]>
Reviewed-by: Alex Chernyakhovsky <[email protected]>
  • Loading branch information
junyer committed Aug 4, 2023
1 parent 960c861 commit 9dc7ae7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,5 @@ build:linux --cxxopt=-std=c++14
build:macos --cxxopt=-std=c++14
build:windows --cxxopt=/std:c++14

# Print command lines for build commands.
build --subcommands=pretty_print

# Print test logs for failed tests.
test --test_output=errors
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

# Bazel (http://bazel.io/) BUILD file for RE2.
# Bazel (http://bazel.build/) BUILD file for RE2.

licenses(["notice"])

Expand Down
7 changes: 5 additions & 2 deletions WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

# Bazel (http://bazel.io/) WORKSPACE file for RE2.
# Bazel (http://bazel.build/) WORKSPACE file for RE2.

workspace(name = "com_googlesource_code_re2")

Expand Down Expand Up @@ -59,4 +59,7 @@ http_archive(

load("@pybind11_bazel//:python_configure.bzl", "python_configure")

python_configure(name = "local_config_python")
python_configure(
name = "local_config_python",
python_version = "3",
)
2 changes: 1 addition & 1 deletion app/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

# Bazel (http://bazel.io/) BUILD file for RE2 app.
# Bazel (http://bazel.build/) BUILD file for RE2 app.

cc_binary(
name = "_re2.js",
Expand Down
2 changes: 1 addition & 1 deletion python/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

# Bazel (http://bazel.io/) BUILD file for RE2 Python.
# Bazel (http://bazel.build/) BUILD file for RE2 Python.

load("@pybind11_bazel//:build_defs.bzl", "pybind_extension")
load("@rules_python//python:defs.bzl", "py_library", "py_test")
Expand Down

0 comments on commit 9dc7ae7

Please sign in to comment.