Skip to content

Commit

Permalink
bazel: Bump -> 7.4.1
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax committed Dec 9, 2024
1 parent 6ef3929 commit ee8c5e8
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
# Startup options cannot be selected via config.
startup --host_jvm_args=-Xmx3g

common --noenable_bzlmod

fetch --color=yes
run --color=yes

Expand Down
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.5.0
7.4.1
4 changes: 2 additions & 2 deletions mobile/.bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ build:mobile-remote-release-clang --config=ci
build:mobile-remote-release-clang --config=remote

build:mobile-remote-release-clang-android --config=mobile-remote-release-clang
build:mobile-remote-release-clang-android --fat_apk_cpu=x86_64
build:mobile-remote-release-clang-android --android_platforms=//:android_x86_64
build:mobile-remote-release-clang-android --linkopt=-fuse-ld=lld

build:mobile-remote-release-clang-android-publish --config=mobile-remote-release-clang
build:mobile-remote-release-clang-android-publish --config=mobile-release-android
build:mobile-remote-release-clang-android-publish --fat_apk_cpu=x86,x86_64,armeabi-v7a,arm64-v8a
build:mobile-remote-release-clang-android-publish --android_platforms=//:android_x86_32,//:android_x86_64,//:android_armv7,//:android_arm64
build:mobile-remote-release-clang-android-publish --linkopt=-fuse-ld=lld

# Compile releases optimizing for size (eg -Os, etc).
Expand Down
32 changes: 32 additions & 0 deletions mobile/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,35 @@ xcodeproj(
"//test/swift:test",
],
)

platform(
name = "android_armv7",
constraint_values = [
"@platforms//cpu:armv7",
"@platforms//os:android",
],
)

platform(
name = "android_arm64",
constraint_values = [
"@platforms//cpu:arm64",
"@platforms//os:android",
],
)

platform(
name = "android_x86_32",
constraint_values = [
"@platforms//cpu:x86_32",
"@platforms//os:android",
],
)

platform(
name = "android_x86_64",
constraint_values = [
"@platforms//cpu:x86_64",
"@platforms//os:android",
],
)

0 comments on commit ee8c5e8

Please sign in to comment.