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

Unified Diff: chrome/test/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: Fix non Linux builds 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
« no previous file with comments | « build/toolchain/nacl/BUILD.gn ('k') | chrome/test/data/nacl/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/BUILD.gn
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
index 1e99e3aa744b54a8d044ee0a702264a10f1fc3d2..3bb3816b662491958cf01c3d247fcec1dc715cb2 100644
--- a/chrome/test/BUILD.gn
+++ b/chrome/test/BUILD.gn
@@ -522,9 +522,12 @@ if (!is_android) {
if (enable_nacl) {
data_deps += [
"//components/nacl/loader:nacl_helper",
- "//components/nacl/loader:helper_nonsfi",
"//ppapi/native_client:irt",
]
+
+ if (enable_nacl_nonsfi) {
+ data_deps += [ "//components/nacl/loader:helper_nonsfi" ]
+ }
}
if (is_chrome_branded) {
@@ -1140,10 +1143,11 @@ test("browser_tests") {
[ "//build/config/win:default_large_module_incremental_linking" ]
}
if (is_linux) {
- data_deps += [
- "//components/nacl/loader:nacl_helper",
- "//components/nacl/loader:helper_nonsfi",
- ]
+ data_deps += [ "//components/nacl/loader:nacl_helper" ]
+
+ if (enable_nacl_nonsfi) {
+ data_deps += [ "//components/nacl/loader:helper_nonsfi" ]
+ }
}
}
« no previous file with comments | « build/toolchain/nacl/BUILD.gn ('k') | chrome/test/data/nacl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698