Title: [224361] trunk
Revision
224361
Author
[email protected]
Date
2017-11-02 16:00:16 -0700 (Thu, 02 Nov 2017)

Log 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.

Modified Paths

Diff

Modified: trunk/ChangeLog (224360 => 224361)


--- trunk/ChangeLog	2017-11-02 22:38:35 UTC (rev 224360)
+++ trunk/ChangeLog	2017-11-02 23:00:16 UTC (rev 224361)
@@ -1,3 +1,14 @@
+2017-11-02  Tim Horton  <[email protected]>
+
+        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.
+
 2017-11-02  Alberto Garcia  <[email protected]>
 
         Unreviewed, fix typos in library names for the GTK+ port.

Modified: trunk/Source/Makefile (224360 => 224361)


--- trunk/Source/Makefile	2017-11-02 22:38:35 UTC (rev 224360)
+++ trunk/Source/Makefile	2017-11-02 23:00:16 UTC (rev 224361)
@@ -1,9 +1,12 @@
-MODULES = bmalloc WTF _javascript_Core ThirdParty/ANGLE ThirdParty/libwebrtc WebCore WebInspectorUI WebKitLegacy WebKit
+MODULES = bmalloc WTF _javascript_Core ThirdParty/ANGLE WebCore WebKitLegacy WebKit
 
 ifneq (,$(SDKROOT))
-	ifeq (,$(findstring macosx,$(SDKROOT)))
-		MODULES = bmalloc WTF _javascript_Core ThirdParty/ANGLE ThirdParty/libwebrtc WebCore WebKitLegacy WebKit
+	ifneq (,$(findstring macosx,$(SDKROOT)))
+		MODULES += WebInspectorUI ThirdParty/libwebrtc
 	endif
+	ifneq (,$(findstring iphone,$(SDKROOT)))
+		MODULES += ThirdParty/libwebrtc
+	endif
 endif
 
 all:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to