Changeset 271326 in webkit


Ignore:
Timestamp:
Jan 8, 2021, 2:47:14 PM (5 years ago)
Author:
commit-queue@webkit.org
Message:

Add support for source caching between platforms
https://bugs.webkit.org/show_bug.cgi?id=220439
rdar://72905725

Patch by Ryan Hostetler <rhost@apple.com> on 2021-01-08
Reviewed by Andy Estes.

.:

Include WebInspectorUI Source during any installsrc phase.

  • Source/Makefile:

Source/ThirdParty:

Include all libwebrtc target soruces in the installsrc phase.

Source/ThirdParty/libwebrtc:

Include libwebrtc Source during any installsrc phase.

  • Makefile:
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r271316 r271326  
     12021-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
    1132021-01-08  Fujii Hironori  <Hironori.Fujii@sony.com>
    214
  • trunk/Source/Makefile

    r271037 r271326  
    55ifneq (,$(SDKROOT))
    66        ifneq (,$(findstring macosx,$(call TO_LOWER,$(notdir $(SDKROOT)))))
     7                WEBINSPECTORUI_MODULE = WebInspectorUI
     8        endif
     9        ifeq ($(MAKECMDGOALS),installsrc)
    710                WEBINSPECTORUI_MODULE = WebInspectorUI
    811        endif
  • trunk/Source/ThirdParty/ChangeLog

    r271083 r271326  
     12021-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
    1112020-12-25  Yusuke Suzuki  <ysuzuki@apple.com>
    212
  • trunk/Source/ThirdParty/Makefile

    r271037 r271326  
    1515        endif
    1616        ifneq (,$(findstring watch,$(call TO_LOWER,$(notdir $(SDKROOT)))))
     17                LIBWEBRTC_MODULE = libwebrtc
     18        endif
     19        ifeq ($(MAKECMDGOALS),installsrc)
    1720                LIBWEBRTC_MODULE = libwebrtc
    1821        endif
  • trunk/Source/ThirdParty/libwebrtc/ChangeLog

    r271260 r271326  
     12021-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
    1132021-01-07  Ryan Hostetler  <rhost@apple.com>
    214
  • trunk/Source/ThirdParty/libwebrtc/Makefile

    r271260 r271326  
    55                XCODE_TARGET = -target boringssl
    66        endif
     7        ifeq ($(MAKECMDGOALS),installsrc)
     8                XCODE_TARGET =
     9        endif
    710endif
    811
Note: See TracChangeset for help on using the changeset viewer.