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

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

Issue 2715563002: Moving SwiftShader from component to bundled library (Closed)
Patch Set: Fixed some comments Created 3 years, 9 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 { 375 {
376 'filename': 'libEGL.dll', 376 'filename': 'libEGL.dll',
377 'buildtype': ['dev', 'official'], 377 'buildtype': ['dev', 'official'],
378 'filegroup': ['default', 'symsrc'], 378 'filegroup': ['default', 'symsrc'],
379 }, 379 },
380 { 380 {
381 'filename': 'libGLESv2.dll', 381 'filename': 'libGLESv2.dll',
382 'buildtype': ['dev', 'official'], 382 'buildtype': ['dev', 'official'],
383 'filegroup': ['default', 'symsrc'], 383 'filegroup': ['default', 'symsrc'],
384 }, 384 },
385 # SwiftShader files:
386 {
387 'filename': 'swiftshader/libEGL.dll',
388 'buildtype': ['dev', 'official'],
389 'filegroup': ['default', 'symsrc'],
390 },
391 {
392 'filename': 'swiftshader/libGLESv2.dll',
393 'buildtype': ['dev', 'official'],
394 'filegroup': ['default', 'symsrc'],
395 },
385 # Native Client plugin files: 396 # Native Client plugin files:
386 { 397 {
387 'filename': 'nacl_irt_x86_32.nexe', 398 'filename': 'nacl_irt_x86_32.nexe',
388 'arch': ['32bit'], 399 'arch': ['32bit'],
389 'buildtype': ['dev', 'official'], 400 'buildtype': ['dev', 'official'],
390 }, 401 },
391 { 402 {
392 'filename': 'nacl_irt_x86_64.nexe', 403 'filename': 'nacl_irt_x86_64.nexe',
393 'buildtype': ['dev', 'official'], 404 'buildtype': ['dev', 'official'],
394 }, 405 },
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 'archive': 'content-shell.zip', 752 'archive': 'content-shell.zip',
742 'optional': ['dev'], 753 'optional': ['dev'],
743 }, 754 },
744 { 755 {
745 'filename': 'resources', 756 'filename': 'resources',
746 'buildtype': ['dev'], 757 'buildtype': ['dev'],
747 'archive': 'content-shell.zip', 758 'archive': 'content-shell.zip',
748 'optional': ['dev'], 759 'optional': ['dev'],
749 }, 760 },
750 ] 761 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698