Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / tools / build / linux / FILES.cfg
bloba0a844ef0ac980b4b1a8ee43a26f09be99a1f023
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': 'installer',
56     'buildtype': ['official'],
57   },
58   {
59     'filename': 'libffmpegsumo.so',
60     'buildtype': ['dev', 'official'],
61   },
62   {
63     'filename': 'lib/libpeerconnection.so',
64     'buildtype': ['dev', 'official'],
65     'optional': ['dev', 'official'],
66   },
67   {
68     'filename': 'locales',
69     'buildtype': ['dev', 'official'],
70   },
71   {
72     'filename': 'product_logo_48.png',
73     'buildtype': ['dev', 'official'],
74   },
75   {
76     'filename': 'resources',
77     'buildtype': ['dev', 'official'],
78   },
79   {
80     'filename': 'resources.pak',
81     'buildtype': ['dev', 'official'],
82   },
83   {
84     'filename': 'session',
85     'buildtype': ['dev'],
86   },
87   {
88     'filename': 'xdg-mime',
89     'buildtype': ['dev', 'official'],
90   },
91   {
92     'filename': 'xdg-settings',
93     'buildtype': ['dev', 'official'],
94   },
95   # CDM files (each has an adapter and the actual CDM):
96   {
97     'filename': 'libclearkeycdmadapter.so',
98     'buildtype': ['dev', 'official'],
99   },
100   {
101     'filename': 'libclearkeycdm.so',
102     'buildtype': ['dev', 'official'],
103   },
104   {
105     'filename': 'libwidevinecdmadapter.so',
106     'arch': ['32bit', '64bit'],
107     'buildtype': ['official'],
108   },
109   {
110     'filename': 'libwidevinecdm.so',
111     'arch': ['32bit', '64bit'],
112     'buildtype': ['official'],
113     'direct_archive': 1,
114   },
115   # Flash Player files:
116   # Pepper Flash Player files:
117   {
118     'filename': 'PepperFlash',
119     'buildtype': ['official'],
120   },
121   # PDF Plugin files:
122   {
123     'filename': 'libpdf.so',
124     'buildtype': ['dev', 'official'],
125   },
126   # Native Client plugin files:
127   {
128     'filename': 'libppGoogleNaClPluginChrome.so',
129     'buildtype': ['dev', 'official'],
130   },
131   {
132     'filename': 'nacl_irt_x86_32.nexe',
133     'arch': ['32bit'],
134     'buildtype': ['dev', 'official'],
135   },
136   {
137     'filename': 'nacl_irt_x86_64.nexe',
138     'arch': ['64bit'],
139     'buildtype': ['dev', 'official'],
140   },
141   {
142     'filename': 'nacl_irt_arm.nexe',
143     'arch': ['arm'],
144     'buildtype': ['dev', 'official'],
145   },
146   {
147     'filename': 'nacl_helper',
148     'buildtype': ['dev', 'official'],
149   },
150   {
151     'filename': 'nacl_helper_bootstrap',
152     'buildtype': ['dev', 'official'],
153   },
154   # PNaCl translator (only for dev builds, components use for shipping).
155   {
156     'filename': 'pnacl',
157     'buildtype': ['dev'],
158   },
159   # Remoting files:
160   {
161     'filename': 'remoting-webapp.zip',
162     'buildtype': ['dev', 'official'],
163     'archive': 'remoting-webapp.zip',
164   },
165   {
166     'filename': 'remoting-webapp.v2.zip',
167     'buildtype': ['dev', 'official'],
168     'archive': 'remoting-webapp.v2.zip',
169   },
170   {
171     'filename': 'remoting-me2me-host-linux.zip',
172     'buildtype': ['official'],
173     'archive': 'remoting-me2me-host-linux.zip',
174   },
175   # Breakpad symbols:
176   {
177     'filename': 'chrome.breakpad.ia32',
178     'arch': ['32bit'],
179     'buildtype': ['official'],
180     'archive': 'breakpad-info.zip',
181   },
182   {
183     'filename': 'chrome.breakpad.x64',
184     'arch': ['64bit'],
185     'buildtype': ['official'],
186     'archive': 'breakpad-info.zip',
187   },
188   {
189     'filename': 'libpdf.so.breakpad.ia32',
190     'arch': ['32bit'],
191     'buildtype': ['official'],
192     'archive': 'breakpad-info.zip',
193   },
194   {
195     'filename': 'libpdf.so.breakpad.x64',
196     'arch': ['64bit'],
197     'buildtype': ['official'],
198     'archive': 'breakpad-info.zip',
199   },
200   {
201     'filename': 'libremoting_host_plugin.ia32.so.breakpad.ia32',
202     'arch': ['32bit'],
203     'buildtype': ['official'],
204     'archive': 'breakpad-info.zip',
205   },
206   {
207     'filename': 'libremoting_host_plugin.x64.so.breakpad.x64',
208     'arch': ['64bit'],
209     'buildtype': ['official'],
210     'archive': 'breakpad-info.zip',
211   },
212   {
213     'filename': 'nacl_irt_x86_32.nexe.debug',
214     'arch': ['32bit'],
215     'buildtype': ['official'],
216     'archive': 'chrome-linux-nacl-irt-syms.zip',
217   },
218   {
219     'filename': 'nacl_irt_x86_64.nexe.debug',
220     'arch': ['64bit'],
221     'buildtype': ['official'],
222     'archive': 'chrome-linux-nacl-irt-syms.zip',
223   },