Files
openlayers/build/ol.json
Tom Payne 71e42b2448 Refactor build system
This rather large commit refactors the build system to solve a number of
problems:
- Object literal types are now declared in just one place
- There are no more circular dependencies
- There is no need for concealed subclasses in build-standalone mode

When building in standalone mode, you need to include the source in
build/src/external.  This declares object literal types as externs so
that their properties are not renamed.

When building with the application, you need to include the source in
build/src/internal.  This declares object literal types as typedefs so
that their properties can be renamed and removed.

Note also that ol.MapOptions has been merged into ol.Map, with some
renaming.
2012-09-29 11:51:53 +02:00

45 lines
802 B
JSON

{
"id": "ol",
"css-allowed-unrecognized-properties": [
"user-select"
],
"css-inputs": [
"css/ol.css"
],
"css-output-file": "build/ol.css",
"externs": [
"build/src/external/externs/types.js",
"externs/bingmaps.js",
"externs/proj4js.js",
"externs/tilejson.js"
],
"inherits": "../base.json",
"inputs": [
"exports/ol/collection.js",
"exports/ol/coordinate.js",
"exports/ol/extent.js",
"exports/ol/layer/tilelayer.js",
"exports/ol/map.js",
"exports/ol/object.js",
"exports/ol/overlay/overlay.js",
"exports/ol/projection.js",
"exports/ol/source/mapquest.js",
"exports/ol/source/openstreetmap.js",
"exports/ol/source/stamen.js"
],
"output-wrapper": "(function(){%output%})();",
"paths": [
"src"
]
}