Changeset 167567 in webkit


Ignore:
Timestamp:
Apr 20, 2014 10:40:40 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r167510.
https://bugs.webkit.org/show_bug.cgi?id=131915

broke GTK Debug bot (Requested by philn on #webkit).

Reverted changeset:

"[GTK] Add llvmpipe (Mesa) to the JHBuild moduleset and force
it when running layout tests"
https://bugs.webkit.org/show_bug.cgi?id=131472
http://trac.webkit.org/changeset/167510

Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r167510 r167567  
     12014-04-20  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r167510.
     4        https://bugs.webkit.org/show_bug.cgi?id=131915
     5
     6        broke GTK Debug bot (Requested by philn on #webkit).
     7
     8        Reverted changeset:
     9
     10        "[GTK] Add llvmpipe (Mesa) to the JHBuild moduleset and force
     11        it when running layout tests"
     12        https://bugs.webkit.org/show_bug.cgi?id=131472
     13        http://trac.webkit.org/changeset/167510
     14
    1152014-04-18  Martin Robinson  <mrobinson@igalia.com>
    216
  • trunk/Tools/Scripts/webkitpy/port/gtk.py

    r167510 r167567  
    104104        environment['TEST_RUNNER_TEST_PLUGIN_PATH'] = self._build_path('lib')
    105105        environment['AUDIO_RESOURCES_PATH'] = self.path_from_webkit_base('Source', 'WebCore', 'platform', 'audio', 'resources')
    106 
    107         llvmpipe_libgl_path = os.environ.get('LLVMPIPE_LIBGL_PATH')
    108         if llvmpipe_libgl_path:
    109             environment['LD_LIBRARY_PATH'] = '%s:%s' % (llvmpipe_libgl_path, os.environ.get('LD_LIBRARY_PATH', ''))
    110 
    111106        self._copy_value_from_environ_if_set(environment, 'WEBKIT_OUTPUTDIR')
    112107        if self.get_option("leaks"):
  • trunk/Tools/gtk/jhbuild.modules

    r167510 r167567  
    3030      <dep package="gst-libav"/>
    3131      <dep package="xserver"/>
    32       <dep package="mesa"/>
    3332    </dependencies>
    3433  </metamodule>
     
    5049  <repository type="tarball" name="xorg"
    5150      href="http://xorg.freedesktop.org"/>
    52   <repository type="tarball" name="ftp.freedesktop.org"
    53       href="ftp://ftp.freedesktop.org"/>
    5451  <repository type="tarball" name="xmlsoft.org"
    5552      href="ftp://xmlsoft.org"/>
     
    335332  </autotools>
    336333
    337   <autotools id="mesa" autogenargs="--enable-xlib-glx --disable-dri" skip-install="true">
    338     <branch module="/pub/mesa/10.0.4/MesaLib-10.0.4.tar.bz2" version="10.0.4"
    339             checkoutdir="Mesa-10.0.4"
    340             repo="ftp.freedesktop.org"
    341             hash="sha256:ff6eb552becb25a318e53ac56b95a8c2d49e83ad674d87f52e811c0a20c25a40"/>
    342   </autotools>
    343 
    344334</moduleset>
  • trunk/Tools/gtk/jhbuildrc

    r167510 r167567  
    3232# annotations sooner rather than later.
    3333autogenargs='--enable-introspection'
    34 
    35 if use_lib64:
    36     os.environ['LLVMPIPE_LIBGL_PATH'] = os.path.abspath(os.path.join(checkoutroot, 'Mesa-10.0.4', 'lib64'))
    37 else:
    38     os.environ['LLVMPIPE_LIBGL_PATH'] = os.path.abspath(os.path.join(checkoutroot, 'Mesa-10.0.4', 'lib'))
Note: See TracChangeset for help on using the changeset viewer.