From 3c92b693c5e0b8fd14aff66f479b4e9d32a008ec Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Tue, 8 Apr 2014 20:11:49 -0600 Subject: [PATCH] Adding comment about using externs/olx.js as a source file The externs/olx.js script includes @typedef annotations for objects that are used in the library. When compiling the examples together with the library, we need these @typedef annotations. In this same case, we don't need the object property names to be treated as externs (they can be safely renamed). --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 475ff6bf2f..905227d772 100755 --- a/build.py +++ b/build.py @@ -298,7 +298,7 @@ def examples_star_json(name, match): 'inherits': '../../buildcfg/base.json', 'inputs': [ '../examples/%(id)s.js' % match.groupdict(), - '../externs/olx.js', + '../externs/olx.js', # compiled with src for @typedef's ], 'externs': [ '//jquery-1.7.js',