blob: 5a39f1411e8786b7bef266335b1e5306881ea0f7 [file] [log] [blame]
/*
* Copyright 2011 Research In Motion Limited.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
desc("runs jake build");
task('default', [], require('./build/build'));
desc("compiles source files for all extensions - jake build [web,npm,chromium]");
task('build', [], require('./build/build'));
desc("test and lint before building (with js compression)");
task('deploy', [], require('./build/deploy'));
// TODO: put this functionality into its own module (same with code in build/deploy).
desc("run all tests in node with an emulated dom - jake test [path,path2]");
task('test', [], function () {
var childProcess = require('child_process'),
env = process.env,
lib = process.cwd() + '/lib',
script = process.cwd() + '/build/scripts/runTestsInNode',
child;
env.NODE_PATH = lib;
child = childProcess.spawn(process.execPath, [script], {'env': env});
function log(data) {
process.stdout.write(new Buffer(data).toString('utf-8'));
}
child.stdout.on('data', log);
child.stderr.on('data', log);
child.on('exit', function (code) {
complete();
process.exit(code);
});
}, true);
desc("boot test server for running all tests in the browser");
task('btest', [], require('./build/btest'));
desc("runs jshint + csslint - jake lint [path1] [path2]");
task('lint', [], function () {
require('./build/lint')(complete, Array.prototype.slice.call(arguments));
}, true);
desc("show various codebase stats");
task('stats', [], require('./build/stats'));
desc("cleans any built extension directories");
task('clean', [], function () {
require('./build/build/clean')(null, {
take: function () {},
pass: complete
});
}, true);