⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 183986 in webkit


Ignore:
Timestamp:
May 8, 2015, 12:56:51 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

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

"It broke all the GTK+ tests" (Requested by KaL on #webkit).

Reverted changeset:

"[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
https://bugs.webkit.org/show_bug.cgi?id=144746
http://trac.webkit.org/changeset/183945

Location:
trunk
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r183952 r183986  
     12015-05-08  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r183945.
     4        https://bugs.webkit.org/show_bug.cgi?id=144789
     5
     6        "It broke all the GTK+ tests" (Requested by KaL on #webkit).
     7
     8        Reverted changeset:
     9
     10        "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
     11        https://bugs.webkit.org/show_bug.cgi?id=144746
     12        http://trac.webkit.org/changeset/183945
     13
    1142015-05-07  Myles C. Maxfield  <mmaxfield@apple.com>
    215
  • trunk/Source/WebCore/ChangeLog

    r183985 r183986  
     12015-05-08  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r183945.
     4        https://bugs.webkit.org/show_bug.cgi?id=144789
     5
     6        "It broke all the GTK+ tests" (Requested by KaL on #webkit).
     7
     8        Reverted changeset:
     9
     10        "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
     11        https://bugs.webkit.org/show_bug.cgi?id=144746
     12        http://trac.webkit.org/changeset/183945
     13
    1142015-05-07  Chris Dumez  <cdumez@apple.com>
    215
  • trunk/Source/WebCore/platform/gtk/GtkUtilities.cpp

    r183945 r183986  
    5555}
    5656
    57 #if defined(DEVELOPER_MODE)
     57#if defined(DEVELOPMENT_BUILD)
    5858static CString topLevelPath()
    5959{
  • trunk/Source/WebCore/platform/gtk/GtkUtilities.h

    r183945 r183986  
    2929bool widgetIsOnscreenToplevelWindow(GtkWidget*);
    3030
    31 #if defined(DEVELOPER_MODE)
     31#if defined(DEVELOPMENT_BUILD)
    3232CString webkitBuildDirectory();
    3333#endif
  • trunk/Source/WebCore/platform/text/gtk/HyphenationLibHyphen.cpp

    r183945 r183986  
    6464}
    6565
    66 #if defined(DEVELOPER_MODE)
     66#if defined(DEVELOPMENT_BUILD)
    6767static void scanTestDictionariesDirectoryIfNecessary(HashMap<AtomicString, String>& availableLocales)
    6868{
     
    9292            scanDirectoryForDicionaries(gDictionaryDirectories[i], availableLocales);
    9393
    94 #if defined(DEVELOPER_MODE)
     94#if defined(DEVELOPMENT_BUILD)
    9595        scanTestDictionariesDirectoryIfNecessary(availableLocales);
    9696#endif
  • trunk/Source/WebKit2/ChangeLog

    r183978 r183986  
     12015-05-08  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r183945.
     4        https://bugs.webkit.org/show_bug.cgi?id=144789
     5
     6        "It broke all the GTK+ tests" (Requested by KaL on #webkit).
     7
     8        Reverted changeset:
     9
     10        "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
     11        https://bugs.webkit.org/show_bug.cgi?id=144746
     12        http://trac.webkit.org/changeset/183945
     13
    1142015-05-07  Conrad Shultz  <conrad_shultz@apple.com>
    215
  • trunk/Source/WebKit2/Shared/gtk/ProcessExecutablePathGtk.cpp

    r183945 r183986  
    3131#include <glib.h>
    3232
    33 #if defined(DEVELOPER_MODE)
     33#if defined(DEVELOPMENT_BUILD)
    3434#include <wtf/gobject/GlibUtilities.h>
    3535#endif
     
    3939namespace WebKit {
    4040
    41 #if defined(DEVELOPER_MODE)
     41#if defined(DEVELOPMENT_BUILD)
    4242static String getExecutablePath()
    4343{
     
    5151static String findWebKitProcess(const char* processName)
    5252{
    53 #if defined(DEVELOPER_MODE)
     53#if defined(DEVELOPMENT_BUILD)
    5454    static const char* execDirectory = g_getenv("WEBKIT_EXEC_PATH");
    5555    if (execDirectory) {
  • trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp

    r183945 r183986  
    217217static const char* injectedBundleDirectory()
    218218{
    219 #if defined(DEVELOPER_MODE)
     219#if defined(DEVELOPMENT_BUILD)
    220220    const char* bundleDirectory = g_getenv("WEBKIT_INJECTED_BUNDLE_PATH");
    221221    if (bundleDirectory && g_file_test(bundleDirectory, G_FILE_TEST_IS_DIR))
  • trunk/Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp

    r183949 r183986  
    4545    static NeverDestroyed<WebCore::TextCheckerEnchant> checker;
    4646
    47 #if defined(DEVELOPER_MODE)
     47#if defined(DEVELOPMENT_BUILD)
    4848    // This is a bit of a hack, but ensures that for testing purposes,
    4949    // spell checking is properly initialized in WebKitTestRunner while
  • trunk/Source/cmake/OptionsGTK.cmake

    r183945 r183986  
    7777WEBKIT_OPTION_DEPEND(USE_GSTREAMER_MPEGTS ENABLE_VIDEO)
    7878
     79# FIXME: There is no reason these should be different.
     80SET_AND_EXPOSE_TO_BUILD(DEVELOPMENT_BUILD ${DEVELOPER_MODE})
    7981if (DEVELOPER_MODE)
    8082    WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MINIBROWSER PUBLIC ON)
  • trunk/Tools/ChangeLog

    r183976 r183986  
     12015-05-08  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r183945.
     4        https://bugs.webkit.org/show_bug.cgi?id=144789
     5
     6        "It broke all the GTK+ tests" (Requested by KaL on #webkit).
     7
     8        Reverted changeset:
     9
     10        "[GTK] Checks for DEVELOPMENT_BUILD are all wrong"
     11        https://bugs.webkit.org/show_bug.cgi?id=144746
     12        http://trac.webkit.org/changeset/183945
     13
    1142015-05-07  Anders Carlsson  <andersca@apple.com>
    215
  • trunk/Tools/MiniBrowser/gtk/main.c

    r183945 r183986  
    257257{
    258258    gtk_init(&argc, &argv);
    259 #if defined(DEVELOPER_MODE)
     259#if defined(DEVELOPMENT_BUILD)
    260260    g_setenv("WEBKIT_INJECTED_BUNDLE_PATH", WEBKIT_INJECTED_BUNDLE_PATH, FALSE);
    261261#endif
Note: See TracChangeset for help on using the changeset viewer.