Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1057)

Unified Diff: third_party/libvpx_new/BUILD.gn

Issue 1362783002: Always use 'max' optimizations for Windows builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: default_optimization Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/libvpx_new/libvpx.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libvpx_new/BUILD.gn
diff --git a/third_party/libvpx_new/BUILD.gn b/third_party/libvpx_new/BUILD.gn
index bfa4854bb11ff577c2df396224ee5c8305e8558d..825024bbde18e062b8a8eace596312f2bd0000b2 100644
--- a/third_party/libvpx_new/BUILD.gn
+++ b/third_party/libvpx_new/BUILD.gn
@@ -4,7 +4,6 @@
import("//build/config/arm.gni")
import("//build/config/android/config.gni")
-import("//build/config/chrome_build.gni")
import("//build/config/sanitizers/sanitizers.gni")
import("//third_party/libvpx_new/libvpx_srcs.gni")
import("//third_party/yasm/yasm_assemble.gni")
@@ -218,8 +217,8 @@ if (current_cpu == "arm") {
}
static_library("libvpx_new") {
- if (!is_debug && is_win && is_official_build) {
- configs -= [ "//build/config/compiler:optimize" ]
+ if (!is_debug && is_win) {
+ configs -= [ "//build/config/compiler:default_optimization" ]
configs += [ "//build/config/compiler:optimize_max" ]
}
« no previous file with comments | « no previous file | third_party/libvpx_new/libvpx.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698