all files / sync/ index.js

100% Statements 8/8
100% Branches 0/0
100% Functions 0/0
100% Lines 8/8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40                                                               
/*
 * GPII Linux Personalization Framework Node.js Index
 *
 * Copyright 2012 OCAD University
 * Copyright 2014 Lucendo Development Ltd.
 *
 * Licensed under the New BSD license. You may not use this file except in
 * compliance with this License.
 *
 * You may obtain a copy of the License at
 * https://github.com/GPII/linux/blob/master/LICENSE.txt
 *
 * The research leading to these results has received funding from the European Union's
 * Seventh Framework Programme (FP7/2007-2013)
 * under grant agreement no. 289016.
 */
 
"use strict";
 
var fluid = require("universal");
 
fluid.module.register("gpii-linux", __dirname, require);
 
fluid.contextAware.makeChecks({
    "gpii.contexts.linux": {
        value: true
    }
});
 
// Settings Handlers
 
require("./gpii/node_modules/gsettingsBridge");
require("./gpii/node_modules/orca");
require("./gpii/node_modules/alsa");
require("./gpii/node_modules/xrandr");
 
// Device Reporters
 
require("./gpii/node_modules/packagekit");