blob: 111dd0b5917397298a46be0e8b9a01052a9570b1 [file] [log] [blame]
# Copyright 2020 The Bazel Authors. All rights reserved.
#
# 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.
"""Macros for defining external repositories for Debian system installed libraries."""
def debian_deps():
debian_java_deps()
debian_cc_deps()
debian_proto_deps()
debian_bin_deps()
def debian_java_deps():
# An external repository for providing Debian system installed java libraries.
native.new_local_repository(
name = "debian_java_deps",
path = "/usr/share/java",
build_file = "//tools/distributions/debian:debian_java.BUILD",
)
def debian_cc_deps():
# An external repository for providing Debian system installed C/C++ libraries.
native.new_local_repository(
name = "debian_cc_deps",
path = "/usr/lib",
build_file = "//tools/distributions/debian:debian_cc.BUILD",
)
def debian_proto_deps():
# An external repository for providing Debian system installed proto files.
native.new_local_repository(
name = "debian_proto_deps",
path = "/usr/include",
build_file = "//tools/distributions/debian:debian_proto.BUILD",
)
def debian_bin_deps():
# An external repository for providing Debian system installed binaries.
native.new_local_repository(
name = "debian_bin_deps",
path = "/usr/bin",
build_file = "//tools/distributions/debian:debian_bin.BUILD",
)