David James | 56e6c2c | 2012-10-24 23:54:41 -0700 | [diff] [blame] | 1 | # Copyright (c) 2012 The Chromium OS 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 | |
Don Garrett | 25f309a | 2014-03-19 14:02:12 -0700 | [diff] [blame] | 5 | """Print the environment whitelist.""" |
David James | 56e6c2c | 2012-10-24 23:54:41 -0700 | [diff] [blame] | 6 | |
Mike Frysinger | 383367e | 2014-09-16 15:06:17 -0400 | [diff] [blame^] | 7 | from __future__ import print_function |
| 8 | |
Don Garrett | 88b8d78 | 2014-05-13 17:30:55 -0700 | [diff] [blame] | 9 | from chromite.cbuildbot import constants |
David James | 56e6c2c | 2012-10-24 23:54:41 -0700 | [diff] [blame] | 10 | |
| 11 | |
David James | 43e14f4 | 2012-12-14 13:44:16 -0800 | [diff] [blame] | 12 | def main(_argv): |
Mike Frysinger | 383367e | 2014-09-16 15:06:17 -0400 | [diff] [blame^] | 13 | print(' '.join(constants.CHROOT_ENVIRONMENT_WHITELIST)) |