-
-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: mwilsnd <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
adf029c
commit e4a4b9e
Showing
97 changed files
with
950 additions
and
3,948 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# https://github.com/aspect-build/rules_js/issues/1408 | ||
startup --host_jvm_args=-DBAZEL_TRACK_SOURCE_DIRECTORIES=1 | ||
|
||
# TODO: remove with bazel 7.x | ||
common --enable_bzlmod | ||
|
||
common --enable_platform_specific_config | ||
# TODO: remove once bazel flips this flag | ||
common --incompatible_disallow_empty_glob | ||
|
||
coverage --experimental_ui_max_stdouterr_bytes=10485760 | ||
|
||
common:macos --linkopt=-L/opt/homebrew/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.0.0 | ||
7.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") | ||
load("//platform/darwin:bazel/darwin_config_repository_rule.bzl", "darwin_config") | ||
|
||
http_archive( | ||
name = "glfw", | ||
build_file = "@//vendor:glfw.BUILD", | ||
integrity = "sha256-tewASycS/Qjohh3CcUKPBId1IAot9xnM9XUUO6dJo+k=", | ||
strip_prefix = "glfw-3.4", | ||
url = "https://github.com/glfw/glfw/releases/download/3.4/glfw-3.4.zip", | ||
) | ||
|
||
new_local_repository( | ||
name = "libuv", | ||
build_file = "@//vendor:libuv.BUILD", | ||
path = "/opt/homebrew/opt/libuv", | ||
) | ||
|
||
darwin_config( | ||
name = "darwin_config", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
load("//bazel:flags.bzl", "CPP_FLAGS", "MAPLIBRE_FLAGS") | ||
|
||
cc_binary( | ||
name = "cache_tool", | ||
srcs = [ | ||
"cache.cpp", | ||
], | ||
copts = CPP_FLAGS + MAPLIBRE_FLAGS, | ||
deps = [ | ||
"//platform:macos-objcpp", | ||
], | ||
) | ||
|
||
cc_binary( | ||
name = "render_tool", | ||
srcs = [ | ||
"render.cpp", | ||
], | ||
copts = CPP_FLAGS + MAPLIBRE_FLAGS, | ||
deps = [ | ||
"//platform:macos-objcpp", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.