diff options
author | petarj@mips.com <petarj@mips.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-03 16:22:47 +0000 |
---|---|---|
committer | petarj@mips.com <petarj@mips.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-03 16:22:47 +0000 |
commit | 174e3bab30cc18b9b7956b5c423f4f0610c68bde (patch) | |
tree | a42df66ce399bcab6f1485112d8e324bbde6bcc2 /ppapi | |
parent | 2397ce85ad0afff2ef85b01c5c55cc32902bbf87 (diff) | |
download | chromium_src-174e3bab30cc18b9b7956b5c423f4f0610c68bde.zip chromium_src-174e3bab30cc18b9b7956b5c423f4f0610c68bde.tar.gz chromium_src-174e3bab30cc18b9b7956b5c423f4f0610c68bde.tar.bz2 |
[MIPS] Add missing mips.nexe entries in nmf
Browser expects to know paths to mips native client executables, so these
need to be provided in manifest files. Lack of these causes the related
browser tests to fail on MIPS arch.
Review URL: https://codereview.chromium.org/219193017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@261439 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/tests/ppapi_nacl_tests_newlib.nmf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ppapi/tests/ppapi_nacl_tests_newlib.nmf b/ppapi/tests/ppapi_nacl_tests_newlib.nmf index f0bb249..ffeb778 100644 --- a/ppapi/tests/ppapi_nacl_tests_newlib.nmf +++ b/ppapi/tests/ppapi_nacl_tests_newlib.nmf @@ -2,6 +2,7 @@ "program": { "x86-64": {"url": "ppapi_nacl_tests_newlib_x64.nexe"}, "x86-32": {"url": "ppapi_nacl_tests_newlib_x32.nexe"}, - "arm": {"url": "ppapi_nacl_tests_newlib_arm.nexe"} + "arm": {"url": "ppapi_nacl_tests_newlib_arm.nexe"}, + "mips32": {"url": "ppapi_nacl_tests_newlib_mips32.nexe"} } } |