File tree Expand file tree Collapse file tree
build/secondary/third_party/vulkan_validation_layers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ Checks: >-
2222 -clang-analyzer-nullability.NullablePassedToNonnull,
2323 -clang-analyzer-nullability.NullReturnedFromNonnull,
2424 -clang-analyzer-nullability.NullableReturnedFromNonnull,
25+ -clang-analyzer-nullability.NullableDereferenced,
2526 performance-for-range-copy,
2627 performance-inefficient-vector-operation,
2728 performance-move-const-arg,
Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ allowed_hosts = [
274274]
275275
276276deps = {
277- 'src' : 'https://github.com/flutter/buildroot.git' + '@' + '52689fe8955a9a4916a38f0b8ae5ea3e217037f4 ' ,
277+ 'src' : 'https://github.com/flutter/buildroot.git' + '@' + '71c9a9987171ef3f8b60a9e0b346bce30ee65933 ' ,
278278
279279 'src/flutter/third_party/rapidjson' :
280280 Var ('flutter_git' ) + '/third_party/rapidjson' + '@' + 'ef3564c5c8824989393b87df25355baf35ff544b' ,
@@ -754,7 +754,7 @@ deps = {
754754 'packages' : [
755755 {
756756 'package' : 'flutter/android/sdk/all/${{platform}}' ,
757- 'version' : 'version:34v3 '
757+ 'version' : 'version:34v7 '
758758 }
759759 ],
760760 'condition' : 'download_android_deps' ,
Original file line number Diff line number Diff line change @@ -464,7 +464,6 @@ foreach(layer_info, layers) {
464464 }
465465 if (is_android ) {
466466 libs = [
467- " c++_static" , # Note: C++ added by Flutter.
468467 " log" ,
469468 " nativewindow" ,
470469 ]
Original file line number Diff line number Diff line change @@ -22,10 +22,11 @@ if [ "$(uname)" == "Darwin" ]; then
2222else
2323 NDK_PLATFORM=" linux-x86_64"
2424fi
25- ADDR2LINE=" third_party/android_tools/ndk/toolchains/aarch64-linux-android-4.9/prebuilt/$NDK_PLATFORM /bin/aarch64-linux-android-addr2line"
25+ ADDR2LINE=" third_party/android_tools/ndk/toolchains/llvm/prebuilt/$NDK_PLATFORM /bin/llvm-addr2line"
26+ NM=" third_party/android_tools/ndk/toolchains/llvm/prebuilt/$NDK_PLATFORM /bin/llvm-nm"
2627
2728# Run the binary size script from the buildroot directory so the treemap path
2829# navigation will start from there.
2930cd " $ENGINE_BUILDROOT "
3031RUN_BINARY_SIZE_ANALYSIS=" third_party/dart/third_party/binary_size/src/run_binary_size_analysis.py"
31- python3 " $RUN_BINARY_SIZE_ANALYSIS " --library " $INPUT_PATH " --destdir " $DEST_DIR " --addr2line-binary " $ADDR2LINE "
32+ python3 " $RUN_BINARY_SIZE_ANALYSIS " --library " $INPUT_PATH " --destdir " $DEST_DIR " --addr2line-binary " $ADDR2LINE " --nm-binary " $NM " --jobs 1 --no-check-support
You can’t perform that action at this time.
0 commit comments