Skip to content

Commit

Permalink
pdk/proto: add package and targets
Browse files Browse the repository at this point in the history
  • Loading branch information
proppy committed Nov 8, 2023
1 parent 2d6c21f commit 8bc31a9
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pdk/proto/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

load("@rules_hdl//pdk/proto:build_defs.bzl", "extract_lef_and_liberty")
load("@rules_python//python:proto.bzl", "py_proto_library")

proto_library(
name = "pdk_info_proto",
srcs = ["pdk_info.proto"],
)

cc_proto_library(
name = "pdk_info_cc_proto",
deps = [":pdk_info_proto"],
)

py_proto_library(
name = "pdk_info_py_proto",
deps = [":pdk_info_proto"],
)

extract_lef_and_liberty(
name = "sky130_data",
standard_cell = "@com_google_skywater_pdk_sky130_fd_sc_hd//:sky130_fd_sc_hd",
)

extract_lef_and_liberty(
name = "asap7_data",
standard_cell = "@org_theopenroadproject_asap7sc7p5t_28//:asap7_rvt_1x",
)

0 comments on commit 8bc31a9

Please sign in to comment.