Changeset 183986 in webkit
- Timestamp:
- May 8, 2015, 12:56:51 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
-
ChangeLog (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/platform/gtk/GtkUtilities.cpp (modified) (1 diff)
-
Source/WebCore/platform/gtk/GtkUtilities.h (modified) (1 diff)
-
Source/WebCore/platform/text/gtk/HyphenationLibHyphen.cpp (modified) (2 diffs)
-
Source/WebKit2/ChangeLog (modified) (1 diff)
-
Source/WebKit2/Shared/gtk/ProcessExecutablePathGtk.cpp (modified) (3 diffs)
-
Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp (modified) (1 diff)
-
Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp (modified) (1 diff)
-
Source/cmake/OptionsGTK.cmake (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/MiniBrowser/gtk/main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r183952 r183986 1 2015-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 1 14 2015-05-07 Myles C. Maxfield <mmaxfield@apple.com> 2 15 -
trunk/Source/WebCore/ChangeLog
r183985 r183986 1 2015-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 1 14 2015-05-07 Chris Dumez <cdumez@apple.com> 2 15 -
trunk/Source/WebCore/platform/gtk/GtkUtilities.cpp
r183945 r183986 55 55 } 56 56 57 #if defined(DEVELOP ER_MODE)57 #if defined(DEVELOPMENT_BUILD) 58 58 static CString topLevelPath() 59 59 { -
trunk/Source/WebCore/platform/gtk/GtkUtilities.h
r183945 r183986 29 29 bool widgetIsOnscreenToplevelWindow(GtkWidget*); 30 30 31 #if defined(DEVELOP ER_MODE)31 #if defined(DEVELOPMENT_BUILD) 32 32 CString webkitBuildDirectory(); 33 33 #endif -
trunk/Source/WebCore/platform/text/gtk/HyphenationLibHyphen.cpp
r183945 r183986 64 64 } 65 65 66 #if defined(DEVELOP ER_MODE)66 #if defined(DEVELOPMENT_BUILD) 67 67 static void scanTestDictionariesDirectoryIfNecessary(HashMap<AtomicString, String>& availableLocales) 68 68 { … … 92 92 scanDirectoryForDicionaries(gDictionaryDirectories[i], availableLocales); 93 93 94 #if defined(DEVELOP ER_MODE)94 #if defined(DEVELOPMENT_BUILD) 95 95 scanTestDictionariesDirectoryIfNecessary(availableLocales); 96 96 #endif -
trunk/Source/WebKit2/ChangeLog
r183978 r183986 1 2015-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 1 14 2015-05-07 Conrad Shultz <conrad_shultz@apple.com> 2 15 -
trunk/Source/WebKit2/Shared/gtk/ProcessExecutablePathGtk.cpp
r183945 r183986 31 31 #include <glib.h> 32 32 33 #if defined(DEVELOP ER_MODE)33 #if defined(DEVELOPMENT_BUILD) 34 34 #include <wtf/gobject/GlibUtilities.h> 35 35 #endif … … 39 39 namespace WebKit { 40 40 41 #if defined(DEVELOP ER_MODE)41 #if defined(DEVELOPMENT_BUILD) 42 42 static String getExecutablePath() 43 43 { … … 51 51 static String findWebKitProcess(const char* processName) 52 52 { 53 #if defined(DEVELOP ER_MODE)53 #if defined(DEVELOPMENT_BUILD) 54 54 static const char* execDirectory = g_getenv("WEBKIT_EXEC_PATH"); 55 55 if (execDirectory) { -
trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp
r183945 r183986 217 217 static const char* injectedBundleDirectory() 218 218 { 219 #if defined(DEVELOP ER_MODE)219 #if defined(DEVELOPMENT_BUILD) 220 220 const char* bundleDirectory = g_getenv("WEBKIT_INJECTED_BUNDLE_PATH"); 221 221 if (bundleDirectory && g_file_test(bundleDirectory, G_FILE_TEST_IS_DIR)) -
trunk/Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp
r183949 r183986 45 45 static NeverDestroyed<WebCore::TextCheckerEnchant> checker; 46 46 47 #if defined(DEVELOP ER_MODE)47 #if defined(DEVELOPMENT_BUILD) 48 48 // This is a bit of a hack, but ensures that for testing purposes, 49 49 // spell checking is properly initialized in WebKitTestRunner while -
trunk/Source/cmake/OptionsGTK.cmake
r183945 r183986 77 77 WEBKIT_OPTION_DEPEND(USE_GSTREAMER_MPEGTS ENABLE_VIDEO) 78 78 79 # FIXME: There is no reason these should be different. 80 SET_AND_EXPOSE_TO_BUILD(DEVELOPMENT_BUILD ${DEVELOPER_MODE}) 79 81 if (DEVELOPER_MODE) 80 82 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MINIBROWSER PUBLIC ON) -
trunk/Tools/ChangeLog
r183976 r183986 1 2015-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 1 14 2015-05-07 Anders Carlsson <andersca@apple.com> 2 15 -
trunk/Tools/MiniBrowser/gtk/main.c
r183945 r183986 257 257 { 258 258 gtk_init(&argc, &argv); 259 #if defined(DEVELOP ER_MODE)259 #if defined(DEVELOPMENT_BUILD) 260 260 g_setenv("WEBKIT_INJECTED_BUNDLE_PATH", WEBKIT_INJECTED_BUNDLE_PATH, FALSE); 261 261 #endif
Note:
See TracChangeset
for help on using the changeset viewer.