From 4131f41740008b363c0a03b6296ebec345330daa Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Mon, 13 Apr 2015 10:40:22 -0600 Subject: [PATCH] Remove unused EXAMPLES_COMBINED and build-examples target This was discussed as part of #1118 but never completed (see https://github.com/openlayers/ol3/pull/1118#discussion_r6894016). --- build.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/build.py b/build.py index 8e222fe635..64aebd1be1 100755 --- a/build.py +++ b/build.py @@ -128,9 +128,6 @@ EXAMPLES_DEST_ALL = [path.replace('examples_src', 'examples') EXAMPLES_JSON = ['build/' + example.replace('.html', '.json') for example in EXAMPLES_SRC_HTML] -EXAMPLES_COMBINED = ['build/' + example.replace('.html', '.combined.js') - for example in EXAMPLES_SRC_HTML] - GLSL_SRC = [path for path in ifind('src') if path.endswith('.glsl')] @@ -258,10 +255,6 @@ def build_test_rendering_requires(t): build_requires(t) -virtual('build-examples', 'examples', 'build/examples/all.combined.js', - EXAMPLES_COMBINED) - - virtual('examples', EXAMPLES_DEST_ALL)