blob: cf858ee9c9cf1e8d7c78bde193f8f26ad4a5e0e0 [file] [log] [blame]
jcaterf5c8c0b2018-03-27 07:22:35 -07001# Copyright 2018 The Bazel Authors. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://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,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010015package(default_visibility = ["//visibility:public"])
16
hlopko06a88512018-03-06 06:16:38 -080017licenses(["notice"]) # Apache 2.0
hlopko903b4792018-03-06 01:27:56 -080018
Andrew Z Allenfb309f32020-11-02 11:41:25 -080019exports_files(glob(["*.bzl"]))
20
Yun Peng114ead32016-04-07 16:39:19 +000021filegroup(
Damien Martin-Guillerez5cbd5a42015-03-24 21:55:19 +000022 name = "srcs",
Loo Rong Jie68611b32018-10-15 07:10:41 -070023 srcs = glob(["**"]) + [
24 "//tools/cpp/runfiles:srcs",
25 ],
26)
27
28filegroup(
29 name = "embedded_tools",
30 srcs = glob(["**"]) + [
31 "//tools/cpp/runfiles:embedded_tools",
32 ],
Damien Martin-Guillerez5cbd5a42015-03-24 21:55:19 +000033)
Marcel Hlopko74b94322016-10-11 15:30:49 +000034
35filegroup(
cparsons1ba9f0ff2019-08-29 13:45:45 -070036 name = "bzl_srcs",
37 srcs = glob(["*.bzl"]),
38 visibility = ["//tools:__pkg__"],
39)