diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-25 00:56:14 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-25 00:56:14 +0000 |
commit | c47ad0d702902a300be43d6e3ff348bc16efd26c (patch) | |
tree | 6c05e589798e3de0bdc7a6b2c3916bca2d6bd8fa /base/time_posix.cc | |
parent | 448d14a332acd24a5a3df93071d32caf39b98354 (diff) | |
download | chromium_src-c47ad0d702902a300be43d6e3ff348bc16efd26c.zip chromium_src-c47ad0d702902a300be43d6e3ff348bc16efd26c.tar.gz chromium_src-c47ad0d702902a300be43d6e3ff348bc16efd26c.tar.bz2 |
Make more of base compile with the Native Client toolchain.
This is needed to get parts of the PPAPI proxy to compile as
untrusted code. Leaving base.gypi unchanged even though this
adds files, as they are only used by experimental target.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/9465017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123613 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/time_posix.cc')
-rw-r--r-- | base/time_posix.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/time_posix.cc b/base/time_posix.cc index be99971..829c000 100644 --- a/base/time_posix.cc +++ b/base/time_posix.cc @@ -15,6 +15,8 @@ #if defined(OS_ANDROID) #include "base/os_compat_android.h" +#elif defined(OS_NACL) +#include "base/os_compat_nacl.h" #endif namespace base { |