Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/build/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/utils.js')
-rw-r--r--build/utils.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/build/utils.js b/build/utils.js
index 5b7a58b..eef810e 100644
--- a/build/utils.js
+++ b/build/utils.js
@@ -168,22 +168,10 @@ function makeWebappsObject(dirs) {
};
}
-let externalAppsDirs = ['external-apps'];
-
-// External apps are built differently from other apps by webapp-manifests.js,
-// and we need apps that are both external and dogfood to be treated like
-// external apps (to properly test external apps on dogfood devices), so we
-// segregate them into their own directory that we add to the list of external
-// apps dirs here when building a dogfood profile.
-if (DOGFOOD === '1') {
- externalAppsDirs.push('external-dogfood-apps');
-}
-
const Gaia = {
engine: GAIA_ENGINE,
sharedFolder: getFile(GAIA_DIR, 'shared'),
webapps: makeWebappsObject(GAIA_APP_SRCDIRS),
- externalWebapps: makeWebappsObject(externalAppsDirs.join(' ')),
aggregatePrefix: 'gaia_build_'
};