Skip to content

Commit

Permalink
Don't optimize for size.
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
  • Loading branch information
jellefoks committed Jun 27, 2024
1 parent 06b0412 commit e9eb079
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 e9eb079

Please sign in to comment.