Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: chrome/tools/build/linux/FILES.cfg

Issue 2777193002: Enable SwiftShader fallback on desktop Linux. (Closed)
Patch Set: Info collected successfully. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 }, 117 },
118 # ANGLE files: 118 # ANGLE files:
119 { 119 {
120 'filename': 'libGLESv2.so', 120 'filename': 'libGLESv2.so',
121 'buildtype': ['dev'], 121 'buildtype': ['dev'],
122 }, 122 },
123 { 123 {
124 'filename': 'libEGL.so', 124 'filename': 'libEGL.so',
125 'buildtype': ['dev'], 125 'buildtype': ['dev'],
126 }, 126 },
127 # SwiftShader files:
128 {
129 'filename': 'swiftshader/libGLESv2.so',
130 'buildtype': ['dev, 'official''],
131 },
132 {
133 'filename': 'swiftshader/libEGL.so',
134 'buildtype': ['dev', 'official'],
135 },
127 # Native Client plugin files: 136 # Native Client plugin files:
128 { 137 {
129 'filename': 'nacl_irt_x86_32.nexe', 138 'filename': 'nacl_irt_x86_32.nexe',
130 'arch': ['32bit'], 139 'arch': ['32bit'],
131 'buildtype': ['dev', 'official'], 140 'buildtype': ['dev', 'official'],
132 }, 141 },
133 { 142 {
134 'filename': 'nacl_irt_x86_64.nexe', 143 'filename': 'nacl_irt_x86_64.nexe',
135 'arch': ['64bit'], 144 'arch': ['64bit'],
136 'buildtype': ['dev', 'official'], 145 'buildtype': ['dev', 'official'],
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 'archive': 'content-shell.zip', 282 'archive': 'content-shell.zip',
274 'optional': ['dev'], 283 'optional': ['dev'],
275 }, 284 },
276 { 285 {
277 'filename': 'resources', 286 'filename': 'resources',
278 'buildtype': ['dev'], 287 'buildtype': ['dev'],
279 'archive': 'content-shell.zip', 288 'archive': 'content-shell.zip',
280 'optional': ['dev'], 289 'optional': ['dev'],
281 }, 290 },
282 ] 291 ]
OLDNEW
« no previous file with comments | « no previous file | content/browser/BUILD.gn » ('j') | content/browser/gpu/gpu_data_manager_impl_private.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698