| OLD | NEW |
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. | 1 // Copyright 2016 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto3"; | 5 syntax = "proto3"; |
| 6 | 6 |
| 7 package deploy; | 7 package deploy; |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * Source layout configuration file. | 10 * Source layout configuration file. |
| 11 * | 11 * |
| 12 * Each Source checkout may include a textproto layout file named | 12 * Each Source checkout may include a textproto layout file named |
| 13 * "luci-deploytool.cfg". If present, this file will be loaded and used to | 13 * "luci-deploy.cfg". If present, this file will be loaded and used to |
| 14 * integrate the source into the deployment. | 14 * integrate the source into the deployment. |
| 15 * | 15 * |
| 16 * Uncooperative repositories, or those not owned by the author, may have the | 16 * Uncooperative repositories, or those not owned by the author, may have the |
| 17 * same effect by specifying the SourceLayout in the Source's layout definition. | 17 * same effect by specifying the SourceLayout in the Source's layout definition. |
| 18 */ | 18 */ |
| 19 message SourceLayout { | 19 message SourceLayout { |
| 20 /** | 20 /** |
| 21 * Init is a single initialization operation execution. | 21 * Init is a single initialization operation execution. |
| 22 */ | 22 */ |
| 23 message Init { | 23 message Init { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 * | 75 * |
| 76 * For example, given checkout: | 76 * For example, given checkout: |
| 77 * path: gosrc/my/thing | 77 * path: gosrc/my/thing |
| 78 * go_package: github.com/example/mything | 78 * go_package: github.com/example/mything |
| 79 * | 79 * |
| 80 * This will add a GOPATH entry: | 80 * This will add a GOPATH entry: |
| 81 * src/github.com/example/mything => <root>/gosrc/my/thing | 81 * src/github.com/example/mything => <root>/gosrc/my/thing |
| 82 */ | 82 */ |
| 83 string go_package = 2; | 83 string go_package = 2; |
| 84 } | 84 } |
| OLD | NEW |