diff --git a/src/awfy.js b/src/awfy.js index db777781..f09614c9 100644 --- a/src/awfy.js +++ b/src/awfy.js @@ -452,6 +452,27 @@ Object.entries(SITES).forEach(([siteKey, siteLabel]) => { }); }); +const MOZPERF_APPS = { + fenix: { + name: 'fenix', + label: 'Fenix', + color: PALETTE.orange, + project: PROJECT, + }, + geckoview: { + name: 'geckoview', + label: 'GeckoView', + color: PALETTE.indigo, + project: ALT_PROJECT, + }, + focus: { + name: 'focus', + label: 'Focus', + color: PALETTE.red, + project: PROJECT, + }, +}; + const MOZPERF_TESTS = { AndroidStartup: { label: 'Startup' }, }; @@ -459,7 +480,7 @@ const MOZPERF_TESTS = { Object.entries(MOZPERF_TESTS).forEach(([testKey, test]) => { const bmKey = `mozperftest-${testKey}`; BENCHMARKS[bmKey] = { compare: {}, label: test.label }; - Object.entries(MOBILE_APPS).forEach(([appKey, app]) => { + Object.entries(MOZPERF_APPS).forEach(([appKey, app]) => { BENCHMARKS[bmKey].compare[appKey] = { color: app.color, label: app.label,