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

Unified Diff: extensions/shell/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: extensions/shell/BUILD.gn
diff --git a/extensions/shell/BUILD.gn b/extensions/shell/BUILD.gn
index 0d31a0685e61080fa66955862f34207d1d6d8bee..c7c8416ff5534d2330ff615ee9a970abf5ab7551 100644
--- a/extensions/shell/BUILD.gn
+++ b/extensions/shell/BUILD.gn
@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build/config/nacl/config.gni")
import("//extensions/shell/app_shell.gni")
# Technically, this directory should not depend on files from src/chrome, but
@@ -104,10 +105,11 @@ source_set("app_shell_lib") {
]
if (is_linux) {
- deps += [
- "//components/nacl/loader:helper_nonsfi",
- "//components/nacl/loader:nacl_helper",
- ]
+ deps += [ "//components/nacl/loader:nacl_helper" ]
+ }
+
+ if (is_nacl_nonsfi) {
+ deps += [ "//components/nacl/loader:helper_nonsfi" ]
}
}
}

Powered by Google App Engine
This is Rietveld 408576698