2016-09-30 19:53:12 +00:00
|
|
|
// Copyright 2016 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
/*
|
|
|
|
Generate the tasks.json file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import (
|
2019-07-16 13:19:10 +00:00
|
|
|
"go.skia.org/skia/infra/bots/gen_tasks_logic"
|
2016-09-30 19:53:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-07-16 13:19:10 +00:00
|
|
|
gen_tasks_logic.GenTasks(nil)
|
2016-09-30 19:53:12 +00:00
|
|
|
}
|