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