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 # |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 'filename': 'installer', | 49 'filename': 'installer', |
50 'arch': ['32bit', '64bit'], | 50 'arch': ['32bit', '64bit'], |
51 'buildtype': ['official'], | 51 'buildtype': ['official'], |
52 }, | 52 }, |
53 { | 53 { |
54 'filename': 'libffmpegsumo.so', | 54 'filename': 'libffmpegsumo.so', |
55 'arch': ['32bit', '64bit'], | 55 'arch': ['32bit', '64bit'], |
56 'buildtype': ['dev', 'official'], | 56 'buildtype': ['dev', 'official'], |
57 }, | 57 }, |
58 { | 58 { |
59 'filename': 'libgcflashplayer.so', | |
60 'arch': ['32bit'], | |
61 'buildtype': ['official'], | |
62 }, | |
63 { | |
64 'filename': 'locales', | 59 'filename': 'locales', |
65 'arch': ['32bit', '64bit'], | 60 'arch': ['32bit', '64bit'], |
66 'buildtype': ['dev', 'official'], | 61 'buildtype': ['dev', 'official'], |
67 }, | 62 }, |
68 { | 63 { |
69 'filename': 'product_logo_48.png', | 64 'filename': 'product_logo_48.png', |
70 'arch': ['32bit', '64bit'], | 65 'arch': ['32bit', '64bit'], |
71 'buildtype': ['dev', 'official'], | 66 'buildtype': ['dev', 'official'], |
72 }, | 67 }, |
73 { | 68 { |
74 'filename': 'resources', | 69 'filename': 'resources', |
75 'arch': ['32bit', '64bit'], | 70 'arch': ['32bit', '64bit'], |
76 'buildtype': ['dev', 'official'], | 71 'buildtype': ['dev', 'official'], |
77 }, | 72 }, |
78 { | 73 { |
79 'filename': 'session', | 74 'filename': 'session', |
80 'arch': ['32bit', '64bit'], | 75 'arch': ['32bit', '64bit'], |
81 'buildtype': ['dev'], | 76 'buildtype': ['dev'], |
82 }, | 77 }, |
83 { | 78 { |
84 'filename': 'xdg-settings', | 79 'filename': 'xdg-settings', |
85 'arch': ['32bit', '64bit'], | 80 'arch': ['32bit', '64bit'], |
86 'buildtype': ['dev', 'official'], | 81 'buildtype': ['dev', 'official'], |
87 }, | 82 }, |
| 83 # Flash Player files: |
| 84 { |
| 85 'filename': 'libgcflashplayer.so', |
| 86 'arch': ['32bit'], |
| 87 'buildtype': ['official'], |
| 88 }, |
| 89 { |
| 90 'filename': 'plugin.vch', |
| 91 'arch': ['32bit'], |
| 92 'buildtype': ['official'], |
| 93 }, |
88 ] | 94 ] |
OLD | NEW |