summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorAvi Halachmi (:avih) <avihpit@yahoo.com>2014-12-13 18:27:47 +0200
committerwm4 <wm4@nowhere>2017-06-14 12:29:32 +0200
commitd223a63bc5de423bca7337795fe165678cf6d236 (patch)
treeea803184506cec7c5bc1aac8250ace9d93604907 /wscript_build.py
parent82aa1ea87f1c83e9c32f8aa1bc8ce6acb14fa4e6 (diff)
downloadmpv-d223a63bc5de423bca7337795fe165678cf6d236.tar.bz2
mpv-d223a63bc5de423bca7337795fe165678cf6d236.tar.xz
js: add javascript scripting support using MuJS
Implements JS with almost identical API to the Lua support. Key differences from Lua: - The global mp, mp.msg and mp.utils are always available. - Instead of returning x, error, return x and expose mp.last_error(). - Timers are JS standard set/clear Timeout/Interval. - Supports CommonJS modules/require. - Added at mp.utils: getenv, read_file, write_file and few more. - Global print and dump (expand objects) functions. - mp.options currently not supported. See DOCS/man/javascript.rst for more details.
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/wscript_build.py b/wscript_build.py
index ab50b107a6..41827906ef 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -92,6 +92,12 @@ def build(ctx):
target = os.path.splitext(fn)[0] + ".inc",
)
+ ctx(
+ features = "file2string",
+ source = "player/javascript/defaults.js",
+ target = "player/javascript/defaults.js.inc",
+ )
+
ctx(features = "ebml_header", target = "ebml_types.h")
ctx(features = "ebml_definitions", target = "ebml_defs.c")
@@ -237,6 +243,7 @@ def build(ctx):
( "player/misc.c" ),
( "player/lavfi.c" ),
( "player/lua.c", "lua" ),
+ ( "player/javascript.c", "javascript" ),
( "player/osd.c" ),
( "player/playloop.c" ),
( "player/screenshot.c" ),