diff options
author | pdox@google.com <pdox@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-18 00:18:13 +0000 |
---|---|---|
committer | pdox@google.com <pdox@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-18 00:18:13 +0000 |
commit | 13ddfa17564b1184324f17cbd1ded37168bf26d2 (patch) | |
tree | 8c85a01e09d346a3499b28f24afd0f8d83c9b2e4 /ppapi/native_client | |
parent | 159d7ce6e3694b9ab28d54a5366bb1b50bedb7c9 (diff) | |
download | chromium_src-13ddfa17564b1184324f17cbd1ded37168bf26d2.zip chromium_src-13ddfa17564b1184324f17cbd1ded37168bf26d2.tar.gz chromium_src-13ddfa17564b1184324f17cbd1ded37168bf26d2.tar.bz2 |
Disable building ppapi_geturl for PNaCl GlibC.
This is broken pending issue 2359.
NOTE: Setting is_broken on the test suite is not enough, since the nexe is published.
BUG= http://code.google.com/p/nativeclient/issues/detail?id=2359
BUG= http://code.google.com/p/nativeclient/issues/detail?id=2311
Review URL: http://codereview.chromium.org/8311006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105975 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r-- | ppapi/native_client/tests/ppapi_geturl/nacl.scons | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ppapi/native_client/tests/ppapi_geturl/nacl.scons b/ppapi/native_client/tests/ppapi_geturl/nacl.scons index 0248c1a..d970adf 100644 --- a/ppapi/native_client/tests/ppapi_geturl/nacl.scons +++ b/ppapi/native_client/tests/ppapi_geturl/nacl.scons @@ -16,6 +16,10 @@ Import('env') +# http://code.google.com/p/nativeclient/issues/detail?id=2359 +if env.Bit('bitcode') and env.Bit('nacl_glibc'): + Return() + env.Prepend(CPPDEFINES=['XP_UNIX']) env.Replace(TEST_DIR='${SOURCE_ROOT}/ppapi/native_client/tests/' + 'ppapi_geturl/') |