Update package version to 148.0.7778.167
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
--- a/build/config/compiler/BUILD.gn 2026-03-09 19:52:01.000000000 +0000
|
||||
+++ b/build/config/compiler/BUILD.gn 2026-03-10 22:29:51.892264280 +0000
|
||||
@@ -1855,18 +1855,6 @@ config("sanitize_c_array_bounds") {
|
||||
cflags = [
|
||||
"-fsanitize=array-bounds",
|
||||
"-fsanitize-trap=array-bounds",
|
||||
--- a/build/config/compiler/BUILD.gn
|
||||
+++ b/build/config/compiler/BUILD.gn
|
||||
@@ -1903,20 +1903,4 @@ config("sanitize_c_array_bounds") {
|
||||
config("sanitize_c_array_bounds") {
|
||||
if (!is_ubsan && is_clang && !(is_asan && target_cpu == "x86")) {
|
||||
- cflags = [
|
||||
- "-fsanitize=array-bounds",
|
||||
- "-fsanitize-trap=array-bounds",
|
||||
-
|
||||
- # Some code users feature detection to determine if UBSAN (or any
|
||||
- # sanitizer) is enabled, they then do expensive debug like operations. We
|
||||
@@ -16,6 +18,6 @@
|
||||
- # since we know that the array bounds sanitizing will catch any out-of-
|
||||
- # bounds accesses.
|
||||
- "-Wno-unsafe-buffer-usage-in-static-sized-array",
|
||||
]
|
||||
- ]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
--- b/build/config/BUILDCONFIG.gn
|
||||
+++ a/build/config/BUILDCONFIG.gn
|
||||
@@ -362,7 +362,6 @@
|
||||
"//build/config/compiler:no_unresolved_symbols",
|
||||
"//build/config/compiler:runtime_library",
|
||||
"//build/config/compiler:sanitize_c_array_bounds",
|
||||
- "//build/config/compiler:sanitize_return",
|
||||
"//build/config/compiler:thin_archive",
|
||||
"//build/config/compiler:thinlto_optimize_default",
|
||||
"//build/config/compiler:tot_warnings",
|
||||
@@ -0,0 +1,27 @@
|
||||
--- b/build/config/compiler/BUILD.gn
|
||||
+++ a/build/config/compiler/BUILD.gn
|
||||
@@ -1920,24 +1920,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
-# Enable UBSan subset to ensure we always hit `return` statement in non-void
|
||||
-# functions (https://crbug.com/489565636). This is equivalent to inserting
|
||||
-# `NOTREACHED()` at the end of such functions.
|
||||
-config("sanitize_return") {
|
||||
- if (!is_ubsan && is_clang) {
|
||||
- cflags = [
|
||||
- "-fsanitize=return",
|
||||
- "-fsanitize-trap=return",
|
||||
-
|
||||
- # Some code users feature detection to determine if UBSAN (or any
|
||||
- # sanitizer) is enabled, they then do expensive debug like operations. We
|
||||
- # want to suppress this behaviour since we want to keep performance costs
|
||||
- # as low as possible while having these checks.
|
||||
- "-fsanitize-ignore-for-ubsan-feature=return",
|
||||
- ]
|
||||
- }
|
||||
-}
|
||||
-
|
||||
config("rustc_revision") {
|
||||
if (rustc_revision != "") {
|
||||
# Similar to the `clang_revision` config, this is here so that all `.rs`
|
||||
Reference in New Issue
Block a user