blob: 161899931210bd575483c811af53c52ab0f83aaa [file] [log] [blame]
<html>
<head>
<title>task-scheduler-status-sk demo</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<link rel="icon" href="/res/img/fav.ico" sizes="16x16 32x32 64x64" type="image/vnd.microsoft.icon">
<script src="/res/common/js/common.js"></script>
<script src="/res/imp/bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="task-scheduler-status-sk.html">
<link rel="import" href="/res/common/imp/error-toast-sk.html">
</head>
<body>
<dom-module id="task-scheduler-status-sk-demo">
<template>
<task-scheduler-status-sk
last_scheduled="[[status.last_scheduled]]"
top_candidates="[[status.top_candidates]]"
></task-scheduler-status-sk>
</template>
<script>
Polymer({
is: 'task-scheduler-status-sk-demo',
properties: {
status: {
type: Object,
value: function() {
return {
"last_scheduled":"2016-06-27T12:41:00.469925953-04:00",
"top_candidates":[{
"commit":"2c80711f90a5dafe3b726bc6562b1e769702c34b",
"taskSpec":"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs",
"score":16.637823784142427,
"repo":"https://skia.googlesource.com/skia.git"
},
{
"commit":"2c80711f90a5dafe3b726bc6562b1e769702c34b",
"taskSpec":"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs",
"score":16.637823784142427,
"repo":"https://skia.googlesource.com/skia.git"
},
{
"commit":"2c80711f90a5dafe3b726bc6562b1e769702c34b",
"taskSpec":"Perf-Android-GCC-GalaxyS3-GPU-Mali400-Arm7-Release",
"score":7.793359281313286,
"repo":"https://skia.googlesource.com/skia.git"
},
{
"commit":"2c80711f90a5dafe3b726bc6562b1e769702c34b",
"taskSpec":"Test-Android-GCC-Nexus9-CPU-Denver-Arm64-Release",
"score":7.793359281313286,
"repo":"https://skia.googlesource.com/skia.git"
},
{
"commit":"2c80711f90a5dafe3b726bc6562b1e769702c34b",
"taskSpec":"Test-Android-GCC-Nexus5-CPU-NEON-Arm7-Release",
"score":7.793359281313286,
"repo":"https://skia.googlesource.com/skia.git"
},
{
"commit":"2c80711f90a5dafe3b726bc6562b1e769702c34b",
"taskSpec":"Perf-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Release",
"score":7.793359281313286,
"repo":"https://skia.googlesource.com/skia.git"
},
{
"commit":"2c80711f90a5dafe3b726bc6562b1e769702c34b",
"taskSpec":"Test-Android-GCC-Nexus5-GPU-Adreno330-Arm7-Debug",
"score":7.793359281313286,
"repo":"https://skia.googlesource.com/skia.git"
},
{
"commit":"2c80711f90a5dafe3b726bc6562b1e769702c34b",
"taskSpec":"Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Release",
"score":7.793359281313286,
"repo":"https://skia.googlesource.com/skia.git"
},
{
"commit":"2c80711f90a5dafe3b726bc6562b1e769702c34b",
"taskSpec":"Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind",
"score":7.793359281313286,
"repo":"https://skia.googlesource.com/skia.git"
},
{
"commit":"2c80711f90a5dafe3b726bc6562b1e769702c34b",
"taskSpec":"Test-Android-GCC-Nexus9-GPU-TegraK1-Arm64-Debug",
"score":7.793359281313286,
"repo":"https://skia.googlesource.com/skia.git"
}]
};
},
},
},
});
</script>
</dom-module>
<h1>task-scheduler-status-sk demo</h1>
<task-scheduler-status-sk-demo></task-scheduler-status-sk-demo>
<error-toast-sk></error-toast-sk>
</body>
</html>