Skip to content

Commit 7e265db

Browse files
authored
Merge pull request #8758 from antmicro/abc-fork-bazel
Use ABC fork in Bazel
2 parents 80cdb5c + ab05af8 commit 7e265db

File tree

8 files changed

+7
-10
lines changed

8 files changed

+7
-10
lines changed

BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ OPENROAD_LIBRARY_DEPS = [
104104
"//src/upf:ui",
105105
"//src/utl",
106106
"//src/utl:ui",
107-
"@edu_berkeley_abc//:abc-lib",
107+
"//third-party/abc:abc-lib",
108108
":ord",
109109
] + select(
110110
{

WORKSPACE

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ http_archive(
2525
# This essentially reads as a TODO list of what needs to be upstreamed to BCR
2626
load("@rules_hdl//dependency_support/com_github_quantamhd_lemon:com_github_quantamhd_lemon.bzl", "com_github_quantamhd_lemon")
2727
load("@rules_hdl//dependency_support/com_github_westes_flex:com_github_westes_flex.bzl", "com_github_westes_flex")
28-
load("@rules_hdl//dependency_support/edu_berkeley_abc:edu_berkeley_abc.bzl", "edu_berkeley_abc")
2928
load("@rules_hdl//dependency_support/net_invisible_island_ncurses:net_invisible_island_ncurses.bzl", "net_invisible_island_ncurses")
3029
load("@rules_hdl//dependency_support/net_zlib:net_zlib.bzl", "net_zlib")
3130
load("@rules_hdl//dependency_support/org_gnu_bison:org_gnu_bison.bzl", "org_gnu_bison")
@@ -37,8 +36,6 @@ load("@rules_hdl//dependency_support/tk_tcl:tk_tcl.bzl", "tk_tcl")
3736
# Direct dependencies needed in Openroad
3837
com_github_quantamhd_lemon()
3938

40-
edu_berkeley_abc()
41-
4239
tk_tcl()
4340

4441
# Swig exists in BCR, but in a newer version where we need to test how to make

src/cgt/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ cc_library(
4040
"//src/odb",
4141
"//src/sta:opensta_lib",
4242
"//src/utl",
43+
"//third-party/abc:abc-lib",
4344
"@boost.stacktrace",
44-
"@edu_berkeley_abc//:abc-lib",
4545
"@tk_tcl//:tcl",
4646
],
4747
)

src/cut/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ cc_library(
3737
"//src/rsz",
3838
"//src/sta:opensta_lib",
3939
"//src/utl",
40+
"//third-party/abc:abc-lib",
4041
"@boost.bind",
4142
"@boost.config",
4243
"@boost.fusion",
4344
"@boost.lambda",
4445
"@boost.optional",
4546
"@boost.phoenix",
4647
"@boost.spirit",
47-
"@edu_berkeley_abc//:abc-lib",
4848
],
4949
)

src/cut/test/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ cc_test(
3737
"//src/sta:opensta_lib",
3838
"//src/tst",
3939
"//src/utl",
40-
"@edu_berkeley_abc//:abc-lib",
40+
"//third-party/abc:abc-lib",
4141
"@googletest//:gtest",
4242
"@googletest//:gtest_main",
4343
],

src/rmp/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ cc_library(
4444
"//src/rsz",
4545
"//src/sta:opensta_lib",
4646
"//src/utl",
47+
"//third-party/abc:abc-lib",
4748
"@boost.bind",
4849
"@boost.config",
4950
"@boost.fusion",
5051
"@boost.lambda",
5152
"@boost.optional",
5253
"@boost.phoenix",
5354
"@boost.spirit",
54-
"@edu_berkeley_abc//:abc-lib",
5555
],
5656
)
5757

src/rmp/test/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ cc_test(
163163
"//src/sta:opensta_lib",
164164
"//src/tst",
165165
"//src/utl",
166-
"@edu_berkeley_abc//:abc-lib",
166+
"//third-party/abc:abc-lib",
167167
"@googletest//:gtest",
168168
"@googletest//:gtest_main",
169169
"@tk_tcl//:tcl",

0 commit comments

Comments
 (0)