Index: base/base_nacl.gyp |
diff --git a/base/base_nacl.gyp b/base/base_nacl.gyp |
index 0816d316f38b1d4f9327328eb00d39080420f9df..7221d2ab77a4b4066ffb02ce24bca95ba50e4e7d 100644 |
--- a/base/base_nacl.gyp |
+++ b/base/base_nacl.gyp |
@@ -67,5 +67,60 @@ |
}, |
], |
}], |
+ ['disable_nacl==0', { |
+ 'targets': [ |
+ { |
+ 'target_name': 'base_nacl_nonsfi', |
+ 'type': 'none', |
+ 'include_dirs': [ |
+ '<(DEPTH)/native_client/src/public/linux_syscalls', |
+ ], |
+ 'variables': { |
+ 'base_target': 1, |
+ 'nacl_untrusted_build': 1, |
+ 'nlib_target': 'libbase_nacl_nonsfi.a', |
+ 'build_glibc': 0, |
+ 'build_newlib': 0, |
+ 'build_irt': 0, |
+ 'build_pnacl_newlib': 0, |
+ 'build_nonsfi_helper': 1, |
+ |
+ 'sources': [ |
+ 'base_switches.cc', |
+ 'base_switches.h', |
+ |
+ # For PathExists and ReadFromFD. |
+ 'files/file_util_posix.cc', |
+ |
+ # For MessageLoopForIO based on libevent. |
+ 'message_loop/message_pump_libevent.cc', |
+ 'message_loop/message_pump_libevent.h', |
+ |
+ # For UnixDomainSocket::SendMsg and RecvMsg. |
+ 'posix/unix_domain_socket_linux.cc', |
+ |
+ # For GetKnownDeadTerminationStatus and GetTerminationStatus. |
+ 'process/kill_posix.cc', |
+ |
+ # Unlike libbase_nacl, for Non-SFI build, we need to use |
+ # rand_util_posix for random implementation, instead of |
+ # rand_util_nacl.cc, which is based on IRT. rand_util_nacl.cc is |
+ # excluded below. |
+ 'rand_util_posix.cc', |
+ |
+ # For CancelableSyncSocket. |
+ 'sync_socket_nacl.cc', |
+ ], |
+ }, |
+ 'sources!': [ |
+ 'rand_util_nacl.cc', |
+ ], |
+ 'dependencies': [ |
+ '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
+ '<(DEPTH)/third_party/libevent/libevent_nacl_nonsfi.gyp:event_nacl_nonsfi', |
+ ], |
+ }, |
+ ], |
+ }], |
], |
} |