Changeset 219483 in webkit
- Timestamp:
- Jul 13, 2017, 7:29:11 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r219480 r219483 1 2017-07-05 Matthew Hanson <matthew_hanson@apple.com> 2 3 Update tools and configurations after renaming Source/WebKit to Source/WebKitLegacy. 4 https://bugs.webkit.org/show_bug.cgi?id=174162 5 rdar://problem/33137594 6 7 Reviewed by Dan Bernstein. 8 9 Mass rename of Source/WebKit to Source/WebKitLegacy in OpenSource cmake files 10 and Xcode project files. 11 12 * Source/cmake/OptionsGTK.cmake: 13 * Source/cmake/WebKitFS.cmake: 14 * WebKit.xcworkspace/contents.xcworkspacedata: 15 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme: 16 1 17 2017-07-13 Michael Catanzaro <mcatanzaro@igalia.com> 2 18 -
trunk/Source/Makefile
r211988 r219483 1 MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE ThirdParty/libwebrtc WebCore WebInspectorUI WebKit WebKit21 MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE ThirdParty/libwebrtc WebCore WebInspectorUI WebKitLegacy WebKit2 2 2 3 3 ifneq (,$(SDKROOT)) 4 4 ifeq (,$(findstring macosx,$(SDKROOT))) 5 MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE ThirdParty/libwebrtc WebCore WebKit WebKit25 MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE ThirdParty/libwebrtc WebCore WebKitLegacy WebKit2 6 6 endif 7 7 endif -
trunk/Source/cmake/OptionsGTK.cmake
r219384 r219483 440 440 set(FORWARDING_HEADERS_WEBKIT2GTK_EXTENSION_DIR ${FORWARDING_HEADERS_DIR}/webkit2gtk-webextension) 441 441 442 set(WebKit_PKGCONFIG_FILE ${CMAKE_BINARY_DIR}/Source/WebKit /gtk/webkitgtk-${WEBKITGTK_API_VERSION}.pc)442 set(WebKit_PKGCONFIG_FILE ${CMAKE_BINARY_DIR}/Source/WebKitLegacy/gtk/webkitgtk-${WEBKITGTK_API_VERSION}.pc) 443 443 set(WebKit2_PKGCONFIG_FILE ${CMAKE_BINARY_DIR}/Source/WebKit2/webkit2gtk-${WEBKITGTK_API_VERSION}.pc) 444 444 set(WebKit2WebExtension_PKGCONFIG_FILE ${CMAKE_BINARY_DIR}/Source/WebKit2/webkit2gtk-web-extension-${WEBKITGTK_API_VERSION}.pc) -
trunk/Source/cmake/WebKitFS.cmake
r218436 r219483 15 15 endif () 16 16 if (NOT WEBKIT_DIR) 17 set(WEBKIT_DIR "${CMAKE_SOURCE_DIR}/Source/WebKit ")17 set(WEBKIT_DIR "${CMAKE_SOURCE_DIR}/Source/WebKitLegacy") 18 18 endif () 19 19 if (NOT WEBKIT2_DIR) -
trunk/Tools/BuildSlaveSupport/build.webkit.org-config/wkbuild_unittest.py
r217922 r219483 32 32 (["Source/JavaScriptCore/JavaScriptCore.xcodeproj/foo"], ["mac-yosemite", "mac-elcapitan", "mac-sierra", "mac-highsierra", "ios-10", "ios-simulator-10"]), 33 33 (["Source/JavaScriptCore/Configurations/Base.xcconfig"], ["mac-yosemite", "mac-elcapitan", "mac-sierra", "mac-highsierra", "ios-10", "ios-simulator-10"]), 34 (["Source/JavaScriptCore/JavaScriptCore.vcproj/foo", "Source/WebKit2/win/WebKit2.vcproj", "Source/WebKit /win/WebKit.sln", "Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops"], ["win"]),34 (["Source/JavaScriptCore/JavaScriptCore.vcproj/foo", "Source/WebKit2/win/WebKit2.vcproj", "Source/WebKitLegacy/win/WebKit.sln", "Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops"], ["win"]), 35 35 (["LayoutTests/platform/mac/foo", "Source/WebCore/bar"], ["*"]), 36 36 (["LayoutTests/foo"], ["*"]), … … 53 53 (["LayoutTests/platform/spi/cocoa/foo"], ["mac-yosemite", "mac-elcapitan", "mac-sierra", "mac-highsierra", "ios-10", "ios-simulator-10"]), 54 54 (["LayoutTests/platform/spi/cf/foo"], ["mac-yosemite", "mac-elcapitan", "mac-sierra", "mac-highsierra", "win", "ios-10", "ios-simulator-10"]), 55 (["Source/WebKit /mac/WebKit.mac.exp"], ["mac-yosemite", "mac-elcapitan", "mac-sierra", "mac-highsierra"]),56 (["Source/WebKit /ios/WebKit.iOS.exp"], ["ios-10", "ios-simulator-10"]),55 (["Source/WebKitLegacy/mac/WebKit.mac.exp"], ["mac-yosemite", "mac-elcapitan", "mac-sierra", "mac-highsierra"]), 56 (["Source/WebKitLegacy/ios/WebKit.iOS.exp"], ["ios-10", "ios-simulator-10"]), 57 57 (["Source/Dummy/foo.exp"], ["mac-yosemite", "mac-elcapitan", "mac-sierra", "mac-highsierra", "ios-10", "ios-simulator-10"]), 58 58 (["Source/WebCore/ios/foo"], ["ios-10", "ios-simulator-10"]), -
trunk/Tools/ChangeLog
r219477 r219483 1 2017-07-05 Matthew Hanson <matthew_hanson@apple.com> 2 3 Update tools and configurations after renaming Source/WebKit to Source/WebKitLegacy. 4 https://bugs.webkit.org/show_bug.cgi?id=174162 5 rdar://problem/33137594 6 7 Reviewed by Dan Bernstein. 8 9 Mass rename of Source/WebKit to Source/WebKitLegacy in OpenSource tooling. 10 11 * BuildSlaveSupport/build.webkit.org-config/wkbuild_unittest.py: 12 * DumpRenderTree/mac/InternalHeaders/WebKit/WebTypesInternal.h: 13 * EWSTools/configure-clang-linux.sh: 14 * Scripts/build-webkit: 15 * Scripts/do-file-rename: 16 * Scripts/do-webcore-rename: 17 * Scripts/update-webkit-localizable-strings: 18 * Scripts/webkitpy/common/checkout/checkout_unittest.py: 19 * Scripts/webkitpy/style/checkers/changelog_unittest.py: 20 * Scripts/webkitpy/style/checkers/featuredefines.py: 21 * gtk/manifest.txt.in: 22 1 23 2017-07-13 Jonathan Bedard <jbedard@apple.com> 2 24 -
trunk/Tools/DumpRenderTree/mac/InternalHeaders/WebKit/WebTypesInternal.h
r75908 r219483 1 #include "../../../../Source/WebKit /mac/Misc/WebTypesInternal.h"1 #include "../../../../Source/WebKitLegacy/mac/Misc/WebTypesInternal.h" -
trunk/Tools/EWSTools/configure-clang-linux.sh
r142802 r219483 30 30 fi 31 31 32 bash /mnt/git/$QUEUE_TYPE/Source/WebKit /chromium/tools/clang/scripts/update.sh32 bash /mnt/git/$QUEUE_TYPE/Source/WebKitLegacy/chromium/tools/clang/scripts/update.sh 33 33 export builddir_name=llvm 34 34 export GYP_DEFINES='clang=1' -
trunk/Tools/Scripts/build-webkit
r216577 r219483 152 152 153 153 # Check that all the project directories are there. 154 my @projects = ("Source/JavaScriptCore", "Source/WebCore", "Source/WebKit ");154 my @projects = ("Source/JavaScriptCore", "Source/WebCore", "Source/WebKitLegacy"); 155 155 156 156 # Build WTF as a separate static library on ports which support it. … … 201 201 202 202 # WebInspectorUI must come after JavaScriptCore and WebCore but before WebKit and WebKit2 203 my $webKitIndex = first { $projects[$_] eq "Source/WebKit " } 0..$#projects;203 my $webKitIndex = first { $projects[$_] eq "Source/WebKitLegacy" } 0..$#projects; 204 204 splice(@projects, $webKitIndex, 0, "Source/WebInspectorUI"); 205 205 … … 229 229 # list after all of the port specific tweaks have been made to 230 230 # build options, etc. 231 @projects = ("Source/WebKit ") if $onlyWebKitProject;231 @projects = ("Source/WebKitLegacy") if $onlyWebKitProject; 232 232 233 233 my $result = 0; -
trunk/Tools/Scripts/do-file-rename
r165676 r219483 46 46 find(\&wanted, "Source/JavaScriptCore"); 47 47 find(\&wanted, "Source/WebCore"); 48 find(\&wanted, " WebKit");48 find(\&wanted, "Source/WebKitLegacy"); 49 49 find(\&wanted, "Source/WebKit2"); 50 50 -
trunk/Tools/Scripts/do-webcore-rename
r206960 r219483 74 74 find(\&wanted, "Source/WTF"); 75 75 find(\&wanted, "Source/WebCore"); 76 find(\&wanted, "Source/WebKit ");76 find(\&wanted, "Source/WebKitLegacy"); 77 77 find(\&wanted, "Source/WebKit2"); 78 78 find(\&wanted, "Tools/DumpRenderTree"); -
trunk/Tools/Scripts/update-webkit-localizable-strings
r205089 r219483 36 36 37 37 # WebKit and WebKit2 strings go into WebCore's Localizable.strings. 38 my @webKitDirectoriesToScan = ("Source/WebCore", "Source/WebKit /mac", "Source/WebKit/win", "Source/WebKit2", "--skip", "Source/WebCore/icu", "--skip", "Source/WebKit/mac/icu");38 my @webKitDirectoriesToScan = ("Source/WebCore", "Source/WebKitLegacy/mac", "Source/WebKitLegacy/win", "Source/WebKit2", "--skip", "Source/WebCore/icu", "--skip", "Source/WebKitLegacy/mac/icu"); 39 39 my @webInspectorUIDirectoriesToScan = ("Source/WebInspectorUI/UserInterface"); 40 40 -
trunk/Tools/Scripts/webkitpy/common/checkout/checkout_unittest.py
r202362 r219483 216 216 """ 217 217 218 self.changelog_paths = map(self.filesystem.abspath, [self.filesystem.join("Source/WebKit ", "ChangeLog")])218 self.changelog_paths = map(self.filesystem.abspath, [self.filesystem.join("Source/WebKitLegacy", "ChangeLog")]) 219 219 220 220 self.mock_changelog([_changelog3]) … … 232 232 Reviewed by Darin Adler. 233 233 234 Source/WebKit :234 Source/WebKitLegacy: 235 235 236 236 * WebKit.xcodeproj/project.pbxproj: Remove references to unused … … 242 242 """ 243 243 244 self.changelog_paths = map(self.filesystem.abspath, (self.filesystem.join("Source/WebKit ", "ChangeLog"), self.filesystem.join("LayoutTests", "ChangeLog")))244 self.changelog_paths = map(self.filesystem.abspath, (self.filesystem.join("Source/WebKitLegacy", "ChangeLog"), self.filesystem.join("LayoutTests", "ChangeLog"))) 245 245 246 246 self.mock_changelog((_changelog3, _changelog4)) … … 258 258 Reviewed by Darin Adler. 259 259 260 Source/WebKit :260 Source/WebKitLegacy: 261 261 262 262 * WebKit.xcodeproj/project.pbxproj: Remove references to unused … … 270 270 """ 271 271 272 self.changelog_paths = map(self.filesystem.abspath, (self.filesystem.join("Source/WebKit ", "ChangeLog"), self.filesystem.join("LayoutTests", "ChangeLog")))272 self.changelog_paths = map(self.filesystem.abspath, (self.filesystem.join("Source/WebKitLegacy", "ChangeLog"), self.filesystem.join("LayoutTests", "ChangeLog"))) 273 273 274 274 self.mock_changelog((_changelog3, _changelog5)) -
trunk/Tools/Scripts/webkitpy/style/checkers/changelog_unittest.py
r207146 r219483 178 178 ' Example bug\n' 179 179 ' https://bugs.webkit.org/show_bug.cgi?id=12345\n' 180 ' * Source/WebKit /foo.cpp: \n'181 ' * Source/WebKit /bar.cpp:\n'182 ' * Source/WebKit /foobar.cpp: Description\n')180 ' * Source/WebKitLegacy/foo.cpp: \n' 181 ' * Source/WebKitLegacy/bar.cpp:\n' 182 ' * Source/WebKitLegacy/foobar.cpp: Description\n') 183 183 184 184 def test_unwanted_security_terms(self): … … 229 229 ' Several new tests added.\n' 230 230 '\n' 231 ' * Source/WebKit /foo.cpp: \n'232 ' * Source/WebKit /bar.cpp:\n'233 ' * Source/WebKit /foobar.cpp: Vulnerabilities fixed\n')231 ' * Source/WebKitLegacy/foo.cpp: \n' 232 ' * Source/WebKitLegacy/bar.cpp:\n' 233 ' * Source/WebKitLegacy/foobar.cpp: Vulnerabilities fixed\n') 234 234 self.assert_error(5, range(1, 20), 'changelog/unwantedsecurityterms', 235 235 '2016-11-11 Bogus Person <bperson@example.com>\n' … … 241 241 ' Several new tests added to check double free.\n' 242 242 '\n' 243 ' * Source/WebKit /foo.cpp: \n'244 ' * Source/WebKit /bar.cpp:\n'245 ' * Source/WebKit /foobar.cpp: memory CORRUPTION fixed\n')243 ' * Source/WebKitLegacy/foo.cpp: \n' 244 ' * Source/WebKitLegacy/bar.cpp:\n' 245 ' * Source/WebKitLegacy/foobar.cpp: memory CORRUPTION fixed\n') -
trunk/Tools/Scripts/webkitpy/style/checkers/featuredefines.py
r216030 r219483 33 33 "Source/WebCore/Configurations/FeatureDefines.xcconfig", 34 34 "Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig", 35 "Source/WebKit /mac/Configurations/FeatureDefines.xcconfig",35 "Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig", 36 36 "Source/WebKit2/Configurations/FeatureDefines.xcconfig", 37 37 "Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig", -
trunk/Tools/gtk/manifest.txt.in
r218184 r219483 53 53 exclude Source/WebCore/bindings/scripts/test 54 54 exclude Source/WebCore/Resources 55 exclude Source/WebKit /.*55 exclude Source/WebKitLegacy/.* 56 56 exclude Source/cmake/OptionsWinCairo.cmake$ 57 57 exclude Source/cmake/OptionsWindows.cmake$ -
trunk/WebKit.xcworkspace/contents.xcworkspacedata
r210973 r219483 24 24 </FileRef> 25 25 <FileRef 26 location = "group:Source/WebKit /WebKit.xcodeproj">26 location = "group:Source/WebKitLegacy/WebKit.xcodeproj"> 27 27 </FileRef> 28 28 <FileRef -
trunk/WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme
r213252 r219483 133 133 BuildableName = "WebKitLegacy.framework" 134 134 BlueprintName = "WebKitLegacy" 135 ReferencedContainer = "container:Source/WebKit /WebKit.xcodeproj">135 ReferencedContainer = "container:Source/WebKitLegacy/WebKit.xcodeproj"> 136 136 </BuildableReference> 137 137 </BuildActionEntry>
Note:
See TracChangeset
for help on using the changeset viewer.