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

Unified Diff: components/nacl/loader/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 | « components/nacl/browser/BUILD.gn ('k') | extensions/shell/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/loader/BUILD.gn
diff --git a/components/nacl/loader/BUILD.gn b/components/nacl/loader/BUILD.gn
index 4f394d32586d370ed5c80b7756753d9758867005..b568a6b6bff6e54fa88e44dc2c5e6f04d079f685 100644
--- a/components/nacl/loader/BUILD.gn
+++ b/components/nacl/loader/BUILD.gn
@@ -141,23 +141,25 @@ if (is_linux) {
]
}
- test("nacl_helper_nonsfi_unittests") {
- sources = [
- "nonsfi/nacl_helper_nonsfi_unittests.cc",
- ]
- deps = [
- "//base",
- "//base/test:test_launcher_nacl_nonsfi",
- ]
- data_deps = [
- ":nacl_helper_nonsfi_unittests_main_copy(//build/toolchain/nacl:newlib_pnacl_nonsfi)",
- ]
- }
+ if (enable_nacl_nonsfi) {
+ test("nacl_helper_nonsfi_unittests") {
+ sources = [
+ "nonsfi/nacl_helper_nonsfi_unittests.cc",
+ ]
+ deps = [
+ "//base",
+ "//base/test:test_launcher_nacl_nonsfi",
+ ]
+ data_deps = [
+ ":nacl_helper_nonsfi_unittests_main_copy(//build/toolchain/nacl:newlib_pnacl_nonsfi)",
+ ]
+ }
- group("helper_nonsfi") {
- data_deps = [
- ":nacl_helper_nonsfi_copy(//build/toolchain/nacl:newlib_pnacl_nonsfi)",
- ]
+ group("helper_nonsfi") {
+ data_deps = [
+ ":nacl_helper_nonsfi_copy(//build/toolchain/nacl:newlib_pnacl_nonsfi)",
+ ]
+ }
}
}
« no previous file with comments | « components/nacl/browser/BUILD.gn ('k') | extensions/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698