Skip to content

Commit 6d65cb6

Browse files
committed
Fix(bazel) Correct Bazel lint errors in BUILD file
Signed-off-by: Sombrio <[email protected]>
1 parent f4cb6e7 commit 6d65cb6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

BUILD

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# SPDX-License-Identifier: BSD-3-Clause
22
# Copyright (c) 2025, The OpenROAD Authors
33

4+
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
5+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
46
load("@rules_hdl//dependency_support/com_github_westes_flex:flex.bzl", "genlex")
57
load("@rules_hdl//dependency_support/org_gnu_bison:bison.bzl", "genyacc")
68
load("//bazel:tcl_encode_sta.bzl", "tcl_encode_sta")
@@ -302,7 +304,6 @@ cc_library(
302304
name = "opensta_lib",
303305
srcs = parser_cc + parser_headers + glob(
304306
include = [
305-
"app/StaMain.cc",
306307
"dcalc/*.cc",
307308
"dcalc/*.hh",
308309
"graph/*.cc",
@@ -333,6 +334,7 @@ cc_library(
333334
"util/Machine*.cc",
334335
],
335336
) + [
337+
"app/StaMain.cc",
336338
"util/Machine.cc",
337339
":StaConfig",
338340
],

0 commit comments

Comments
 (0)