Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit cf7a9d0

Browse files
authored
[CP][Impeller] Switched to static linked libc++ in vulkan validation layers. (#48499)
CP of the flutter/engine part of #48290.
1 parent cd424ac commit cf7a9d0

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ allowed_hosts = [
262262
]
263263

264264
deps = {
265-
'src': 'https://github.com/flutter/buildroot.git' + '@' + '9780f253156165c515962f5f0c56235d34617689',
265+
'src': 'https://github.com/flutter/buildroot.git' + '@' + 'f27d99b4428dea312646130d60c33a2d38fa9dc6',
266266

267267
# Fuchsia compatibility
268268
#

shell/platform/android/BUILD.gn

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -507,13 +507,9 @@ action("android_jar") {
507507
"--native_lib",
508508
rebase_path("$validation_layer_out_dir/libVkLayer_khronos_validation.so"),
509509
]
510-
if (current_cpu == "arm64") {
511-
args += [
512-
"--native_lib",
513-
rebase_path("$android_libcpp_root/libs/arm64-v8a/libc++_shared.so",
514-
root_build_dir),
515-
]
516-
} else {
510+
if (current_cpu != "arm64") {
511+
# This may not be necessarily required anymore. It was kept to maintain
512+
# old behavior.
517513
assert(false, "Validation layers not supported for arch.")
518514
}
519515
}

0 commit comments

Comments
 (0)