Fix(bazel) Correct Bazel lint errors in BUILD file
Signed-off-by: Sombrio <sombrio@sombrasoft.dev>
This commit is contained in:
parent
f4cb6e7354
commit
6d65cb6f84
4
BUILD
4
BUILD
|
|
@ -1,6 +1,8 @@
|
||||||
# SPDX-License-Identifier: BSD-3-Clause
|
# SPDX-License-Identifier: BSD-3-Clause
|
||||||
# Copyright (c) 2025, The OpenROAD Authors
|
# 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/com_github_westes_flex:flex.bzl", "genlex")
|
||||||
load("@rules_hdl//dependency_support/org_gnu_bison:bison.bzl", "genyacc")
|
load("@rules_hdl//dependency_support/org_gnu_bison:bison.bzl", "genyacc")
|
||||||
load("//bazel:tcl_encode_sta.bzl", "tcl_encode_sta")
|
load("//bazel:tcl_encode_sta.bzl", "tcl_encode_sta")
|
||||||
|
|
@ -302,7 +304,6 @@ cc_library(
|
||||||
name = "opensta_lib",
|
name = "opensta_lib",
|
||||||
srcs = parser_cc + parser_headers + glob(
|
srcs = parser_cc + parser_headers + glob(
|
||||||
include = [
|
include = [
|
||||||
"app/StaMain.cc",
|
|
||||||
"dcalc/*.cc",
|
"dcalc/*.cc",
|
||||||
"dcalc/*.hh",
|
"dcalc/*.hh",
|
||||||
"graph/*.cc",
|
"graph/*.cc",
|
||||||
|
|
@ -333,6 +334,7 @@ cc_library(
|
||||||
"util/Machine*.cc",
|
"util/Machine*.cc",
|
||||||
],
|
],
|
||||||
) + [
|
) + [
|
||||||
|
"app/StaMain.cc",
|
||||||
"util/Machine.cc",
|
"util/Machine.cc",
|
||||||
":StaConfig",
|
":StaConfig",
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue