1# Copyright 2019 The Pigweed Authors 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); you may not 4# use this file except in compliance with the License. You may obtain a copy of 5# the License at 6# 7# https://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 12# License for the specific language governing permissions and limitations under 13# the License. 14"""Deprecated hub for Pigweed's Bazel rules.""" 15 16load("//pw_perf_test:pw_cc_perf_test.bzl", _pw_cc_perf_test = "pw_cc_perf_test") 17load("//pw_unit_test:pw_cc_test.bzl", _pw_cc_test = "pw_cc_test") 18load(":pw_cc_binary.bzl", _pw_cc_binary = "pw_cc_binary", _pw_cc_binary_with_map = "pw_cc_binary_with_map") 19load(":pw_cc_blob_library.bzl", _pw_cc_blob_info = "pw_cc_blob_info", _pw_cc_blob_library = "pw_cc_blob_library") 20load(":pw_facade.bzl", _pw_facade = "pw_facade") 21load(":pw_linker_script.bzl", _pw_linker_script = "pw_linker_script") 22 23# WARNING: This file is deprecated! Do not use this or extend it! 24# Instead, directly use the individual .bzl files. 25 26pw_facade = _pw_facade 27pw_cc_binary = _pw_cc_binary 28pw_cc_binary_with_map = _pw_cc_binary_with_map 29pw_cc_test = _pw_cc_test 30pw_cc_perf_test = _pw_cc_perf_test 31pw_cc_blob_library = _pw_cc_blob_library 32pw_cc_blob_info = _pw_cc_blob_info 33pw_linker_script = _pw_linker_script 34