diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-21 07:16:05 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-21 07:16:05 +0000 |
commit | 9e18f3ef417194517260de7ee1c06181944ebe76 (patch) | |
tree | 1e0494985c9a89df2a9c96515e15f334b9d470c2 /base/third_party | |
parent | 2e5f3a0fb85bc2dc88317ab7a49096d5b4a489a1 (diff) | |
download | chromium_src-9e18f3ef417194517260de7ee1c06181944ebe76.zip chromium_src-9e18f3ef417194517260de7ee1c06181944ebe76.tar.gz chromium_src-9e18f3ef417194517260de7ee1c06181944ebe76.tar.bz2 |
Fixes in base for [P]NaCl port of remoting client
Various minor fixes in base needed for [P]NaCl port of remoting client:
- added base_i18n_untrusted target
- md5 is included in base_untrusted.
- base/metrics is compiled in base_untrusted (src/net depends on it).
- enabled PNaCl build of base_untrusted
- __builtin_extract_return_addr() is not allowed in PNaCl (validator
rejects it).
- sys_byteorder.h now works in NaCl.
BUG=276739
Review URL: https://codereview.chromium.org/116803005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242270 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/third_party')
-rw-r--r-- | base/third_party/nspr/prcpucfg_nacl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/third_party/nspr/prcpucfg_nacl.h b/base/third_party/nspr/prcpucfg_nacl.h index d8602d3..ed44dd7 100644 --- a/base/third_party/nspr/prcpucfg_nacl.h +++ b/base/third_party/nspr/prcpucfg_nacl.h @@ -94,7 +94,7 @@ #define PR_BYTES_PER_WORD_LOG2 3 #define PR_BYTES_PER_DWORD_LOG2 3 -#elif defined(__i386__) +#elif defined(__i386__) || defined(__pnacl__) #define IS_LITTLE_ENDIAN 1 #undef IS_BIG_ENDIAN |