aboutsummaryrefslogtreecommitdiff
path: root/pw_interrupt_xtensa
diff options
context:
space:
mode:
authorTed Pudlik <tpudlik@google.com>2024-01-03 23:59:35 +0000
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2024-01-03 23:59:35 +0000
commit77dbd41823c7ae30e457257fbd7753ede5eb824b (patch)
treeba10d4748a6928d530090d2d3971aaec3ac6badf /pw_interrupt_xtensa
parent9fb521d2c89fad9faae317468938828d27c0f816 (diff)
downloadpigweed-77dbd41823c7ae30e457257fbd7753ede5eb824b.tar.gz
bazel: Replace pw_cc_library with cc_library
This change was automatically generated by running, buildozer 'set kind cc_library' ...:%pw_cc_library buildozer 'fix unusedLoads' ...:__pkg__ The first command converted all `pw_cc_library` targets to `cc_library`. The second removed the (now unused) loads of `pw_cc_library` from the affected BUILD.bazel files. This change is just a no-op cleanup, since `pw_cc_library` became an alias for `cc_library` in http://pwrev.dev/178924. Bug: 267498492 Change-Id: Iefcc21fc5819a21612bbaffaafd1ffbec42faa26 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/186763 Reviewed-by: Armando Montanez <amontanez@google.com> Pigweed-Auto-Submit: Ted Pudlik <tpudlik@google.com> Commit-Queue: Auto-Submit <auto-submit@pigweed-service-accounts.iam.gserviceaccount.com> Presubmit-Verified: CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'pw_interrupt_xtensa')
-rw-r--r--pw_interrupt_xtensa/BUILD.bazel7
1 files changed, 1 insertions, 6 deletions
diff --git a/pw_interrupt_xtensa/BUILD.bazel b/pw_interrupt_xtensa/BUILD.bazel
index c3ab8e2aa..e5dff91fc 100644
--- a/pw_interrupt_xtensa/BUILD.bazel
+++ b/pw_interrupt_xtensa/BUILD.bazel
@@ -12,11 +12,6 @@
# License for the specific language governing permissions and limitations under
# the License.
-load(
- "//pw_build:pigweed.bzl",
- "pw_cc_library",
-)
-
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
@@ -26,7 +21,7 @@ constraint_value(
constraint_setting = "//pw_interrupt:backend_constraint_setting",
)
-pw_cc_library(
+cc_library(
name = "context",
srcs = ["context.cc"],
target_compatible_with = [":backend"],