Skip to content

Commit a216a29

Browse files
committed
Make it possible to disable building the tools with Make
https://bugs.webkit.org/show_bug.cgi?id=184109 Reviewed by Simon Fraser. * Makefile: Canonical link: https://commits.webkit.org/199679@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@230048 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 4ab3cf6 commit a216a29

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2018-03-28 Tim Horton <timothy_horton@apple.com>
2+
3+
Make it possible to disable building the tools with Make
4+
https://bugs.webkit.org/show_bug.cgi?id=184109
5+
6+
Reviewed by Simon Fraser.
7+
8+
* Makefile:
9+
110
2018-03-25 Carlos Garcia Campos <cgarcia@igalia.com>
211

312
[GTK][WPE] Add API to convert between DOM and JSCValue

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
MODULES = WebKitLibraries Source Tools
1+
TOOLS_MODULE = Tools
2+
3+
ifneq (,$(DISABLE_WEBKIT_TOOLS))
4+
TOOLS_MODULE =
5+
endif
6+
7+
MODULES = WebKitLibraries Source $(TOOLS_MODULE)
28

39
all:
410
@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \

0 commit comments

Comments
 (0)