summaryrefslogtreecommitdiffstats
path: root/native_client_sdk
diff options
context:
space:
mode:
authorcbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-06 18:13:24 +0000
committercbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-06 18:13:24 +0000
commitdc440cac1b3bd07a03272678a2be4c931d7d1957 (patch)
treef1c83c1805c5c14edc4fececde134a039d20fb4e /native_client_sdk
parentef66a99ab0de277c837acf6f1120b29e803ddac6 (diff)
downloadchromium_src-dc440cac1b3bd07a03272678a2be4c931d7d1957.zip
chromium_src-dc440cac1b3bd07a03272678a2be4c931d7d1957.tar.gz
chromium_src-dc440cac1b3bd07a03272678a2be4c931d7d1957.tar.bz2
Revert 140786 - Enable PPAPINaCl GLIBC browser_tests.
NOTE: NaCl CL to update untrusted.gypi must go in first. BUG=127699 TEST=this is a test Review URL: https://chromiumcodereview.appspot.com/10409032 TBR=bradchen@google.com Review URL: https://chromiumcodereview.appspot.com/10543028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140790 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'native_client_sdk')
-rwxr-xr-xnative_client_sdk/src/tools/create_nmf.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/native_client_sdk/src/tools/create_nmf.py b/native_client_sdk/src/tools/create_nmf.py
index 84c6f53..3c33b2a 100755
--- a/native_client_sdk/src/tools/create_nmf.py
+++ b/native_client_sdk/src/tools/create_nmf.py
@@ -239,12 +239,12 @@ class NmfUtils(object):
def _GenerateManifest(self, runnable=True):
'''Create a JSON formatted dict containing the files
-
+
NaCl will map url requests based on architecture. The startup NEXE
can always be found under the top key PROGRAM. Additional files are under
the FILES key further mapped by file name. In the case of 'runnable' the
PROGRAM key is populated with urls pointing the runnable-ld.so which acts
- as the startup nexe. The application itself, is then placed under the
+ as the startup nexe. The application itself, is then placed under the
FILES key mapped as 'main.exe' instead of it's original name so that the
loader can find it.'''
manifest = { FILES_KEY: {}, PROGRAM_KEY: {} }
@@ -263,10 +263,6 @@ class NmfUtils(object):
# For the main nexes:
if need.endswith('.nexe') and need in self.main_files:
- # Ensure that the nexe name is relative, not absolute.
- # We assume that the nexe and the corresponding nmf file are
- # installed in the same directory.
- urlinfo[URL_KEY] = os.path.basename(urlinfo[URL_KEY])
# Place it under program if we aren't using the runnable-ld.so.
if not runnable:
manifest[PROGRAM_KEY][archinfo.arch] = urlinfo