Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Unified Diff: infra/bots/compile_skia.py

Issue 1827413002: Fixes for Swarming recipes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Reinstate tmp_dir Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: infra/bots/compile_skia.py
diff --git a/infra/bots/compile_skia.py b/infra/bots/compile_skia.py
deleted file mode 100644
index 28874613512190600e6531d3922f4562fd0bd53c..0000000000000000000000000000000000000000
--- a/infra/bots/compile_skia.py
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright 2016 Google Inc.
-#
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-
-import argparse
-import common
-import os
-import sys
-import utils
-
-
-def main():
- parser = argparse.ArgumentParser()
- parser.add_argument('--builder_name', required=True)
- parser.add_argument('--swarm_out_dir', required=True)
- args = parser.parse_args()
- with utils.print_timings():
- bot = common.BotInfo(args.builder_name, os.path.abspath(args.swarm_out_dir))
- bot.compile_steps()
-
-
-if __name__ == '__main__':
- main()

Powered by Google App Engine
This is Rietveld 408576698