Changeset 271326 in webkit
- Timestamp:
- Jan 8, 2021, 2:47:14 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r271316 r271326 1 2021-01-08 Ryan Hostetler <rhost@apple.com> 2 3 Add support for source caching between platforms 4 https://bugs.webkit.org/show_bug.cgi?id=220439 5 rdar://72905725 6 7 Reviewed by Andy Estes. 8 9 Include WebInspectorUI Source during any installsrc phase. 10 11 * Source/Makefile: 12 1 13 2021-01-08 Fujii Hironori <Hironori.Fujii@sony.com> 2 14 -
trunk/Source/Makefile
r271037 r271326 5 5 ifneq (,$(SDKROOT)) 6 6 ifneq (,$(findstring macosx,$(call TO_LOWER,$(notdir $(SDKROOT))))) 7 WEBINSPECTORUI_MODULE = WebInspectorUI 8 endif 9 ifeq ($(MAKECMDGOALS),installsrc) 7 10 WEBINSPECTORUI_MODULE = WebInspectorUI 8 11 endif -
trunk/Source/ThirdParty/ChangeLog
r271083 r271326 1 2021-01-08 Ryan Hostetler <rhost@apple.com> 2 3 Add support for source caching between platforms 4 https://bugs.webkit.org/show_bug.cgi?id=220439 5 rdar://72905725 6 7 Reviewed by Andy Estes. 8 9 Include all libwebrtc target soruces in the installsrc phase. 10 1 11 2020-12-25 Yusuke Suzuki <ysuzuki@apple.com> 2 12 -
trunk/Source/ThirdParty/Makefile
r271037 r271326 15 15 endif 16 16 ifneq (,$(findstring watch,$(call TO_LOWER,$(notdir $(SDKROOT))))) 17 LIBWEBRTC_MODULE = libwebrtc 18 endif 19 ifeq ($(MAKECMDGOALS),installsrc) 17 20 LIBWEBRTC_MODULE = libwebrtc 18 21 endif -
trunk/Source/ThirdParty/libwebrtc/ChangeLog
r271260 r271326 1 2021-01-08 Ryan Hostetler <rhost@apple.com> 2 3 Add support for source caching between platforms 4 https://bugs.webkit.org/show_bug.cgi?id=220439 5 rdar://72905725 6 7 Reviewed by Andy Estes. 8 9 Include libwebrtc Source during any installsrc phase. 10 11 * Makefile: 12 1 13 2021-01-07 Ryan Hostetler <rhost@apple.com> 2 14 -
trunk/Source/ThirdParty/libwebrtc/Makefile
r271260 r271326 5 5 XCODE_TARGET = -target boringssl 6 6 endif 7 ifeq ($(MAKECMDGOALS),installsrc) 8 XCODE_TARGET = 9 endif 7 10 endif 8 11
Note:
See TracChangeset
for help on using the changeset viewer.