| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 # This is a buildbot configuration file containing a tagged list of files | 8 # This is a buildbot configuration file containing a tagged list of files |
| 9 # processed by the stage/archive scripts. The known tags are: | 9 # processed by the stage/archive scripts. The known tags are: |
| 10 # | 10 # |
| 11 # filename: Name of the file in the build output directory. | 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). |
| 15 # Note: Mac doesn't really care about 'arch' (like Linux does) |
| 16 # because binaries are packaged to support multiple architectures, |
| 17 # but we still tag the files to allow consistent handling in the |
| 18 # buildbot scripts. Tagging them all as both 32bit and 64bit is the |
| 19 # safest bet. |
| 12 # buildtype: List of build types for which this file should be processed. | 20 # buildtype: List of build types for which this file should be processed. |
| 13 # | |
| 14 # Note, Mac doesn't tag FILES with 'arch' (like Linux does) because binaries | |
| 15 # are packaged to support multiple architectures. | |
| 16 | 21 |
| 17 FILES = [ | 22 FILES = [ |
| 18 { | 23 { |
| 19 'filename': 'Chromium.app', | 24 'filename': 'Chromium.app', |
| 25 'arch': ['32bit', '64bit'], |
| 20 'buildtype': ['dev'], | 26 'buildtype': ['dev'], |
| 21 }, | 27 }, |
| 22 { | 28 { |
| 23 'filename': 'Google Chrome.app', | 29 'filename': 'Google Chrome.app', |
| 30 'arch': ['32bit', '64bit'], |
| 24 'buildtype': ['official'], | 31 'buildtype': ['official'], |
| 25 }, | 32 }, |
| 26 { | 33 { |
| 27 'filename': 'Google Chrome Packaging', | 34 'filename': 'Google Chrome Packaging', |
| 35 'arch': ['32bit', '64bit'], |
| 28 'buildtype': ['official'], | 36 'buildtype': ['official'], |
| 29 }, | 37 }, |
| 30 # Remoting Host plugin files: | 38 # Remoting Host plugin files: |
| 31 { | 39 { |
| 32 'filename': 'remoting_host_plugin.plugin', | 40 'filename': 'remoting_host_plugin.plugin', |
| 41 'arch': ['32bit', '64bit'], |
| 33 'buildtype': ['dev', 'official'], | 42 'buildtype': ['dev', 'official'], |
| 34 }, | 43 }, |
| 35 ] | 44 ] |
| OLD | NEW |