Chromium Code Reviews| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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', | |
|
grt (UTC plus 2)
2017/02/23 15:00:50
are there pdb files for these as well?
sugoi
2017/02/23 15:22:55
Yes, I think so (I'm not in front of my Windows de
grt (UTC plus 2)
2017/02/23 15:33:38
In that case, please add stanzas for the .pdbs as
| |
| 388 'buildtype': ['dev', 'official'], | |
| 389 'filegroup': ['default', 'symsrc'], | |
| 390 }, | |
| 391 { | |
| 392 'filename': 'swiftshader/libGLESv2.dll', | |
| 393 'buildtype': ['dev', 'official'], | |
| 394 'filegroup': ['default', 'symsrc'], | |
| 395 }, | |
|
Ken Russell (switch to Gerrit)
2017/02/23 01:58:05
There are conditions like BUILDFLAG(ENABLE_SWIFTSH
sugoi
2017/02/23 03:41:31
Not sure yet, I'm not super knowledgeable about ho
| |
| 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 Loading... | |
| 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 ] |
| OLD | NEW |