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

Unified Diff: components/nacl/browser/BUILD.gn

Issue 2242893002: [MIPS] Adding NaCl/PNaCl support for mipsel to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
Index: components/nacl/browser/BUILD.gn
diff --git a/components/nacl/browser/BUILD.gn b/components/nacl/browser/BUILD.gn
index 8fb6a1164e85c27202ce70f72b93e82c35e251db..4133f396b7477d1ed7893fa54e37ed654897821b 100644
--- a/components/nacl/browser/BUILD.gn
+++ b/components/nacl/browser/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//build/config/features.gni")
+import("//build/config/nacl/config.gni")
assert(enable_nacl)
@@ -60,7 +61,9 @@ static_library("browser") {
"//sandbox/linux:suid_sandbox_client",
]
- data_deps += [ "//components/nacl/loader:helper_nonsfi" ]
+ if (is_nacl_nonsfi) {
+ data_deps += [ "//components/nacl/loader:helper_nonsfi" ]
+ }
}
if (is_win && current_cpu == "x86") {

Powered by Google App Engine
This is Rietveld 408576698