[infra] Sync generated *.pyl files to //testing/buildbot.
The //testing/buildbot directory is exported to a separate repo that the
angle repo uses to share the definitions in *.pyl files, so generating
the files to //infra/config/generated/testing breaks that flow. This
replaces the sync-isolate-map script with sync-pyl-files script so that
we can keep all of the generated *.pyl files in sync with
//testing/buildbot.
Bug: 1456553
Change-Id: Ieeba3e44cb6c63a62e6decef55766ca60e543e80
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4670464
Reviewed-by: Yuly Novikov <[email protected]>
Commit-Queue: Yuly Novikov <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1167423}
diff --git a/testing/buildbot/generate_buildbot_json.py b/testing/buildbot/generate_buildbot_json.py
index 9e3ee35..c59087a9 100755
--- a/testing/buildbot/generate_buildbot_json.py
+++ b/testing/buildbot/generate_buildbot_json.py
@@ -419,6 +419,7 @@
return os.path.join(args.pyl_files_dir, filename)
args.waterfalls_pyl_path = absolute_file_path('waterfalls.pyl')
+ args.mixins_pyl_path = absolute_file_path('mixins.pyl')
args.test_suites_pyl_path = absolute_file_path('test_suites.pyl')
args.test_suite_exceptions_pyl_path = absolute_file_path(
'test_suite_exceptions.pyl')
@@ -427,12 +428,6 @@
args.autoshard_exceptions_json_path = absolute_file_path(
'autoshard_exceptions.json')
- if args.pyl_files_dir == THIS_DIR:
- args.mixins_pyl_path = os.path.join(args.infra_config_dir, 'generated',
- 'testing', 'mixins.pyl')
- else:
- args.mixins_pyl_path = absolute_file_path('mixins.pyl')
-
return args
def print_line(self, line):