diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-12 08:37:08 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-12 08:37:08 +0000 |
commit | 19ea84ca4be1f1aa420e9c86007844eeb1586d77 (patch) | |
tree | dabadca3b57edc51496203066e2d167c95520f1b /base/command_line.cc | |
parent | eda3c3641e9f0a8877aff9d0743d3e582e0cdbd9 (diff) | |
download | chromium_src-19ea84ca4be1f1aa420e9c86007844eeb1586d77.zip chromium_src-19ea84ca4be1f1aa420e9c86007844eeb1586d77.tar.gz chromium_src-19ea84ca4be1f1aa420e9c86007844eeb1586d77.tar.bz2 |
Bring up IPC in NaCl.
This patch gets a bunch of the IPC and Base libraries compiling (but not
linking) in NaCl. There's obviously a bunch more work to do, but this patch is
a starting point.
Original patch by Eric Seidel.
Review URL: http://codereview.chromium.org/4812002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65920 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/command_line.cc')
-rw-r--r-- | base/command_line.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/command_line.cc b/base/command_line.cc index 2e6021d..3308e80 100644 --- a/base/command_line.cc +++ b/base/command_line.cc @@ -224,7 +224,7 @@ void CommandLine::Init(int argc, const char* const* argv) { #endif } -#if defined(OS_POSIX) && !defined(OS_MACOSX) +#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_NACL) // static void CommandLine::SetProcTitle() { // Build a single string which consists of all the arguments separated |