blob: 9cffa0e0791f776816ffba13ed08f9200e691bb9 [file] [log] [blame]
Tony Allevato82b3ad62017-10-10 07:59:31 -07001# Copyright 2017 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
15"""Index from which multiple modules can be loaded."""
16
Thomas Van Lentene5203c02018-06-12 13:09:57 -040017load("//lib:collections.bzl", _collections = "collections")
18load("//lib:dicts.bzl", _dicts = "dicts")
19load("//lib:new_sets.bzl", _new_sets = "sets")
20load("//lib:partial.bzl", _partial = "partial")
21load("//lib:paths.bzl", _paths = "paths")
22load("//lib:selects.bzl", _selects = "selects")
23load("//lib:sets.bzl", _sets = "sets")
24load("//lib:shell.bzl", _shell = "shell")
25load("//lib:structs.bzl", _structs = "structs")
26load("//lib:types.bzl", _types = "types")
Thomas Van Lentene5203c02018-06-12 13:09:57 -040027load("//lib:unittest.bzl", _asserts = "asserts", _unittest = "unittest")
Thomas Van Lenten8c575e72018-11-26 17:31:29 -050028load("//lib:versions.bzl", _versions = "versions")
Thomas Van Lenten2d356cf2018-04-26 12:08:01 -040029
Thomas Van Lentend7c55182018-11-21 13:04:25 -050030print(
31 "WARNING: lib.bzl is deprecated and will go away in the future, please" +
32 " directly load the bzl file(s) of the module(s) needed as it is more" +
33 " efficient.",
34)
35
Thomas Van Lenten2d356cf2018-04-26 12:08:01 -040036collections = _collections
37dicts = _dicts
38new_sets = _new_sets
39partial = _partial
40paths = _paths
41selects = _selects
42sets = _sets
43shell = _shell
44structs = _structs
Taras Tsugriib09d5d42018-05-08 15:13:31 -070045types = _types
Thomas Van Lenten2d356cf2018-04-26 12:08:01 -040046versions = _versions
47
48asserts = _asserts
49unittest = _unittest