Fix(bazel) Correct Bazel lint errors in BUILD file

Signed-off-by: Sombrio <sombrio@sombrasoft.dev>
This commit is contained in:
Sombrio 2025-09-25 08:26:51 +00:00
parent f4cb6e7354
commit 6d65cb6f84
No known key found for this signature in database
GPG Key ID: F36C1ADEF21AA3FC
1 changed files with 3 additions and 1 deletions

4
BUILD
View File

@ -1,6 +1,8 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2025, The OpenROAD Authors
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@rules_hdl//dependency_support/com_github_westes_flex:flex.bzl", "genlex")
load("@rules_hdl//dependency_support/org_gnu_bison:bison.bzl", "genyacc")
load("//bazel:tcl_encode_sta.bzl", "tcl_encode_sta")
@ -302,7 +304,6 @@ cc_library(
name = "opensta_lib",
srcs = parser_cc + parser_headers + glob(
include = [
"app/StaMain.cc",
"dcalc/*.cc",
"dcalc/*.hh",
"graph/*.cc",
@ -333,6 +334,7 @@ cc_library(
"util/Machine*.cc",
],
) + [
"app/StaMain.cc",
"util/Machine.cc",
":StaConfig",
],