diff options
author | petarj@mips.com <petarj@mips.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-13 05:18:09 +0000 |
---|---|---|
committer | petarj@mips.com <petarj@mips.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-13 05:18:09 +0000 |
commit | b36372df539f6f2b6e7fd396e748c88a0e25fc32 (patch) | |
tree | c81be4dd6fff67374de465e6befe827b07028811 | |
parent | 6e04921aa9d377e160dcdb34369819d7051f7742 (diff) | |
download | chromium_src-b36372df539f6f2b6e7fd396e748c88a0e25fc32.zip chromium_src-b36372df539f6f2b6e7fd396e748c88a0e25fc32.tar.gz chromium_src-b36372df539f6f2b6e7fd396e748c88a0e25fc32.tar.bz2 |
[MIPS] Set host_plugin extension and prefix for MIPS remoting.
Minimal change in remoting.gyp to enable successful build for MIPS arch.
BUG= https://code.google.com/p/chromium/issues/detail?id=130022
TEST=make chrome
Review URL: https://chromiumcodereview.appspot.com/11116017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161721 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | remoting/remoting.gyp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp index b668ab0..df6c2b03 100644 --- a/remoting/remoting.gyp +++ b/remoting/remoting.gyp @@ -58,10 +58,13 @@ 'host_plugin_prefix': 'lib', }], ['os_posix == 1 and OS != "mac" and target_arch == "arm"', { - # linux 64 bit 'host_plugin_extension': 'arm.so', 'host_plugin_prefix': 'lib', }], + ['os_posix == 1 and OS != "mac" and target_arch == "mipsel"', { + 'host_plugin_extension': 'mipsel.so', + 'host_plugin_prefix': 'lib', + }], ['OS=="win"', { 'host_plugin_extension': 'dll', 'host_plugin_prefix': '', |