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

Unified Diff: webrtc/build/webrtc.gni

Issue 1984383002: MIPS64: Do not use openmax_dl for MIPS64 in GN (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/build/webrtc.gni
diff --git a/webrtc/build/webrtc.gni b/webrtc/build/webrtc.gni
index cef6651356618f60e554117117f15481ff8c9af9..d6e4401f565d79c2c46785a1fe38666beb676bbe 100644
--- a/webrtc/build/webrtc.gni
+++ b/webrtc/build/webrtc.gni
@@ -75,9 +75,8 @@ declare_args() {
rtc_prefer_fixed_point = true
}
- # TODO(ljubomir): Unset rtc_use_openmax_dl for mips64el once mips64el gets
- # supported in GN (since openmax_dl is not supported for mips64el).
- if (!is_ios && (current_cpu != "arm" || arm_version >= 7)) {
+ if (!is_ios && (current_cpu != "arm" || arm_version >= 7) &&
+ current_cpu != "mips64el") {
rtc_use_openmax_dl = true
} else {
rtc_use_openmax_dl = false
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698