Changeset 260580 in webkit


Ignore:
Timestamp:
Apr 23, 2020 10:36:53 AM (4 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, reverting r260562.
https://bugs.webkit.org/show_bug.cgi?id=210924

It caused 3 new failures and 1 timeout in GTK API tests
(Requested by clopez on #webkit).

Reverted changeset:

"[GTK][WPE] White-list more GStreamer environment variables in
webkitpy"
https://bugs.webkit.org/show_bug.cgi?id=210854
https://trac.webkit.org/changeset/260562

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r260578 r260580  
     12020-04-23  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, reverting r260562.
     4        https://bugs.webkit.org/show_bug.cgi?id=210924
     5
     6        It caused 3 new failures and 1 timeout in GTK API tests
     7        (Requested by clopez on #webkit).
     8
     9        Reverted changeset:
     10
     11        "[GTK][WPE] White-list more GStreamer environment variables in
     12        webkitpy"
     13        https://bugs.webkit.org/show_bug.cgi?id=210854
     14        https://trac.webkit.org/changeset/260562
     15
    1162020-04-23  Sihui Liu  <sihui_liu@apple.com>
    217
  • trunk/Tools/Scripts/webkitpy/port/gtk.py

    r260562 r260580  
    125125        self._copy_value_from_environ_if_set(environment, 'WEBKIT_JHBUILD')
    126126        self._copy_value_from_environ_if_set(environment, 'WEBKIT_TOP_LEVEL')
    127         self._copy_value_from_environ_if_set(environment, 'WEBKIT_GST_USE_PLAYBIN3')
    128         for gst_variable in ('DEBUG', 'DEBUG_DUMP_DOT_DIR', 'DEBUG_FILE', 'DEBUG_NO_COLOR',
    129                              'PLUGIN_SCANNER', 'PLUGIN_PATH', 'PLUGIN_SYSTEM_PATH', 'REGISTRY'):
    130             self._copy_value_from_environ_if_set(environment, 'GST_%s' % gst_variable)
     127        self._copy_value_from_environ_if_set(environment, 'USE_PLAYBIN3')
     128        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG')
     129        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_DUMP_DOT_DIR')
     130        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_FILE')
     131        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_NO_COLOR')
    131132
    132133        # Configure the software libgl renderer if jhbuild ready and we test inside a virtualized window system
  • trunk/Tools/Scripts/webkitpy/port/wpe.py

    r260562 r260580  
    8080        self._copy_value_from_environ_if_set(environment, 'WEBKIT_JHBUILD')
    8181        self._copy_value_from_environ_if_set(environment, 'WEBKIT_TOP_LEVEL')
     82        self._copy_value_from_environ_if_set(environment, 'USE_PLAYBIN3')
     83        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG')
     84        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_DUMP_DOT_DIR')
     85        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_FILE')
     86        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_NO_COLOR')
    8287        self._copy_value_from_environ_if_set(environment, 'LIBGL_ALWAYS_SOFTWARE')
    8388        self._copy_value_from_environ_if_set(environment, 'XR_RUNTIME_JSON')
    84         self._copy_value_from_environ_if_set(environment, 'WEBKIT_GST_USE_PLAYBIN3')
    85         for gst_variable in ('DEBUG', 'DEBUG_DUMP_DOT_DIR', 'DEBUG_FILE', 'DEBUG_NO_COLOR',
    86                              'PLUGIN_SCANNER', 'PLUGIN_PATH', 'PLUGIN_SYSTEM_PATH', 'REGISTRY'):
    87             self._copy_value_from_environ_if_set(environment, 'GST_%s' % gst_variable)
    8889        return environment
    8990
Note: See TracChangeset for help on using the changeset viewer.