-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pw_bloat: Build and run
pw bloat
CLI command in Bazel
Defines the pw_bloat Python code as a Bazel library target and adds a runnable Bazel binary which invokes the equivalent of the `pw bloat` command. Usable as bazel run //pw_bloat/py:bloat -- /abs/path/to/binary.elf Tested: The above command works from both outside and within an activated Pigweed environment, and `pw bloat` continues to function within a Pigweed environment. Change-Id: I79fb799e9be184f4f7d0da2865f0cf388cf9b615 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/215456 Lint: Lint 🤖 <[email protected]> Presubmit-Verified: CQ Bot Account <[email protected]> Reviewed-by: Armando Montanez <[email protected]> Commit-Queue: Alexei Frolov <[email protected]>
- Loading branch information
Showing
3 changed files
with
66 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 2024 The Pigweed Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
# use this file except in compliance with the License. You may obtain a copy of | ||
# the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations under | ||
# the License. | ||
|
||
load("@rules_python//python:defs.bzl", "py_binary", "py_library") | ||
load("//pw_build:selects.bzl", "TARGET_COMPATIBLE_WITH_HOST_SELECT") | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
py_library( | ||
name = "pw_bloat", | ||
srcs = [ | ||
"pw_bloat/bloat.py", | ||
"pw_bloat/bloaty_config.py", | ||
"pw_bloat/label.py", | ||
"pw_bloat/label_output.py", | ||
], | ||
data = ["@bloaty//:all"], | ||
imports = ["."], | ||
deps = [ | ||
"@pigweed//pw_cli/py:pw_cli", | ||
"@python_packages_pyelftools//:pkg", | ||
"@rules_python//python/runfiles", | ||
], | ||
) | ||
|
||
py_binary( | ||
name = "bloat", | ||
srcs = ["pw_bloat/__main__.py"], | ||
main = "pw_bloat/__main__.py", | ||
target_compatible_with = select(TARGET_COMPATIBLE_WITH_HOST_SELECT), | ||
deps = [":pw_bloat"], | ||
) |
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