Changeset 219492 in webkit
- Timestamp:
- Jul 13, 2017, 7:56:11 PM (8 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r219489 r219492 1 2017-07-13 Matthew Hanson <matthew_hanson@apple.com> 2 3 Use the old WebKit/WebKit2 targets for CMake builds. 4 5 Unreviewed build fix. 6 7 We can update the target names to match the Framework names in a future patch. 8 This is a partial revert of r219489. 9 10 * TestWebKitAPI/CMakeLists.txt: 11 WebKitLegacy => WebKit 12 WebKit => WebKit2 13 1 14 2017-07-13 Matthew Hanson <matthew_hanson@apple.com> 2 15 -
trunk/Tools/TestWebKitAPI/CMakeLists.txt
r219489 r219492 20 20 TestWebKitAPIBase 21 21 WTF 22 WebKit2 23 gtest 24 ) 25 list(APPEND TestWebKitAPI_LIBRARIES 22 26 WebKit 23 gtest24 )25 list(APPEND TestWebKitAPI_LIBRARIES26 WebKitLegacy27 27 ) 28 28 else () 29 29 list(APPEND TestWebKitAPI_LIBRARIES 30 WebKit Legacy${DEBUG_SUFFIX}30 WebKit${DEBUG_SUFFIX} 31 31 ) 32 32 endif () … … 206 206 ) 207 207 208 target_link_libraries(TestWebKitAPIBase JavaScriptCore WTF WebKit gtest)209 210 add_dependencies(TestWebKitAPIBase WebKit ${ForwardingHeadersForTestWebKitAPI_NAME} ${ForwardingNetworkHeadersForTestWebKitAPI_NAME})208 target_link_libraries(TestWebKitAPIBase JavaScriptCore WTF WebKit2 gtest) 209 210 add_dependencies(TestWebKitAPIBase WebKit2 ${ForwardingHeadersForTestWebKitAPI_NAME} ${ForwardingNetworkHeadersForTestWebKitAPI_NAME}) 211 211 212 212 foreach (testName ${test_webkit2_api_BINARIES})
Note:
See TracChangeset
for help on using the changeset viewer.