Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / tools / build / chromeos / FILES.cfg
blob1089fd2fb3ee5319da707b191c5e3c2be783a04d
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 #           Leave this unspecified to prcoess for all architectures.
14 #           Acceptable values are 64bit, 32bit and arm.
15 # buildtype: List of build types for which this file should be processed.
16 # archive: The name of the archive file to store filename in. If not specified,
17 #          filename is added to the default archive (e.g. platform.zip). If
18 #          archive == filename, filename is archived directly, not zipped.
19 # direct_archive: Force a file to be archived as-is, bypassing zip creation.
20 #                 NOTE: This flag will not apply if more than one file has the
21 #                 same 'archive' name, which will create a zip of all the
22 #                 files instead.
23 # optional: List of buildtypes for which the file might not exist, and it's not
24 #           considered an error.
26 FILES = [
27   {
28     'filename': 'chrome',
29     'buildtype': ['dev', 'official'],
30   },
31   {
32     'filename': 'chrome-wrapper',
33     'buildtype': ['dev', 'official'],
34   },
35   {
36     'filename': 'chrome_100_percent.pak',
37     'buildtype': ['dev', 'official'],
38   },
39   {
40     'filename': 'chrome_sandbox',
41     'buildtype': ['dev', 'official'],
42   },
43   {
44     'filename': 'chrome.1',
45     'buildtype': ['dev', 'official'],
46   },
47   {
48     'filename': 'emit_login_prompt_ready',
49     'buildtype': ['dev'],
50   },
51   {
52     'filename': 'installer',
53     'buildtype': ['official'],
54   },
55   {
56     'filename': 'natives_blob.bin',
57     'buildtype': ['dev', 'official'],
58   },
59   {
60     'filename': 'snapshot_blob.bin',
61     'buildtype': ['dev', 'official'],
62   },
63   {
64     'filename': 'lib/libexif.so',
65     'buildtype': ['dev', 'official'],
66   },
67   {
68     'filename': 'lib/libpeerconnection.so',
69     'buildtype': ['dev', 'official'],
70     'optional': ['dev', 'official'],
71   },
72   {
73     'filename': 'locales',
74     'buildtype': ['dev', 'official'],
75   },
76   {
77     'filename': 'product_logo_48.png',
78     'buildtype': ['dev', 'official'],
79   },
80   {
81     'filename': 'resources',
82     'buildtype': ['dev', 'official'],
83   },
84   {
85     'filename': 'resources.pak',
86     'buildtype': ['dev', 'official'],
87   },
88   {
89     'filename': 'session',
90     'buildtype': ['dev'],
91   },
92   {
93     'filename': 'xdg-mime',
94     'buildtype': ['dev', 'official'],
95   },
96   {
97     'filename': 'xdg-settings',
98     'buildtype': ['dev', 'official'],
99   },
100   # CDM files (each has an adapter and the actual CDM):
101   {
102     'filename': 'libclearkeycdmadapter.so',
103     'buildtype': ['dev', 'official'],
104   },
105   {
106     'filename': 'libclearkeycdm.so',
107     'buildtype': ['dev', 'official'],
108   },
109   {
110     'filename': 'libwidevinecdmadapter.so',
111     'arch': ['32bit', '64bit', 'arm'],
112     'buildtype': ['official'],
113   },
114   {
115     'filename': 'libwidevinecdm.so',
116     'arch': ['32bit', '64bit', 'arm'],
117     'buildtype': ['official'],
118     'direct_archive': 1,
119   },
120   # Native Client plugin files:
121   {
122     'filename': 'nacl_irt_x86_32.nexe',
123     'arch': ['32bit'],
124     'buildtype': ['dev', 'official'],
125   },
126   {
127     'filename': 'nacl_irt_x86_64.nexe',
128     'arch': ['64bit'],
129     'buildtype': ['dev', 'official'],
130   },
131   {
132     'filename': 'nacl_helper',
133     'buildtype': ['dev', 'official'],
134   },
135   {
136     'filename': 'nacl_helper_bootstrap',
137     'buildtype': ['dev', 'official'],
138   },
139   {
140     'filename': 'nacl_helper_nonsfi',
141     'buildtype': ['dev', 'official'],
142   },