Changeset 224361 in webkit


Ignore:
Timestamp:
Nov 2, 2017 4:00:16 PM (6 years ago)
Author:
timothy_horton@apple.com
Message:

Reduce duplication in the toplevel Makefile
https://bugs.webkit.org/show_bug.cgi?id=179204

Reviewed by Simon Fraser.

  • Source/Makefile:

Make MODULES additive instead of completely repeated, and only build
libwebrtc where it's needed.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r224329 r224361  
     12017-11-02  Tim Horton  <timothy_horton@apple.com>
     2
     3        Reduce duplication in the toplevel Makefile
     4        https://bugs.webkit.org/show_bug.cgi?id=179204
     5
     6        Reviewed by Simon Fraser.
     7
     8        * Source/Makefile:
     9        Make MODULES additive instead of completely repeated, and only build
     10        libwebrtc where it's needed.
     11
    1122017-11-02  Alberto Garcia  <berto@igalia.com>
    213
  • trunk/Source/Makefile

    r219486 r224361  
    1 MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE ThirdParty/libwebrtc WebCore WebInspectorUI WebKitLegacy WebKit
     1MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE WebCore WebKitLegacy WebKit
    22
    33ifneq (,$(SDKROOT))
    4         ifeq (,$(findstring macosx,$(SDKROOT)))
    5                 MODULES = bmalloc WTF JavaScriptCore ThirdParty/ANGLE ThirdParty/libwebrtc WebCore WebKitLegacy WebKit
     4        ifneq (,$(findstring macosx,$(SDKROOT)))
     5                MODULES += WebInspectorUI ThirdParty/libwebrtc
     6        endif
     7        ifneq (,$(findstring iphone,$(SDKROOT)))
     8                MODULES += ThirdParty/libwebrtc
    69        endif
    710endif
Note: See TracChangeset for help on using the changeset viewer.