Skip to content

Commit

Permalink
Don't optimize for size. (#3711)
Browse files Browse the repository at this point in the history
This turns of the compiler flag for optimizing for size, so that it's
optimizing for speed instead.

b/348717754

(cherry picked from commit bf3a4c4)
  • Loading branch information
jellefoks authored and anonymous1-me committed Aug 12, 2024
1 parent d3f7c42 commit 866c9fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/config/compiler/compiler.gni
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ declare_args() {
# If true, optimize for size.
# Default to favoring speed over size for platforms not listed below.
optimize_for_size =
!is_high_end_android && (is_android || is_ios || is_castos)
!(is_high_end_android || is_starboard) && (is_android || is_ios || is_castos)
}

declare_args() {
Expand Down

0 comments on commit 866c9fa

Please sign in to comment.