| borenet | db182c7 | 2016-09-30 12:53:12 -0700 | [diff] [blame] | 1 | // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | package main |
| 6 | |
| 7 | /* |
| 8 | Generate the tasks.json file. |
| 9 | */ |
| 10 | |
| 11 | import ( |
| Eric Boren | 06920f9 | 2019-07-16 09:19:10 -0400 | [diff] [blame] | 12 | "go.skia.org/skia/infra/bots/gen_tasks_logic" |
| borenet | db182c7 | 2016-09-30 12:53:12 -0700 | [diff] [blame] | 13 | ) |
| 14 | |
| Eric Boren | 58d1f76 | 2019-07-19 08:07:44 -0400 | [diff] [blame] | 15 | // Regenerate the tasks.json file. |
| borenet | db182c7 | 2016-09-30 12:53:12 -0700 | [diff] [blame] | 16 | func main() { |
| Eric Boren | 06920f9 | 2019-07-16 09:19:10 -0400 | [diff] [blame] | 17 | gen_tasks_logic.GenTasks(nil) |
| borenet | db182c7 | 2016-09-30 12:53:12 -0700 | [diff] [blame] | 18 | } |