diff options
author | Eric Boren <borenet@google.com> | 2017-04-07 08:31:22 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-04-07 13:26:10 +0000 |
commit | 23a6ec6eb374eefe7aa3ffb6dbbb1c4b704fc187 (patch) | |
tree | 51ef141aebc00b217ebb94b67f0056e7ba903203 /infra | |
parent | 5f055f0fe9a3391b5481d09cbba21b7eeee06103 (diff) |
Reland: Use bundled recipes for all test/perf tasks
It won't save as much time for faster machines, but it should still
shave a few seconds, and it'll be nice to be consistent.
Bug: skia:
Change-Id: I0b2aa010579b527c66325cb5b691bfb549b31316
Reviewed-on: https://skia-review.googlesource.com/11418
Reviewed-by: Kevin Lubick <kjlubick@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra')
38 files changed, 660 insertions, 436 deletions
diff --git a/infra/bots/gen_tasks.go b/infra/bots/gen_tasks.go index 0301034cbd..0859b023ff 100644 --- a/infra/bots/gen_tasks.go +++ b/infra/bots/gen_tasks.go @@ -244,6 +244,13 @@ func bundleRecipes(b *specs.TasksCfgBuilder) string { return BUNDLE_RECIPES_NAME } +// useBundledRecipes returns true iff the given bot should use bundled recipes +// instead of syncing recipe DEPS itself. +func useBundledRecipes(parts map[string]string) bool { + // Use bundled recipes for all test/perf tasks. + return true +} + // compile generates a compile task. Returns the name of the last task in the // generated chain of tasks, which the Job should add as a dependency. func compile(b *specs.TasksCfgBuilder, name string, parts map[string]string) string { @@ -477,9 +484,13 @@ func test(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil MaxAttempts: 1, Priority: 0.8, } - if parts["os"] == "Android" { + if useBundledRecipes(parts) { s.Dependencies = append(s.Dependencies, BUNDLE_RECIPES_NAME) - s.Isolate = "test_skia_bundled.isolate" + if strings.Contains(parts["os"], "Win") { + s.Isolate = "test_skia_bundled_win.isolate" + } else { + s.Isolate = "test_skia_bundled_unix.isolate" + } } if strings.Contains(parts["extra_config"], "Valgrind") { s.ExecutionTimeout = 9 * time.Hour @@ -527,11 +538,19 @@ func perf(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil if strings.Contains(parts["extra_config"], "Skpbench") { recipe = "swarm_skpbench" isolate = "skpbench_skia.isolate" - if parts["os"] == "Android" { - isolate = "skpbench_skia_bundled.isolate" + if useBundledRecipes(parts) { + if strings.Contains(parts["os"], "Win") { + isolate = "skpbench_skia_bundled_win.isolate" + } else { + isolate = "skpbench_skia_bundled_unix.isolate" + } + } + } else if useBundledRecipes(parts) { + if strings.Contains(parts["os"], "Win") { + isolate = "perf_skia_bundled_win.isolate" + } else { + isolate = "perf_skia_bundled_unix.isolate" } - } else if parts["os"] == "Android" { - isolate = "perf_skia_bundled.isolate" } s := &specs.TaskSpec{ CipdPackages: pkgs, @@ -558,7 +577,7 @@ func perf(b *specs.TasksCfgBuilder, name string, parts map[string]string, compil MaxAttempts: 1, Priority: 0.8, } - if parts["os"] == "Android" { + if useBundledRecipes(parts) { s.Dependencies = append(s.Dependencies, BUNDLE_RECIPES_NAME) } if strings.Contains(parts["extra_config"], "Valgrind") { diff --git a/infra/bots/perf_skia_bundled.isolate b/infra/bots/perf_skia_bundled.isolate index cd478385df..d75a572389 100644 --- a/infra/bots/perf_skia_bundled.isolate +++ b/infra/bots/perf_skia_bundled.isolate @@ -4,7 +4,6 @@ 'assets.isolate', 'ios_bin.isolate', 'resources.isolate', - 'swarm_recipe_bundled.isolate', ], 'variables': { 'files': [ diff --git a/infra/bots/perf_skia_bundled_unix.isolate b/infra/bots/perf_skia_bundled_unix.isolate new file mode 100644 index 0000000000..5bb5ae153c --- /dev/null +++ b/infra/bots/perf_skia_bundled_unix.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'perf_skia_bundled.isolate', + 'swarm_recipe_bundled_unix.isolate', + ], +} diff --git a/infra/bots/perf_skia_bundled_win.isolate b/infra/bots/perf_skia_bundled_win.isolate new file mode 100644 index 0000000000..8f425937af --- /dev/null +++ b/infra/bots/perf_skia_bundled_win.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'perf_skia_bundled.isolate', + 'swarm_recipe_bundled_win.isolate', + ], +} diff --git a/infra/bots/recipe_modules/flavor/api.py b/infra/bots/recipe_modules/flavor/api.py index 5820e0b27b..9d64a329f5 100644 --- a/infra/bots/recipe_modules/flavor/api.py +++ b/infra/bots/recipe_modules/flavor/api.py @@ -58,21 +58,21 @@ class SkiaFlavorApi(recipe_api.RecipeApi): def get_flavor(self, builder_cfg): """Return a flavor utils object specific to the given builder.""" if is_flutter(builder_cfg): - return flutter_flavor.FlutterFlavorUtils(self.m) + return flutter_flavor.FlutterFlavorUtils(self) if is_chromecast(builder_cfg): - return gn_chromecast_flavor.GNChromecastFlavorUtils(self.m) + return gn_chromecast_flavor.GNChromecastFlavorUtils(self) if is_chromebook(builder_cfg): - return gn_chromebook_flavor.GNChromebookFlavorUtils(self.m) + return gn_chromebook_flavor.GNChromebookFlavorUtils(self) if is_android(builder_cfg): - return gn_android_flavor.GNAndroidFlavorUtils(self.m) + return gn_android_flavor.GNAndroidFlavorUtils(self) elif is_ios(builder_cfg): - return ios_flavor.iOSFlavorUtils(self.m) + return ios_flavor.iOSFlavorUtils(self) elif is_pdfium(builder_cfg): - return pdfium_flavor.PDFiumFlavorUtils(self.m) + return pdfium_flavor.PDFiumFlavorUtils(self) elif is_valgrind(builder_cfg): - return valgrind_flavor.ValgrindFlavorUtils(self.m) + return valgrind_flavor.ValgrindFlavorUtils(self) else: - return gn_flavor.GNFlavorUtils(self.m) + return gn_flavor.GNFlavorUtils(self) def setup(self): self._f = self.get_flavor(self.m.vars.builder_cfg) diff --git a/infra/bots/recipe_modules/flavor/default_flavor.py b/infra/bots/recipe_modules/flavor/default_flavor.py index dacb0fd056..b808da066b 100644 --- a/infra/bots/recipe_modules/flavor/default_flavor.py +++ b/infra/bots/recipe_modules/flavor/default_flavor.py @@ -75,8 +75,15 @@ class DefaultFlavorUtils(object): copying files between the host and Android device, as well as the 'step' function, so that commands may be run through ADB. """ - def __init__(self, m): - self.m = m + def __init__(self, module): + # Store a pointer to the parent recipe module (SkiaFlavorApi) so that + # FlavorUtils objects can do recipe module-like things, like run steps or + # access module-level resources. + self.module = module + + # self.m is just a shortcut so that FlavorUtils objects can use the same + # syntax as regular recipe modules to run steps, eg: self.m.step(...) + self.m = module.m self._chrome_path = None self._win_toolchain_dir = self.m.vars.slave_dir.join(WIN_TOOLCHAIN_DIR) win_toolchain_asset_path = self.m.vars.infrabots_dir.join( diff --git a/infra/bots/recipe_modules/flavor/gn_flavor.py b/infra/bots/recipe_modules/flavor/gn_flavor.py index 4ee2f8efc1..bf23375642 100644 --- a/infra/bots/recipe_modules/flavor/gn_flavor.py +++ b/infra/bots/recipe_modules/flavor/gn_flavor.py @@ -170,8 +170,7 @@ class GNFlavorUtils(default_flavor.DefaultFlavorUtils): args = [self.m.vars.slave_dir] + [str(x) for x in cmd] with self.m.step.context({'cwd': self.m.vars.skia_dir, 'env': env}): self._py('symbolized %s' % name, - self.m.vars.infrabots_dir.join('recipe_modules', 'core', - 'resources', 'symbolize_stack_trace.py'), + self.module.resource('symbolize_stack_trace.py'), args=args, infra_step=False) diff --git a/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py b/infra/bots/recipe_modules/flavor/resources/symbolize_stack_trace.py index 59e1e39e08..59e1e39e08 100755 --- a/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py +++ b/infra/bots/recipe_modules/flavor/resources/symbolize_stack_trace.py diff --git a/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release-GN.json b/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release-GN.json index 86d489888c..f8e8d8770e 100644 --- a/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release-GN.json +++ b/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release-GN.json @@ -106,7 +106,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Release/nanobench", diff --git a/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-ANGLE.json b/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-ANGLE.json index 04dade4adf..3e8f9ade2f 100644 --- a/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-ANGLE.json +++ b/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-ANGLE.json @@ -106,7 +106,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Release/nanobench", diff --git a/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Debug-Vulkan.json b/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Debug-Vulkan.json index b939b629ef..938c9693d8 100644 --- a/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Debug-Vulkan.json +++ b/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Debug-Vulkan.json @@ -69,7 +69,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "[START_DIR]/out/Debug/nanobench", "--undefok", diff --git a/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Release.json b/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Release.json index a319907154..11020f7b74 100644 --- a/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Release.json +++ b/infra/bots/recipe_modules/perf/example.expected/Perf-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Release.json @@ -106,7 +106,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "[START_DIR]/out/Release/nanobench", "--undefok", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug.json index 26c7b2c019..3fc53d9b13 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Debug/dm", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-ASAN.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-ASAN.json index 7f8ab953ff..51393cc462 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-ASAN.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-ASAN.json @@ -69,7 +69,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "[START_DIR]/out/Debug/dm", "--undefok", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN.json index f7532e0722..7325204bcf 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN.json @@ -69,7 +69,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "[START_DIR]/out/Debug/dm", "--undefok", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json index b56a5627b4..20d0961610 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Debug/dm", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug.json index 62bbb7b817..b0144aada3 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Debug/dm", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared.json index 34184d2636..0b978141b4 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Release/dm", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN.json index e670711cab..e2b1084427 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN.json @@ -69,7 +69,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "[START_DIR]/out/Release/dm", "--undefok", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Debug-Vulkan.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Debug-Vulkan.json index bef690547b..fa8a549719 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Debug-Vulkan.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Debug-Vulkan.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "[START_DIR]/out/Debug/dm", "--undefok", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Release.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Release.json index 3b81c5a7d8..21e41d01af 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Release.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC-GPU-IntelIris540-x86_64-Release.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "[START_DIR]/out/Release/dm", "--undefok", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug.json index f26b969f2a..2bb6a99f79 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "[START_DIR]/out/Debug/dm", "--undefok", diff --git a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug.json b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug.json index 70948040ec..5cbfed2dcc 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug.json +++ b/infra/bots/recipe_modules/sktest/example.expected/Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "[START_DIR]/out/Debug/dm", "--undefok", diff --git a/infra/bots/recipe_modules/sktest/example.expected/failed_dm.json b/infra/bots/recipe_modules/sktest/example.expected/failed_dm.json index bc8913855a..4ba8736e5b 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/failed_dm.json +++ b/infra/bots/recipe_modules/sktest/example.expected/failed_dm.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Debug/dm", diff --git a/infra/bots/recipe_modules/sktest/example.expected/nobuildbot.json b/infra/bots/recipe_modules/sktest/example.expected/nobuildbot.json index 55ee548603..7ed2d78189 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/nobuildbot.json +++ b/infra/bots/recipe_modules/sktest/example.expected/nobuildbot.json @@ -206,7 +206,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Debug/dm", diff --git a/infra/bots/recipe_modules/sktest/example.expected/recipe_with_gerrit_patch.json b/infra/bots/recipe_modules/sktest/example.expected/recipe_with_gerrit_patch.json index 003d3058c7..fe84d7de41 100644 --- a/infra/bots/recipe_modules/sktest/example.expected/recipe_with_gerrit_patch.json +++ b/infra/bots/recipe_modules/sktest/example.expected/recipe_with_gerrit_patch.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Debug/dm", diff --git a/infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json b/infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json index 4ecab712b7..fa4b6d7038 100644 --- a/infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json +++ b/infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json @@ -121,4 +121,4 @@ "recipe_result": null, "status_code": 0 } -]
\ No newline at end of file +] diff --git a/infra/bots/recipes/swarm_perf.expected/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release.json b/infra/bots/recipes/swarm_perf.expected/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release.json index ad50d170a0..b46c4363a4 100644 --- a/infra/bots/recipes/swarm_perf.expected/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release.json +++ b/infra/bots/recipes/swarm_perf.expected/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release.json @@ -106,7 +106,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Release/nanobench", diff --git a/infra/bots/recipes/swarm_test.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug.json b/infra/bots/recipes/swarm_test.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug.json index 5c003f9a9c..898d178361 100644 --- a/infra/bots/recipes/swarm_test.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug.json +++ b/infra/bots/recipes/swarm_test.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86-Debug.json @@ -178,7 +178,7 @@ "cmd": [ "python", "-u", - "[START_DIR]/skia/infra/bots/recipe_modules/core/resources/symbolize_stack_trace.py", + "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", "[START_DIR]", "catchsegv", "[START_DIR]/out/Debug/dm", diff --git a/infra/bots/skpbench_skia_bundled.isolate b/infra/bots/skpbench_skia_bundled.isolate index 573e784953..38af44a84d 100644 --- a/infra/bots/skpbench_skia_bundled.isolate +++ b/infra/bots/skpbench_skia_bundled.isolate @@ -1,7 +1,6 @@ { 'includes': [ 'assets.isolate', - 'swarm_recipe_bundled.isolate', ], 'variables': { 'files': [ diff --git a/infra/bots/skpbench_skia_bundled_unix.isolate b/infra/bots/skpbench_skia_bundled_unix.isolate new file mode 100644 index 0000000000..c396b305cb --- /dev/null +++ b/infra/bots/skpbench_skia_bundled_unix.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'skpbench_skia_bundled.isolate', + 'swarm_recipe_bundled_unix.isolate', + ], +} diff --git a/infra/bots/skpbench_skia_bundled_win.isolate b/infra/bots/skpbench_skia_bundled_win.isolate new file mode 100644 index 0000000000..befba1b61a --- /dev/null +++ b/infra/bots/skpbench_skia_bundled_win.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'skpbench_skia_bundled.isolate', + 'swarm_recipe_bundled_win.isolate', + ], +} diff --git a/infra/bots/swarm_recipe_bundled.isolate b/infra/bots/swarm_recipe_bundled_unix.isolate index 731b369d87..731b369d87 100644 --- a/infra/bots/swarm_recipe_bundled.isolate +++ b/infra/bots/swarm_recipe_bundled_unix.isolate diff --git a/infra/bots/swarm_recipe_bundled_win.isolate b/infra/bots/swarm_recipe_bundled_win.isolate new file mode 100644 index 0000000000..19932fe2a0 --- /dev/null +++ b/infra/bots/swarm_recipe_bundled_win.isolate @@ -0,0 +1,7 @@ +{ + 'variables': { + 'command': [ + '../../../recipe_bundle/recipes.bat', 'run', '--timestamps', + ], + }, +} diff --git a/infra/bots/tasks.json b/infra/bots/tasks.json index cc6f58534a..ec7acea48c 100644 --- a/infra/bots/tasks.json +++ b/infra/bots/tasks.json @@ -4289,7 +4289,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4340,7 +4340,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4391,7 +4391,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4442,7 +4442,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4493,7 +4493,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4544,7 +4544,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4595,7 +4595,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4646,7 +4646,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4697,7 +4697,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4748,7 +4748,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4799,7 +4799,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4850,7 +4850,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4901,7 +4901,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -4952,7 +4952,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5003,7 +5003,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5054,7 +5054,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5105,7 +5105,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5156,7 +5156,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5207,7 +5207,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5258,7 +5258,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5309,7 +5309,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5360,7 +5360,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5411,7 +5411,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5462,7 +5462,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5513,7 +5513,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5564,7 +5564,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5615,7 +5615,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5666,7 +5666,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5717,7 +5717,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5768,7 +5768,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5819,7 +5819,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5870,7 +5870,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5921,7 +5921,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -5972,7 +5972,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6023,7 +6023,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia_bundled.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6064,7 +6064,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "skpbench_skia_bundled.isolate", + "isolate": "skpbench_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6105,7 +6105,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "skpbench_skia_bundled.isolate", + "isolate": "skpbench_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6118,7 +6118,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-arm-Debug-Chromecast" + "Build-Ubuntu-GCC-arm-Debug-Chromecast", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "device_os:1.24_82923", @@ -6145,7 +6146,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6158,7 +6159,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-arm-Release-Chromecast" + "Build-Ubuntu-GCC-arm-Release-Chromecast", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "device_os:1.24_82923", @@ -6185,7 +6187,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6208,7 +6210,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Debug" + "Build-Mac-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:08a4", @@ -6234,7 +6237,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6257,7 +6260,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Release" + "Build-Mac-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:08a4", @@ -6283,7 +6287,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6306,7 +6310,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Debug" + "Build-Mac-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -6333,7 +6338,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6356,7 +6361,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Release" + "Build-Mac-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -6383,7 +6389,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6406,7 +6412,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Debug" + "Build-Mac-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0a2e", @@ -6432,7 +6439,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6455,7 +6462,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Release" + "Build-Mac-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0a2e", @@ -6481,7 +6489,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6504,7 +6512,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Release-CommandBuffer" + "Build-Mac-Clang-x86_64-Release-CommandBuffer", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0a2e", @@ -6530,7 +6539,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6553,7 +6562,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug" + "Build-Ubuntu-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -6580,7 +6590,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6608,7 +6618,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug-ASAN" + "Build-Ubuntu-Clang-x86_64-Debug-ASAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -6635,7 +6646,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6663,7 +6674,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug-MSAN" + "Build-Ubuntu-Clang-x86_64-Debug-MSAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -6690,7 +6702,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6713,7 +6725,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release" + "Build-Ubuntu-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -6740,7 +6753,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6768,7 +6781,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release-ASAN" + "Build-Ubuntu-Clang-x86_64-Release-ASAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -6795,7 +6809,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6818,7 +6832,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release-Fast" + "Build-Ubuntu-Clang-x86_64-Release-Fast", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -6845,7 +6860,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6873,7 +6888,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug-ASAN" + "Build-Ubuntu-Clang-x86_64-Debug-ASAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:104a", @@ -6899,7 +6915,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6927,7 +6943,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release-ASAN" + "Build-Ubuntu-Clang-x86_64-Release-ASAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:104a", @@ -6953,7 +6970,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -6976,7 +6993,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86-Debug" + "Build-Ubuntu-GCC-x86-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -7003,7 +7021,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7026,7 +7044,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Debug" + "Build-Ubuntu-GCC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -7053,7 +7072,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7076,7 +7095,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" + "Build-Ubuntu-GCC-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -7103,7 +7123,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7126,7 +7146,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -7153,7 +7174,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7226,7 +7247,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1244", @@ -7252,7 +7274,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 3600000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7275,7 +7297,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1244", @@ -7301,7 +7324,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 3600000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7324,7 +7347,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Debug" + "Build-Ubuntu-GCC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -7350,7 +7374,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7373,7 +7397,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -7399,7 +7424,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7422,7 +7447,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Debug" + "Build-Ubuntu-GCC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -7448,7 +7474,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7471,7 +7497,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -7497,7 +7524,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7525,7 +7552,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug" + "Build-Ubuntu-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:22b1", @@ -7551,7 +7579,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7579,7 +7607,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release" + "Build-Ubuntu-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:22b1", @@ -7605,7 +7634,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7633,7 +7662,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug" + "Build-Ubuntu-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -7659,7 +7689,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7692,7 +7722,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug-Vulkan" + "Build-Ubuntu-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -7718,7 +7749,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7746,7 +7777,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release" + "Build-Ubuntu-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -7772,7 +7804,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7805,7 +7837,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release-Vulkan" + "Build-Ubuntu-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -7831,7 +7864,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7859,7 +7892,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug" + "Build-Ubuntu-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0f31", @@ -7885,7 +7919,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7913,7 +7947,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release" + "Build-Ubuntu-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0f31", @@ -7939,7 +7974,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -7967,7 +8002,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug" + "Build-Ubuntu-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0102", @@ -7993,7 +8029,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8021,7 +8057,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release" + "Build-Ubuntu-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0102", @@ -8047,7 +8084,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8070,7 +8107,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -8096,7 +8134,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8119,7 +8157,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-ANGLE" + "Build-Win-MSVC-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -8145,7 +8184,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8168,7 +8207,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-Vulkan" + "Build-Win-MSVC-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -8194,7 +8234,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8217,7 +8257,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -8243,7 +8284,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8266,7 +8307,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-ANGLE" + "Build-Win-MSVC-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -8292,7 +8334,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8315,7 +8357,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-Vulkan" + "Build-Win-MSVC-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -8341,7 +8384,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8364,7 +8407,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:104a", @@ -8390,7 +8434,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8413,7 +8457,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-ANGLE" + "Build-Win-MSVC-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:162b", @@ -8439,7 +8484,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8462,7 +8507,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-ANGLE" + "Build-Win-MSVC-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:162b", @@ -8488,7 +8534,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8511,7 +8557,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -8537,7 +8584,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8560,7 +8607,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-ANGLE" + "Build-Win-MSVC-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -8586,7 +8634,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8609,7 +8657,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-Vulkan" + "Build-Win-MSVC-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -8635,7 +8684,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8658,7 +8707,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -8684,7 +8734,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8707,7 +8757,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-ANGLE" + "Build-Win-MSVC-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -8733,7 +8784,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8756,7 +8807,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-Vulkan" + "Build-Win-MSVC-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -8782,7 +8834,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8805,7 +8857,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -8832,7 +8885,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8855,7 +8908,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -8882,7 +8936,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8905,7 +8959,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:683d", @@ -8931,7 +8986,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -8954,7 +9009,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:683d", @@ -8980,7 +9036,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9003,7 +9059,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -9029,7 +9086,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9052,7 +9109,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-Vulkan" + "Build-Win-MSVC-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -9078,7 +9136,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9101,7 +9159,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -9127,7 +9186,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9150,7 +9209,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-Vulkan" + "Build-Win-MSVC-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -9176,7 +9236,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9199,7 +9259,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0412", @@ -9225,7 +9286,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9248,7 +9309,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0412", @@ -9274,7 +9336,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9297,7 +9359,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -9324,7 +9387,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9347,7 +9410,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-ANGLE" + "Build-Win-MSVC-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -9374,7 +9438,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9397,7 +9461,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -9424,7 +9489,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9447,7 +9512,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-ANGLE" + "Build-Win-MSVC-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -9474,7 +9540,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9497,7 +9563,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -9523,7 +9590,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9546,7 +9613,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-ANGLE" + "Build-Win-MSVC-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -9572,7 +9640,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9595,7 +9663,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-Vulkan" + "Build-Win-MSVC-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -9621,7 +9690,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9644,7 +9713,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -9670,7 +9740,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9693,7 +9763,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-ANGLE" + "Build-Win-MSVC-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -9719,7 +9790,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9742,7 +9813,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-Vulkan" + "Build-Win-MSVC-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -9768,7 +9840,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9791,7 +9863,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86-Debug" + "Build-Win-MSVC-x86-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -9818,7 +9891,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9841,7 +9914,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -9868,7 +9942,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9891,7 +9965,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-GDI" + "Build-Win-MSVC-x86_64-Debug-GDI", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -9918,7 +9993,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9941,7 +10016,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -9968,7 +10044,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -9991,7 +10067,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-arm64-Debug-iOS" + "Build-Mac-Clang-arm64-Debug-iOS", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "device:iPad5,1", @@ -10017,7 +10094,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10040,7 +10117,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-arm64-Release-iOS" + "Build-Mac-Clang-arm64-Release-iOS", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "device:iPad5,1", @@ -10066,7 +10144,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "perf_skia.isolate", + "isolate": "perf_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10117,7 +10195,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10168,7 +10246,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10219,7 +10297,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10270,7 +10348,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10321,7 +10399,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10372,7 +10450,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10423,7 +10501,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10474,7 +10552,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10525,7 +10603,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10576,7 +10654,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10627,7 +10705,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10678,7 +10756,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10729,7 +10807,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10780,7 +10858,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10831,7 +10909,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10882,7 +10960,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10933,7 +11011,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -10984,7 +11062,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11035,7 +11113,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11086,7 +11164,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11137,7 +11215,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11188,7 +11266,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11239,7 +11317,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11290,7 +11368,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11341,7 +11419,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11392,7 +11470,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11443,7 +11521,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11494,7 +11572,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11545,7 +11623,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11596,7 +11674,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11647,7 +11725,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11698,7 +11776,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11749,7 +11827,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11800,7 +11878,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11851,7 +11929,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11902,7 +11980,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -11953,7 +12031,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12004,7 +12082,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia_bundled.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12027,7 +12105,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Debug" + "Build-Mac-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:08a4", @@ -12053,7 +12132,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12076,7 +12155,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Release" + "Build-Mac-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:08a4", @@ -12102,7 +12182,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12125,7 +12205,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Debug" + "Build-Mac-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -12152,7 +12233,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12175,7 +12256,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Release" + "Build-Mac-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -12202,7 +12284,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12225,7 +12307,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Debug" + "Build-Mac-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0a2e", @@ -12251,7 +12334,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12274,7 +12357,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Debug-CommandBuffer" + "Build-Mac-Clang-x86_64-Debug-CommandBuffer", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0a2e", @@ -12300,7 +12384,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12323,7 +12407,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-x86_64-Release" + "Build-Mac-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0a2e", @@ -12349,7 +12434,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12372,7 +12457,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug" + "Build-Ubuntu-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -12399,7 +12485,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12427,7 +12513,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug-ASAN" + "Build-Ubuntu-Clang-x86_64-Debug-ASAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -12454,7 +12541,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12482,7 +12569,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug-MSAN" + "Build-Ubuntu-Clang-x86_64-Debug-MSAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -12509,7 +12597,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12532,7 +12620,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release" + "Build-Ubuntu-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -12559,7 +12648,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12587,7 +12676,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release-ASAN" + "Build-Ubuntu-Clang-x86_64-Release-ASAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -12614,7 +12704,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12637,7 +12727,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release-Fast" + "Build-Ubuntu-Clang-x86_64-Release-Fast", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -12664,7 +12755,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12692,7 +12783,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release-TSAN" + "Build-Ubuntu-Clang-x86_64-Release-TSAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -12719,7 +12811,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12747,7 +12839,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug-ASAN" + "Build-Ubuntu-Clang-x86_64-Debug-ASAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:104a", @@ -12773,7 +12866,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12801,7 +12894,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release-ASAN" + "Build-Ubuntu-Clang-x86_64-Release-ASAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:104a", @@ -12827,7 +12921,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12855,7 +12949,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release-TSAN" + "Build-Ubuntu-Clang-x86_64-Release-TSAN", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:104a", @@ -12881,7 +12976,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12904,7 +12999,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86-Debug" + "Build-Ubuntu-GCC-x86-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -12931,7 +13027,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -12954,7 +13050,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Debug" + "Build-Ubuntu-GCC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -12981,7 +13078,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13079,7 +13176,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE" + "Build-Ubuntu-GCC-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -13106,7 +13204,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13129,7 +13227,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -13156,7 +13255,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13179,7 +13278,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release-SKNX_NO_SIMD" + "Build-Ubuntu-GCC-x86_64-Release-SKNX_NO_SIMD", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64-avx2", @@ -13206,7 +13306,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13229,7 +13329,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1244", @@ -13255,7 +13356,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 3600000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13278,7 +13379,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1244", @@ -13304,7 +13406,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 3600000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13327,7 +13429,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1244", @@ -13353,7 +13456,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 3600000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13376,7 +13479,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Debug" + "Build-Ubuntu-GCC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -13402,7 +13506,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13425,7 +13529,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -13451,7 +13556,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13474,7 +13579,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Debug" + "Build-Ubuntu-GCC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -13500,7 +13606,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13523,7 +13629,8 @@ } ], "dependencies": [ - "Build-Ubuntu-GCC-x86_64-Release" + "Build-Ubuntu-GCC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -13549,7 +13656,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13577,7 +13684,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug" + "Build-Ubuntu-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:22b1", @@ -13603,7 +13711,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13631,7 +13739,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release" + "Build-Ubuntu-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:22b1", @@ -13657,7 +13766,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13685,7 +13794,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug" + "Build-Ubuntu-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -13711,7 +13821,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13744,7 +13854,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug-Vulkan" + "Build-Ubuntu-Clang-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -13770,7 +13881,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13798,7 +13909,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release" + "Build-Ubuntu-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -13824,7 +13936,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13857,7 +13969,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release-Vulkan" + "Build-Ubuntu-Clang-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -13883,7 +13996,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13911,7 +14024,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug" + "Build-Ubuntu-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0f31", @@ -13937,7 +14051,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -13965,7 +14079,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release" + "Build-Ubuntu-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0f31", @@ -13991,7 +14106,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14019,7 +14134,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Debug" + "Build-Ubuntu-Clang-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0102", @@ -14045,7 +14161,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14073,7 +14189,8 @@ } ], "dependencies": [ - "Build-Ubuntu-Clang-x86_64-Release" + "Build-Ubuntu-Clang-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0102", @@ -14099,7 +14216,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14122,7 +14239,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -14148,7 +14266,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14171,7 +14289,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-ANGLE" + "Build-Win-MSVC-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -14197,7 +14316,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14220,7 +14339,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-Vulkan" + "Build-Win-MSVC-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -14246,7 +14366,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14269,7 +14389,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -14295,7 +14416,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14318,7 +14439,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-ANGLE" + "Build-Win-MSVC-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -14344,7 +14466,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14367,7 +14489,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-Vulkan" + "Build-Win-MSVC-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:6646", @@ -14393,7 +14516,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14416,7 +14539,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:104a", @@ -14442,7 +14566,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14465,7 +14589,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-ANGLE" + "Build-Win-MSVC-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:162b", @@ -14491,7 +14616,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14514,7 +14639,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-ANGLE" + "Build-Win-MSVC-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:162b", @@ -14540,7 +14666,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14563,7 +14689,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -14589,7 +14716,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14612,7 +14739,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-ANGLE" + "Build-Win-MSVC-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -14638,7 +14766,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14661,7 +14789,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-Vulkan" + "Build-Win-MSVC-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -14687,7 +14816,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14710,7 +14839,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -14736,7 +14866,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14759,7 +14889,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-ANGLE" + "Build-Win-MSVC-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -14785,7 +14916,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14808,7 +14939,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-Vulkan" + "Build-Win-MSVC-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:1926", @@ -14834,7 +14966,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14857,7 +14989,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -14884,7 +15017,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14907,7 +15040,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -14934,7 +15068,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -14957,7 +15091,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:683d", @@ -14983,7 +15118,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15006,7 +15141,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:1002:683d", @@ -15032,7 +15168,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15055,7 +15191,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -15081,7 +15218,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15104,7 +15241,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-Vulkan" + "Build-Win-MSVC-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -15130,7 +15268,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15153,7 +15291,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:11c0", @@ -15179,7 +15318,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15202,7 +15341,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0412", @@ -15228,7 +15368,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15251,7 +15391,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:8086:0412", @@ -15277,7 +15418,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15300,7 +15441,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -15327,7 +15469,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15350,7 +15492,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-ANGLE" + "Build-Win-MSVC-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -15377,7 +15520,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15400,7 +15543,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -15427,7 +15571,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15450,7 +15594,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-ANGLE" + "Build-Win-MSVC-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1401", @@ -15477,7 +15622,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15500,7 +15645,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -15526,7 +15672,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15549,7 +15695,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-ANGLE" + "Build-Win-MSVC-x86_64-Debug-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -15575,7 +15722,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15598,7 +15745,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-Vulkan" + "Build-Win-MSVC-x86_64-Debug-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -15624,7 +15772,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15647,7 +15795,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -15673,7 +15822,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15696,7 +15845,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-ANGLE" + "Build-Win-MSVC-x86_64-Release-ANGLE", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -15722,7 +15872,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15745,7 +15895,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-Vulkan" + "Build-Win-MSVC-x86_64-Release-Vulkan", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "gpu:10de:1ba1", @@ -15771,7 +15922,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15794,7 +15945,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86-Debug" + "Build-Win-MSVC-x86-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -15821,7 +15973,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15844,7 +15996,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86-Release" + "Build-Win-MSVC-x86-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -15871,7 +16024,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15894,7 +16047,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug" + "Build-Win-MSVC-x86_64-Debug", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -15921,7 +16075,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15944,7 +16098,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Debug-GDI" + "Build-Win-MSVC-x86_64-Debug-GDI", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -15971,7 +16126,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -15994,7 +16149,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release" + "Build-Win-MSVC-x86_64-Release", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -16021,7 +16177,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16044,7 +16200,8 @@ } ], "dependencies": [ - "Build-Win-MSVC-x86_64-Release-GDI" + "Build-Win-MSVC-x86_64-Release-GDI", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "cpu:x86-64", @@ -16071,7 +16228,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_win.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16094,7 +16251,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-arm64-Debug-iOS" + "Build-Mac-Clang-arm64-Debug-iOS", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "device:iPad5,1", @@ -16120,7 +16278,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, @@ -16143,7 +16301,8 @@ } ], "dependencies": [ - "Build-Mac-Clang-arm64-Release-iOS" + "Build-Mac-Clang-arm64-Release-iOS", + "Housekeeper-PerCommit-BundleRecipes" ], "dimensions": [ "device:iPad5,1", @@ -16169,7 +16328,7 @@ "patch_set=<(PATCHSET)" ], "io_timeout_ns": 2400000000000, - "isolate": "test_skia.isolate", + "isolate": "test_skia_bundled_unix.isolate", "max_attempts": 1, "priority": 0.8 }, diff --git a/infra/bots/test_skia_bundled.isolate b/infra/bots/test_skia_bundled.isolate index cd478385df..d75a572389 100644 --- a/infra/bots/test_skia_bundled.isolate +++ b/infra/bots/test_skia_bundled.isolate @@ -4,7 +4,6 @@ 'assets.isolate', 'ios_bin.isolate', 'resources.isolate', - 'swarm_recipe_bundled.isolate', ], 'variables': { 'files': [ diff --git a/infra/bots/test_skia_bundled_unix.isolate b/infra/bots/test_skia_bundled_unix.isolate new file mode 100644 index 0000000000..f3be6ea780 --- /dev/null +++ b/infra/bots/test_skia_bundled_unix.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'test_skia_bundled.isolate', + 'swarm_recipe_bundled_unix.isolate', + ], +} diff --git a/infra/bots/test_skia_bundled_win.isolate b/infra/bots/test_skia_bundled_win.isolate new file mode 100644 index 0000000000..cdffa56a68 --- /dev/null +++ b/infra/bots/test_skia_bundled_win.isolate @@ -0,0 +1,6 @@ +{ + 'includes': [ + 'test_skia_bundled.isolate', + 'swarm_recipe_bundled_win.isolate', + ], +} |