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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 { | 95 { |
96 'filename': 'xdg-mime', | 96 'filename': 'xdg-mime', |
97 'buildtype': ['dev', 'official'], | 97 'buildtype': ['dev', 'official'], |
98 }, | 98 }, |
99 { | 99 { |
100 'filename': 'xdg-settings', | 100 'filename': 'xdg-settings', |
101 'buildtype': ['dev', 'official'], | 101 'buildtype': ['dev', 'official'], |
102 }, | 102 }, |
103 # CDM files (each has an adapter and the actual CDM): | 103 # CDM files (each has an adapter and the actual CDM): |
104 { | 104 { |
105 'filename': 'libclearkeycdmadapter.so', | 105 'filename': 'ClearKeyCdm/libclearkeycdmadapter.so', |
106 'buildtype': ['dev', 'official'], | 106 'buildtype': ['dev', 'official'], |
107 }, | 107 }, |
108 { | 108 { |
109 'filename': 'libclearkeycdm.so', | 109 'filename': 'ClearKeyCdm/libclearkeycdm.so', |
110 'buildtype': ['dev', 'official'], | 110 'buildtype': ['dev', 'official'], |
111 }, | 111 }, |
112 { | 112 { |
113 'filename': 'libwidevinecdmadapter.so', | 113 'filename': 'WidevineCdm/libwidevinecdmadapter.so', |
114 'arch': ['32bit', '64bit', 'arm'], | 114 'arch': ['32bit', '64bit', 'arm'], |
115 'buildtype': ['official'], | 115 'buildtype': ['official'], |
116 }, | 116 }, |
117 { | 117 { |
118 'filename': 'libwidevinecdm.so', | 118 'filename': 'WidevineCdm/libwidevinecdm.so', |
119 'arch': ['32bit', '64bit', 'arm'], | 119 'arch': ['32bit', '64bit', 'arm'], |
120 'buildtype': ['official'], | 120 'buildtype': ['official'], |
121 'direct_archive': 1, | 121 'direct_archive': 1, |
122 }, | 122 }, |
123 # Native Client plugin files: | 123 # Native Client plugin files: |
124 { | 124 { |
125 'filename': 'nacl_irt_x86_32.nexe', | 125 'filename': 'nacl_irt_x86_32.nexe', |
126 'arch': ['32bit'], | 126 'arch': ['32bit'], |
127 'buildtype': ['dev', 'official'], | 127 'buildtype': ['dev', 'official'], |
128 }, | 128 }, |
129 { | 129 { |
130 'filename': 'nacl_irt_x86_64.nexe', | 130 'filename': 'nacl_irt_x86_64.nexe', |
131 'arch': ['64bit'], | 131 'arch': ['64bit'], |
132 'buildtype': ['dev', 'official'], | 132 'buildtype': ['dev', 'official'], |
133 }, | 133 }, |
134 { | 134 { |
135 'filename': 'nacl_helper', | 135 'filename': 'nacl_helper', |
136 'buildtype': ['dev', 'official'], | 136 'buildtype': ['dev', 'official'], |
137 }, | 137 }, |
138 { | 138 { |
139 'filename': 'nacl_helper_bootstrap', | 139 'filename': 'nacl_helper_bootstrap', |
140 'buildtype': ['dev', 'official'], | 140 'buildtype': ['dev', 'official'], |
141 }, | 141 }, |
142 { | 142 { |
143 'filename': 'nacl_helper_nonsfi', | 143 'filename': 'nacl_helper_nonsfi', |
144 'buildtype': ['dev', 'official'], | 144 'buildtype': ['dev', 'official'], |
145 }, | 145 }, |
146 ] | 146 ] |
OLD | NEW |