Index: base/base_nacl.gyp |
diff --git a/base/base_nacl.gyp b/base/base_nacl.gyp |
index 0816d316f38b1d4f9327328eb00d39080420f9df..3b84a6dbb2330dc9c58339dee157c0f894142061 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', |
Lei Zhang
2014/10/14 21:32:23
It's a bit weird for base to depend on things, but
hidehiko
2014/10/15 02:20:55
The PNaCl toolchain does not provide some header f
Mark Seaborn
2014/10/16 23:03:09
As an aside: I suppose this could be added to inc
hidehiko
2014/10/17 04:44:57
I think, yes. Please let me send out a separate CL
|
+ ], |
+ '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, intead of |
Lei Zhang
2014/10/14 21:32:23
typo: "intead"
hidehiko
2014/10/15 02:20:55
Done.
|
+ # 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', |
Lei Zhang
2014/10/14 21:32:23
I don't think you need this because rand_util_nacl
hidehiko
2014/10/15 02:20:55
rand_util_nacl.cc is actually included in base.gyp
Lei Zhang
2014/10/15 06:04:02
Ah, I see the "sources" above is a variable. That'
|
+ ], |
+ 'dependencies': [ |
+ '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
+ '<(DEPTH)/third_party/libevent/libevent_nacl_nonsfi.gyp:event_nacl_nonsfi', |
+ ], |
+ }, |
+ ], |
+ }], |
], |
} |