Changeset 183945 in webkit
- Timestamp:
- May 7, 2015, 2:09:02 PM (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
r183940 r183945 1 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com> 2 3 [GTK] Checks for DEVELOPMENT_BUILD are all wrong 4 https://bugs.webkit.org/show_bug.cgi?id=144746 5 6 Reviewed by Martin Robinson. 7 8 Don't set DEVELOPMENT_BUILD. We check whether it is defined for conditional compilation, not 9 what it is defined to, so defining it to 0 effectively turned it on always. 10 11 * Source/cmake/OptionsGTK.cmake: 12 1 13 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com> 2 14 -
trunk/Source/WebCore/ChangeLog
r183943 r183945 1 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com> 2 3 [GTK] Checks for DEVELOPMENT_BUILD are all wrong 4 https://bugs.webkit.org/show_bug.cgi?id=144746 5 6 Reviewed by Martin Robinson. 7 8 Use DEVELOPER_MODE rather than DEVELOPMENT_BUILD. 9 10 * platform/gtk/GtkUtilities.cpp: 11 * platform/gtk/GtkUtilities.h: 12 * platform/text/gtk/HyphenationLibHyphen.cpp: 13 (WebCore::availableLocales): 14 1 15 2015-05-07 Simon Fraser <simon.fraser@apple.com> 2 16 -
trunk/Source/WebCore/platform/gtk/GtkUtilities.cpp
r183731 r183945 55 55 } 56 56 57 #if defined(DEVELOP MENT_BUILD)57 #if defined(DEVELOPER_MODE) 58 58 static CString topLevelPath() 59 59 { -
trunk/Source/WebCore/platform/gtk/GtkUtilities.h
r183731 r183945 29 29 bool widgetIsOnscreenToplevelWindow(GtkWidget*); 30 30 31 #if defined(DEVELOP MENT_BUILD)31 #if defined(DEVELOPER_MODE) 32 32 CString webkitBuildDirectory(); 33 33 #endif -
trunk/Source/WebCore/platform/text/gtk/HyphenationLibHyphen.cpp
r183584 r183945 64 64 } 65 65 66 #if defined(DEVELOP MENT_BUILD)66 #if defined(DEVELOPER_MODE) 67 67 static void scanTestDictionariesDirectoryIfNecessary(HashMap<AtomicString, String>& availableLocales) 68 68 { … … 92 92 scanDirectoryForDicionaries(gDictionaryDirectories[i], availableLocales); 93 93 94 #if defined(DEVELOP MENT_BUILD)94 #if defined(DEVELOPER_MODE) 95 95 scanTestDictionariesDirectoryIfNecessary(availableLocales); 96 96 #endif -
trunk/Source/WebKit2/ChangeLog
r183942 r183945 1 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com> 2 3 [GTK] Checks for DEVELOPMENT_BUILD are all wrong 4 https://bugs.webkit.org/show_bug.cgi?id=144746 5 6 Reviewed by Martin Robinson. 7 8 Use DEVELOPER_MODE rather than DEVELOPMENT_BUILD. 9 10 * Shared/gtk/ProcessExecutablePathGtk.cpp: 11 (WebKit::findWebKitProcess): 12 * UIProcess/API/gtk/WebKitWebContext.cpp: 13 (injectedBundleDirectory): 14 * UIProcess/gtk/TextCheckerGtk.cpp: 15 (WebKit::enchantTextChecker): 16 1 17 2015-05-06 Dean Jackson <dino@apple.com> 2 18 -
trunk/Source/WebKit2/Shared/gtk/ProcessExecutablePathGtk.cpp
r181392 r183945 31 31 #include <glib.h> 32 32 33 #if defined(DEVELOP MENT_BUILD)33 #if defined(DEVELOPER_MODE) 34 34 #include <wtf/gobject/GlibUtilities.h> 35 35 #endif … … 39 39 namespace WebKit { 40 40 41 #if defined(DEVELOP MENT_BUILD)41 #if defined(DEVELOPER_MODE) 42 42 static String getExecutablePath() 43 43 { … … 51 51 static String findWebKitProcess(const char* processName) 52 52 { 53 #if defined(DEVELOP MENT_BUILD)53 #if defined(DEVELOPER_MODE) 54 54 static const char* execDirectory = g_getenv("WEBKIT_EXEC_PATH"); 55 55 if (execDirectory) { -
trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp
r183936 r183945 217 217 static const char* injectedBundleDirectory() 218 218 { 219 #if defined(DEVELOP MENT_BUILD)219 #if defined(DEVELOPER_MODE) 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
r183936 r183945 45 45 static NeverDestroyed<WebCore::TextCheckerEnchant> checker; 46 46 47 #if defined(DEVELOP MENT_BUILD)47 #if defined(DEVELOPER_MODE) 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
r183922 r183945 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})81 79 if (DEVELOPER_MODE) 82 80 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MINIBROWSER PUBLIC ON) -
trunk/Tools/ChangeLog
r183940 r183945 1 2015-05-07 Michael Catanzaro <mcatanzaro@igalia.com> 2 3 [GTK] Checks for DEVELOPMENT_BUILD are all wrong 4 https://bugs.webkit.org/show_bug.cgi?id=144746 5 6 Reviewed by Martin Robinson. 7 8 Use DEVELOPER_MODE rather than DEVELOPMENT_BUILD. 9 10 * MiniBrowser/gtk/main.c: 11 (main): 12 1 13 2015-05-05 Myles C. Maxfield <mmaxfield@apple.com> 2 14 -
trunk/Tools/MiniBrowser/gtk/main.c
r183101 r183945 257 257 { 258 258 gtk_init(&argc, &argv); 259 #if defined(DEVELOP MENT_BUILD)259 #if defined(DEVELOPER_MODE) 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.