blob: cfed86190684ada97589810cc9d82b6e1a8cdfb1 [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
Yun Peng114ead32016-04-07 16:39:19 +000019filegroup(
Damien Martin-Guillerez5cbd5a42015-03-24 21:55:19 +000020 name = "srcs",
Loo Rong Jie68611b32018-10-15 07:10:41 -070021 srcs = glob(["**"]) + [
22 "//tools/cpp/runfiles:srcs",
23 ],
24)
25
26filegroup(
27 name = "embedded_tools",
28 srcs = glob(["**"]) + [
29 "//tools/cpp/runfiles:embedded_tools",
30 ],
Damien Martin-Guillerez5cbd5a42015-03-24 21:55:19 +000031)
Marcel Hlopko74b94322016-10-11 15:30:49 +000032
33filegroup(
cparsons1ba9f0ff2019-08-29 13:45:45 -070034 name = "bzl_srcs",
35 srcs = glob(["*.bzl"]),
36 visibility = ["//tools:__pkg__"],
37)