OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 | 3 |
4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 { | 102 { |
103 'filename': 'xdg-mime', | 103 'filename': 'xdg-mime', |
104 'buildtype': ['dev', 'official'], | 104 'buildtype': ['dev', 'official'], |
105 }, | 105 }, |
106 { | 106 { |
107 'filename': 'xdg-settings', | 107 'filename': 'xdg-settings', |
108 'buildtype': ['dev', 'official'], | 108 'buildtype': ['dev', 'official'], |
109 }, | 109 }, |
110 # CDM files (each has an adapter and the actual CDM): | 110 # CDM files (each has an adapter and the actual CDM): |
111 { | 111 { |
112 'filename': 'ClearKeyCdm/libclearkeycdmadapter.so', | 112 'filename': 'libclearkeycdmadapter.so', |
113 'buildtype': ['dev', 'official'], | 113 'buildtype': ['dev', 'official'], |
114 }, | 114 }, |
115 { | 115 { |
116 'filename': 'ClearKeyCdm/libclearkeycdm.so', | 116 'filename': 'libclearkeycdm.so', |
117 'buildtype': ['dev', 'official'], | 117 'buildtype': ['dev', 'official'], |
118 }, | 118 }, |
119 { | 119 { |
120 'filename': 'WidevineCdm/libwidevinecdmadapter.so', | 120 'filename': 'libwidevinecdmadapter.so', |
121 'arch': ['32bit', '64bit'], | 121 'arch': ['32bit', '64bit'], |
122 'buildtype': ['official'], | 122 'buildtype': ['official'], |
123 }, | 123 }, |
124 { | 124 { |
125 'filename': 'WidevineCdm/libwidevinecdm.so', | 125 'filename': 'libwidevinecdm.so', |
126 'arch': ['32bit', '64bit'], | 126 'arch': ['32bit', '64bit'], |
127 'buildtype': ['official'], | 127 'buildtype': ['official'], |
128 'direct_archive': 1, | 128 'direct_archive': 1, |
129 }, | 129 }, |
130 # ANGLE files: | 130 # ANGLE files: |
131 { | 131 { |
132 'filename': 'libGLESv2.so', | 132 'filename': 'libGLESv2.so', |
133 'buildtype': ['dev'], | 133 'buildtype': ['dev'], |
134 }, | 134 }, |
135 { | 135 { |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 'buildtype': ['official'], | 206 'buildtype': ['official'], |
207 'archive': 'chrome-linux-nacl-irt-syms.zip', | 207 'archive': 'chrome-linux-nacl-irt-syms.zip', |
208 }, | 208 }, |
209 { | 209 { |
210 'filename': 'nacl_irt_x86_64.nexe.debug', | 210 'filename': 'nacl_irt_x86_64.nexe.debug', |
211 'arch': ['64bit'], | 211 'arch': ['64bit'], |
212 'buildtype': ['official'], | 212 'buildtype': ['official'], |
213 'archive': 'chrome-linux-nacl-irt-syms.zip', | 213 'archive': 'chrome-linux-nacl-irt-syms.zip', |
214 }, | 214 }, |
215 ] | 215 ] |
OLD | NEW |