1*9bb1b549SSpandan Das# Copyright 2019 The Bazel Authors. All rights reserved. 2*9bb1b549SSpandan Das# 3*9bb1b549SSpandan Das# Licensed under the Apache License, Version 2.0 (the "License"); 4*9bb1b549SSpandan Das# you may not use this file except in compliance with the License. 5*9bb1b549SSpandan Das# You may obtain a copy of the License at 6*9bb1b549SSpandan Das# 7*9bb1b549SSpandan Das# http://www.apache.org/licenses/LICENSE-2.0 8*9bb1b549SSpandan Das# 9*9bb1b549SSpandan Das# Unless required by applicable law or agreed to in writing, software 10*9bb1b549SSpandan Das# distributed under the License is distributed on an "AS IS" BASIS, 11*9bb1b549SSpandan Das# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*9bb1b549SSpandan Das# See the License for the specific language governing permissions and 13*9bb1b549SSpandan Das# limitations under the License. 14*9bb1b549SSpandan Das 15*9bb1b549SSpandan Das# deps.bzl loads definitions for use in WORKSPACE files. It's important 16*9bb1b549SSpandan Das# to keep this file and the .bzl files it loads separate from the files 17*9bb1b549SSpandan Das# loaded by def.bzl. def.bzl and its dependencies may depend on repositories 18*9bb1b549SSpandan Das# declared here, but at the time this file is loaded, we can't assume 19*9bb1b549SSpandan Das# anything has been declared. 20*9bb1b549SSpandan Das 21*9bb1b549SSpandan Dasload( 22*9bb1b549SSpandan Das "//go/private:repositories.bzl", 23*9bb1b549SSpandan Das _go_rules_dependencies = "go_rules_dependencies", 24*9bb1b549SSpandan Das) 25*9bb1b549SSpandan Dasload( 26*9bb1b549SSpandan Das "//go/private:sdk.bzl", 27*9bb1b549SSpandan Das _go_download_sdk = "go_download_sdk", 28*9bb1b549SSpandan Das _go_host_sdk = "go_host_sdk", 29*9bb1b549SSpandan Das _go_local_sdk = "go_local_sdk", 30*9bb1b549SSpandan Das _go_register_toolchains = "go_register_toolchains", 31*9bb1b549SSpandan Das _go_wrap_sdk = "go_wrap_sdk", 32*9bb1b549SSpandan Das) 33*9bb1b549SSpandan Das 34*9bb1b549SSpandan Dasgo_rules_dependencies = _go_rules_dependencies 35*9bb1b549SSpandan Dasgo_register_toolchains = _go_register_toolchains 36*9bb1b549SSpandan Dasgo_download_sdk = _go_download_sdk 37*9bb1b549SSpandan Dasgo_host_sdk = _go_host_sdk 38*9bb1b549SSpandan Dasgo_local_sdk = _go_local_sdk 39*9bb1b549SSpandan Dasgo_wrap_sdk = _go_wrap_sdk 40