-
Notifications
You must be signed in to change notification settings - Fork 4
/
WORKSPACE
38 lines (32 loc) · 883 Bytes
/
WORKSPACE
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
36
37
38
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
git_repository(
name = "absl",
remote = "https://github.com/abseil/abseil-cpp.git",
branch = "master",
)
git_repository(
name = "gtest",
remote = "https://github.com/abseil/googletest.git",
tag = "release-1.8.1",
)
git_repository(
name = "com_github_gflags_gflags",
remote = "https://github.com/gflags/gflags.git",
tag = "v2.2.2"
)
git_repository(
name = "glog",
remote = "https://github.com/google/glog.git",
branch = "master"
)
new_local_repository (
name = "dyninst",
path = "thirdparty/dyninst-10.1.0",
build_file = '@//thirdparty:dyninst.BUILD',
)
new_local_repository (
name = "asmjit",
path = "thirdparty/asmjit",
build_file = '@//thirdparty:asmjit.BUILD',
)