Title: [229428] trunk
Revision
229428
Author
[email protected]
Date
2018-03-08 13:19:36 -0800 (Thu, 08 Mar 2018)

Log Message

Add a way to not build libwebrtc when building WebKit via Makefiles
https://bugs.webkit.org/show_bug.cgi?id=183437
<rdar://problem/38254840>

Reviewed by Dan Bernstein.

* Source/Makefile:

Modified Paths

Diff

Modified: trunk/ChangeLog (229427 => 229428)


--- trunk/ChangeLog	2018-03-08 21:11:50 UTC (rev 229427)
+++ trunk/ChangeLog	2018-03-08 21:19:36 UTC (rev 229428)
@@ -1,3 +1,13 @@
+2018-03-08  Tim Horton  <[email protected]>
+
+        Add a way to not build libwebrtc when building WebKit via Makefiles
+        https://bugs.webkit.org/show_bug.cgi?id=183437
+        <rdar://problem/38254840>
+
+        Reviewed by Dan Bernstein.
+
+        * Source/Makefile:
+
 2018-03-05  Don Olmstead  <[email protected]>
 
         [CMake] Split JSC header copying into public and private targets

Modified: trunk/Source/Makefile (229427 => 229428)


--- trunk/Source/Makefile	2018-03-08 21:11:50 UTC (rev 229427)
+++ trunk/Source/Makefile	2018-03-08 21:19:36 UTC (rev 229428)
@@ -14,6 +14,10 @@
 	WEBINSPECTORUI_MODULE = WebInspectorUI
 endif
 
+ifneq (,$(DISABLE_LIBWEBRTC))
+	LIBWEBRTC_MODULE =
+endif
+
 MODULES = bmalloc WTF _javascript_Core ThirdParty/ANGLE $(LIBWEBRTC_MODULE) WebCore $(WEBINSPECTORUI_MODULE) WebKitLegacy WebKit
 
 all:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to