1 # -*- python -*- 2 # ex: set syntax=python: 3 4 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 5 # Use of this source code is governed by a BSD-style license that can be 6 # found in the LICENSE file. 7 8 # This is a buildbot configuration file containing a tagged list of files 9 # processed by the stage/archive scripts. The known tags are: 10 # 11 # filename: Name of the file in the build output directory. 12 # arch: List of CPU architectures for which this file should be processed 13 # (values are based on the strings returned by python's 14 # platform.architecture() function). Leave unspecified for 15 # architecture neutral files. 16 # buildtype: List of build types for which this file should be processed. 17 # archive: The name of the archive file to store filename in. If not specified, 18 # filename is added to the default archive (e.g. platform.zip). If 19 # archive == filename, filename is archived directly, not zipped. 20 # direct_archive: Force a file to be archived as-is, bypassing zip creation. 21 # NOTE: This flag will not apply if more than one file has the 22 # same 'archive' name, which will create a zip of all the 23 # files instead. 24 # filegroup: List of named groups to which this file belongs (e.g. 'symbols' 25 # for symbol processing, 'tests' for running tests, etc.). 26 # optional: List of buildtypes for which the file might not exist, and it's not 27 # considered an error. 28 29 FILES = [ 30 { 31 'filename': 'apks/ContentShell.apk', 32 'buildtype': ['dev', 'official'], 33 }, 34 { 35 'filename': 'apks/ChromiumTestShell.apk', 36 'buildtype': ['dev', 'official'], 37 }, 38 ] 39