blob: 437aab12e1612e8049d0f86129b7a66d417ffbd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# -*- python -*-
# ex: set syntax=python:
# Copyright (c) 2010 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.
# This is a buildbot configuration file containing a tagged list of files
# processed by the stage/archive scripts. The known tags are:
#
# filename: Name of the file in the build output directory.
# buildtype: List of build types for which this file should be processed.
#
# Note, Mac doesn't tag FILES with 'arch' (like Linux does) because binaries
# are packaged to support multiple architectures.
FILES = [
{
'filename': 'Chromium.app',
'buildtype': ['dev''],
},
{
'filename': 'Google Chrome.app',
'buildtype': ['official'],
},
{
'filename': 'Google Chrome Packaging',
'buildtype': ['official'],
},
]
|