forked from google/lullaby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
116 lines (100 loc) · 2.71 KB
/
WORKSPACE
File metadata and controls
116 lines (100 loc) · 2.71 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
new_git_repository(
name = "bullet",
remote = "https://github.com/bulletphysics/bullet3",
build_file = "third_party/BUILD.bullet",
commit = "63ef78a",
)
new_http_archive(
name = "gtest",
urls = ["https://github.com/google/googletest/archive/master.zip"],
strip_prefix = "googletest-master",
)
new_git_repository(
name = "flatbuffers",
remote = "https://github.com/google/flatbuffers.git",
build_file = "third_party/BUILD.flatbuffers",
commit = "8a58aaf",
)
new_git_repository(
name = "flatui",
remote = "https://github.com/google/flatui.git",
build_file = "third_party/BUILD.flatui",
commit = "55f54c3",
)
new_git_repository(
name = "fplbase",
remote = "https://github.com/google/fplbase.git",
build_file = "third_party/BUILD.fplbase",
commit = "24cb886",
)
new_git_repository(
name = "fplutil",
remote = "https://github.com/google/fplutil.git",
build_file = "third_party/BUILD.fplutil",
commit = "719d059",
)
new_http_archive(
name = "freetype2",
url = "https://downloads.sourceforge.net/project/freetype/freetype2/2.6.1/freetype-2.6.1.tar.gz",
build_file = "third_party/BUILD.freetype2",
)
new_git_repository(
name = "gumbo",
remote = "https://github.com/google/gumbo-parser.git",
build_file = "third_party/BUILD.gumbo",
commit = "aa91b27",
)
new_git_repository(
name = "harfbuzz",
remote = "https://github.com/behdad/harfbuzz.git",
build_file = "third_party/BUILD.harfbuzz",
commit = "d205227",
)
new_git_repository(
name = "libunibreak",
remote = "https://github.com/adah1972/libunibreak.git",
build_file = "third_party/BUILD.libunibreak",
commit = "0e8e32d",
)
new_git_repository(
name = "libwebp",
remote = "https://github.com/webmproject/libwebp.git",
build_file = "third_party/BUILD.libwebp",
commit = "42c79aa",
)
new_git_repository(
name = "mathfu",
remote = "https://github.com/google/mathfu.git",
build_file = "third_party/BUILD.mathfu",
commit = "f05953d",
)
new_git_repository(
name = "motive",
remote = "https://github.com/google/motive.git",
build_file = "third_party/BUILD.motive",
commit = "d96e3fc",
)
new_http_archive(
name = "sdl2",
urls = ["https://www.libsdl.org/release/SDL2-2.0.5.zip"],
build_file = "third_party/BUILD.sdl2",
strip_prefix = "SDL2-2.0.5",
)
new_git_repository(
name = "stb",
remote = "https://github.com/nothings/stb.git",
build_file = "third_party/BUILD.stb",
commit = "9d9f75e",
)
new_git_repository(
name = "vectorial",
remote = "https://github.com/scoopr/vectorial.git",
build_file = "third_party/BUILD.vectorial",
commit = "ae7dc88",
)
new_git_repository(
name = "zlib",
remote = "https://github.com/madler/zlib.git",
build_file = "third_party/BUILD.zlib",
commit = "cacf7f1",
)