-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathWORKSPACE
35 lines (29 loc) · 982 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
# bgfx.bazel - bgfx building in bazel
# Author: Alex Rozgo <[email protected]>
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 = "gtest",
commit = "ba96d0b1161f540656efdaed035b3c062b60e006",
remote = "https://github.com/google/googletest.git",
)
git_repository(
name = "build_bazel_rules_apple",
remote = "https://github.com/bazelbuild/rules_apple.git",
commit = "8dc8e519df3ab06c9842a9e6396edf592104c46b",
)
git_repository(
name = "build_bazel_apple_support",
remote = "https://github.com/bazelbuild/apple_support.git",
commit = "501b4afb27745c4813a88ffa28acd901408014e4",
)
load(
"@build_bazel_rules_apple//apple:repositories.bzl",
"apple_rules_dependencies",
)
apple_rules_dependencies()
load(
"@build_bazel_apple_support//lib:repositories.bzl",
"apple_support_dependencies",
)
apple_support_dependencies()