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

Unified Diff: components/nacl/BUILD.gn

Issue 1395573003: Build nacl_helper_nonsfi with GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 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 | « chrome/test/BUILD.gn ('k') | content/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/BUILD.gn
diff --git a/components/nacl/BUILD.gn b/components/nacl/BUILD.gn
index 2a238a3f90c92722fcffd29888bb340cb72a087a..3d1bbde5e04e76226669c634c15262b876d463d9 100644
--- a/components/nacl/BUILD.gn
+++ b/components/nacl/BUILD.gn
@@ -4,6 +4,7 @@
import("//build/config/crypto.gni")
import("//build/config/features.gni")
+import("//build/config/nacl/config.gni")
import("//build/config/ui.gni")
import("//testing/test.gni")
@@ -236,10 +237,74 @@ if (enable_nacl) {
}
}
}
-} else {
- group("nacl") {
+
+ if (is_nacl_nonsfi) {
+ executable("nacl_helper_nonsfi_nexe") {
+ output_name = "nacl_helper_nonsfi"
+ set_sources_assignment_filter([])
+ sources = [
+ "common/nacl_messages.cc",
+ "common/nacl_messages.h",
+ "common/nacl_types.cc",
+ "common/nacl_types.h",
+ "common/nacl_types_param_traits.cc",
+ "common/nacl_types_param_traits.h",
+ "loader/nacl_helper_linux.cc",
+ "loader/nacl_helper_linux.h",
+ "loader/nacl_trusted_listener.cc",
+ "loader/nacl_trusted_listener.h",
+ "loader/nonsfi/nonsfi_listener.cc",
+ "loader/nonsfi/nonsfi_listener.h",
+ "loader/nonsfi/nonsfi_main.cc",
+ "loader/nonsfi/nonsfi_main.h",
+ ]
+ deps = [
+ ":nacl_switches",
+ ":nacl_helper_nonsfi_sandbox",
+ "//base",
+ "//components/tracing",
+ "//content",
+ "//ipc",
+ "//native_client/src/nonsfi/irt:nacl_sys_private",
+ "//native_client/src/nonsfi/loader:elf_loader",
+ "//native_client/src/untrusted/nacl:nacl",
+ "//ppapi/proxy",
+ "//sandbox/linux:sandbox",
+ ]
+ }
+
+ source_set("nacl_helper_nonsfi_sandbox") {
+ set_sources_assignment_filter([])
+ sources = [
+ "loader/nonsfi/nonsfi_sandbox.cc",
+ "loader/nonsfi/nonsfi_sandbox.h",
+ "loader/sandbox_linux/nacl_sandbox_linux.cc",
+ "loader/sandbox_linux/nacl_sandbox_linux.h",
+ ]
+ deps = [
+ "//base",
+ "//content",
+ "//sandbox/linux:sandbox",
+ ]
+ }
+
+ copy("nacl_helper_nonsfi_copy") {
+ sources = [
+ "${root_out_dir}/nacl_helper_nonsfi",
+ ]
+ outputs = [
+ "${root_build_dir}/{{source_file_part}}",
+ ]
+ deps = [
+ ":nacl_helper_nonsfi_nexe",
+ ]
+ }
}
- group("nacl_helper") {
+
+ group("helper_nonsfi") {
+ deps = [
+ ":nacl_helper_nonsfi_copy(//build/toolchain/nacl:newlib_pnacl_nonsfi)",
+ ]
}
}
« no previous file with comments | « chrome/test/BUILD.gn ('k') | content/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698