You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.5 KiB
45 lines
1.5 KiB
# Copyright 2020 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Workspace file for the Ruy project.
|
|
|
|
workspace(name = "com_google_ruy")
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
|
|
|
|
maybe(
|
|
local_repository,
|
|
name = "com_google_googletest",
|
|
path = "third_party/googletest",
|
|
)
|
|
|
|
maybe(
|
|
new_local_repository,
|
|
name = "cpuinfo",
|
|
path = "third_party/cpuinfo",
|
|
build_file = "@//third_party:cpuinfo.BUILD",
|
|
)
|
|
|
|
# skylib utility for additional bazel functionality.
|
|
skylib_version = "0.9.0"
|
|
http_archive(
|
|
name = "bazel_skylib",
|
|
type = "tar.gz",
|
|
url = "https://github.com/bazelbuild/bazel-skylib/releases/download/{}/bazel_skylib-{}.tar.gz".format (skylib_version, skylib_version),
|
|
sha256 = "1dde365491125a3db70731e25658dfdd3bc5dbdfd11b840b3e987ecf043c7ca0",
|
|
)
|
|
load("@bazel_skylib//lib:versions.bzl", "versions")
|
|
versions.check(minimum_bazel_version = "2.0.0")
|