Supervised users: Don't URLEscape extension update requests
[chromium-blink-merge.git] / chrome / tools / build / linux / FILES.cfg
blob0862176661255eafd6021d8dbf6985089dfd2edf
1 # -*- python -*-
2 # ex: set syntax=python:
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
6 # found in the LICENSE file.
8 # This is a buildbot configuration file containing a tagged list of files
9 # processed by the stage/archive scripts. The known tags are:
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.
29 FILES = [
30   {
31     'filename': 'chrome',
32     'buildtype': ['dev', 'official'],
33   },
34   {
35     'filename': 'chrome-wrapper',
36     'buildtype': ['dev', 'official'],
37   },
38   {
39     'filename': 'chrome_100_percent.pak',
40     'buildtype': ['dev', 'official'],
41   },
42   {
43     'filename': 'chrome_sandbox',
44     'buildtype': ['dev', 'official'],
45   },
46   {
47     'filename': 'chrome.1',
48     'buildtype': ['dev', 'official'],
49   },
50   {
51     'filename': 'emit_login_prompt_ready',
52     'buildtype': ['dev'],
53   },
54   {
55     'filename': 'icudtl.dat',
56     'buildtype': ['dev', 'official'],
57   },
58   {
59     'filename': 'natives_blob.bin',
60     'buildtype': ['dev', 'official'],
61   },
62   {
63     'filename': 'snapshot_blob.bin',
64     'buildtype': ['dev', 'official'],
65   },
66   {
67     'filename': 'installer',
68     'buildtype': ['official'],
69   },
70   {
71     'filename': 'libffmpegsumo.so',
72     'buildtype': ['dev', 'official'],
73   },
74   {
75     'filename': 'lib/libpeerconnection.so',
76     'buildtype': ['dev', 'official'],
77     'optional': ['dev', 'official'],
78   },
79   {
80     'filename': 'locales',
81     'buildtype': ['dev', 'official'],
82   },
83   {
84     'filename': 'product_logo_48.png',
85     'buildtype': ['dev', 'official'],
86   },
87   {
88     'filename': 'resources',
89     'buildtype': ['dev', 'official'],
90   },
91   {
92     'filename': 'resources.pak',
93     'buildtype': ['dev', 'official'],
94   },
95   {
96     'filename': 'session',
97     'buildtype': ['dev'],
98   },
99   {
100     'filename': 'xdg-mime',
101     'buildtype': ['dev', 'official'],
102   },
103   {
104     'filename': 'xdg-settings',
105     'buildtype': ['dev', 'official'],
106   },
107   # CDM files (each has an adapter and the actual CDM):
108   {
109     'filename': 'libclearkeycdmadapter.so',
110     'buildtype': ['dev', 'official'],
111   },
112   {
113     'filename': 'libclearkeycdm.so',
114     'buildtype': ['dev', 'official'],
115   },
116   {
117     'filename': 'libwidevinecdmadapter.so',
118     'arch': ['32bit', '64bit'],
119     'buildtype': ['official'],
120   },
121   {
122     'filename': 'libwidevinecdm.so',
123     'arch': ['32bit', '64bit'],
124     'buildtype': ['official'],
125     'direct_archive': 1,
126   },
127   # Flash Player files:
128   # Pepper Flash Player files:
129   {
130     'filename': 'PepperFlash',
131     'buildtype': ['official'],
132   },
133   # Native Client plugin files:
134   {
135     'filename': 'nacl_irt_x86_32.nexe',
136     'arch': ['32bit'],
137     'buildtype': ['dev', 'official'],
138   },
139   {
140     'filename': 'nacl_irt_x86_64.nexe',
141     'arch': ['64bit'],
142     'buildtype': ['dev', 'official'],
143   },
144   {
145     'filename': 'nacl_irt_arm.nexe',
146     'arch': ['arm'],
147     'buildtype': ['dev', 'official'],
148   },
149   {
150     'filename': 'nacl_helper',
151     'buildtype': ['dev', 'official'],
152   },
153   {
154     'filename': 'nacl_helper_bootstrap',
155     'buildtype': ['dev', 'official'],
156   },
157   # PNaCl translator (archive only, component updater used for shipping).
158   {
159     'filename': 'pnacl',
160     'buildtype': ['dev', 'official'],
161     'archive': 'pnacl.zip',
162   },
163   # Remoting files:
164   {
165     'filename': 'remoting-webapp.zip',
166     'buildtype': ['dev', 'official'],
167     'archive': 'remoting-webapp.zip',
168   },
169   {
170     'filename': 'remoting-webapp.v2.zip',
171     'buildtype': ['dev', 'official'],
172     'archive': 'remoting-webapp.v2.zip',
173   },
174   {
175     'filename': 'remoting-me2me-host-linux.zip',
176     'buildtype': ['official'],
177     'archive': 'remoting-me2me-host-linux.zip',
178   },
179   # Breakpad symbols:
180   {
181     'filename': 'chrome.breakpad.ia32',
182     'arch': ['32bit'],
183     'buildtype': ['official'],
184     'archive': 'breakpad-info.zip',
185   },
186   {
187     'filename': 'chrome.breakpad.x64',
188     'arch': ['64bit'],
189     'buildtype': ['official'],
190     'archive': 'breakpad-info.zip',
191   },
192   {
193     'filename': 'nacl_irt_x86_32.nexe.debug',
194     'arch': ['32bit'],
195     'buildtype': ['official'],
196     'archive': 'chrome-linux-nacl-irt-syms.zip',
197   },
198   {
199     'filename': 'nacl_irt_x86_64.nexe.debug',
200     'arch': ['64bit'],
201     'buildtype': ['official'],
202     'archive': 'chrome-linux-nacl-irt-syms.zip',
203   },