forked from pytorch/FBGEMM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE.bazel
35 lines (29 loc) · 917 Bytes
/
WORKSPACE.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
workspace(name = "fbgemm")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel_skylib",
urls = [
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz",
],
)
http_archive(
name = "com_google_googletest",
strip_prefix = "googletest-1.13.0",
urls = [
"https://github.com/google/googletest/archive/refs/tags/v1.13.0.tar.gz",
],
)
new_local_repository(
name = "cpuinfo",
build_file = "third_party/cpuinfo.BUILD",
path = "third_party/cpuinfo",
)
new_local_repository(
name = "asmjit",
build_file = "third_party/asmjit.BUILD",
path = "third_party/asmjit",
)