Title: [164444] trunk/Source/_javascript_Core
- Revision
- 164444
- Author
- [email protected]
- Date
- 2014-02-20 13:29:37 -0800 (Thu, 20 Feb 2014)
Log Message
[Automake] Collect the _javascript_ files required for JSC builtins through a wildcard
https://bugs.webkit.org/show_bug.cgi?id=129115
Reviewed by Oliver Hunt.
* GNUmakefile.list.am: Simplify adding new _javascript_Core builtins by using a wildcard
to gather all the _javascript_ files instead of listing each file explicitly.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (164443 => 164444)
--- trunk/Source/_javascript_Core/ChangeLog 2014-02-20 20:57:20 UTC (rev 164443)
+++ trunk/Source/_javascript_Core/ChangeLog 2014-02-20 21:29:37 UTC (rev 164444)
@@ -1,3 +1,13 @@
+2014-02-20 Zan Dobersek <[email protected]>
+
+ [Automake] Collect the _javascript_ files required for JSC builtins through a wildcard
+ https://bugs.webkit.org/show_bug.cgi?id=129115
+
+ Reviewed by Oliver Hunt.
+
+ * GNUmakefile.list.am: Simplify adding new _javascript_Core builtins by using a wildcard
+ to gather all the _javascript_ files instead of listing each file explicitly.
+
2014-02-20 Mark Hahnenberg <[email protected]>
Replace uses of deprecated POSIX index() with strchr() in ObjcRuntimeExtras.h
Modified: trunk/Source/_javascript_Core/GNUmakefile.list.am (164443 => 164444)
--- trunk/Source/_javascript_Core/GNUmakefile.list.am 2014-02-20 20:57:20 UTC (rev 164443)
+++ trunk/Source/_javascript_Core/GNUmakefile.list.am 2014-02-20 21:29:37 UTC (rev 164444)
@@ -38,8 +38,7 @@
DerivedSources/_javascript_Core/LLIntAssembly.h
_javascript_core_builtins_js_nosources += \
- Source/_javascript_Core/builtins/Array.prototype.js \
- Source/_javascript_Core/builtins/Promise.prototype.js
+ $(wildcard $(srcdir)/Source/_javascript_Core/builtins/*.js)
_javascript_core_sources += \
Source/_javascript_Core/API/APICallbackFunction.h \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes