blob: 83c329e529ccc754243247115788e4ab6af6d2ac [file] [log] [blame]
David James56e6c2c2012-10-24 23:54:41 -07001# 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 Garrett25f309a2014-03-19 14:02:12 -07005"""Print the environment whitelist."""
David James56e6c2c2012-10-24 23:54:41 -07006
Mike Frysinger383367e2014-09-16 15:06:17 -04007from __future__ import print_function
8
Don Garrett88b8d782014-05-13 17:30:55 -07009from chromite.cbuildbot import constants
David James56e6c2c2012-10-24 23:54:41 -070010
11
David James43e14f42012-12-14 13:44:16 -080012def main(_argv):
Mike Frysinger383367e2014-09-16 15:06:17 -040013 print(' '.join(constants.CHROOT_ENVIRONMENT_WHITELIST))