gen_tasks.go 359 B

123456789101112131415161718
  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. package main
  5. /*
  6. Generate the tasks.json file.
  7. */
  8. import (
  9. "go.skia.org/skia/infra/bots/gen_tasks_logic"
  10. )
  11. // Regenerate the tasks.json file.
  12. func main() {
  13. gen_tasks_logic.GenTasks(nil)
  14. }