jcater | f5c8c0b | 2018-03-27 07:22:35 -0700 | [diff] [blame] | 1 | # 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 Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 15 | package(default_visibility = ["//visibility:public"]) |
| 16 | |
hlopko | 06a8851 | 2018-03-06 06:16:38 -0800 | [diff] [blame] | 17 | licenses(["notice"]) # Apache 2.0 |
hlopko | 903b479 | 2018-03-06 01:27:56 -0800 | [diff] [blame] | 18 | |
Yun Peng | 114ead3 | 2016-04-07 16:39:19 +0000 | [diff] [blame] | 19 | filegroup( |
Damien Martin-Guillerez | 5cbd5a4 | 2015-03-24 21:55:19 +0000 | [diff] [blame] | 20 | name = "srcs", |
Loo Rong Jie | 68611b3 | 2018-10-15 07:10:41 -0700 | [diff] [blame] | 21 | srcs = glob(["**"]) + [ |
| 22 | "//tools/cpp/runfiles:srcs", |
| 23 | ], |
| 24 | ) |
| 25 | |
| 26 | filegroup( |
| 27 | name = "embedded_tools", |
| 28 | srcs = glob(["**"]) + [ |
| 29 | "//tools/cpp/runfiles:embedded_tools", |
| 30 | ], |
Damien Martin-Guillerez | 5cbd5a4 | 2015-03-24 21:55:19 +0000 | [diff] [blame] | 31 | ) |
Marcel Hlopko | 74b9432 | 2016-10-11 15:30:49 +0000 | [diff] [blame] | 32 | |
| 33 | filegroup( |
cparsons | 1ba9f0ff | 2019-08-29 13:45:45 -0700 | [diff] [blame] | 34 | name = "bzl_srcs", |
| 35 | srcs = glob(["*.bzl"]), |
| 36 | visibility = ["//tools:__pkg__"], |
| 37 | ) |