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

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

Issue 545103003: Adding sync integration tests to official build artifacts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « chrome/tools/build/linux/TESTS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 12 matching lines...) Expand all
23 # filegroup: List of named groups to which this file belongs. 23 # filegroup: List of named groups to which this file belongs.
24 # default: Legacy "default archive". TODO(mmoss): These should 24 # default: Legacy "default archive". TODO(mmoss): These should
25 # be updated to specify an 'archive' name and then this 25 # be updated to specify an 'archive' name and then this
26 # filegroup and the related archive_utils.ParseLegacyList() 26 # filegroup and the related archive_utils.ParseLegacyList()
27 # should go away. 27 # should go away.
28 # symsrc: Files to upload to the symbol server. 28 # symsrc: Files to upload to the symbol server.
29 # optional: List of buildtypes for which the file might not exist, and it's not 29 # optional: List of buildtypes for which the file might not exist, and it's not
30 # considered an error. 30 # considered an error.
31 31
32 FILES = [ 32 FILES = [
33 { 33 {
34 'filename': 'browser_tests.exe', 34 'filename': 'browser_tests.exe',
35 'buildtype': ['official'], 35 'buildtype': ['official'],
36 'archive': 'browser_tests.exe', 36 'archive': 'browser_tests.exe',
37 }, 37 },
38 { 38 {
39 'filename': 'sync_integration_tests.exe',
40 'buildtype': ['official'],
41 'archive': 'sync_integration_tests.exe',
42 },
43 {
39 'filename': 'ffmpegsumo.dll', 44 'filename': 'ffmpegsumo.dll',
40 'buildtype': ['dev', 'official'], 45 'buildtype': ['dev', 'official'],
41 'filegroup': ['default', 'symsrc'], 46 'filegroup': ['default', 'symsrc'],
42 }, 47 },
43 { 48 {
44 'filename': 'chrome.exe', 49 'filename': 'chrome.exe',
45 'buildtype': ['dev', 'official'], 50 'buildtype': ['dev', 'official'],
46 'filegroup': ['default', 'symsrc'], 51 'filegroup': ['default', 'symsrc'],
47 }, 52 },
48 { 53 {
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 'arch': ['32bit'], 744 'arch': ['32bit'],
740 'buildtype': ['official'], 745 'buildtype': ['official'],
741 'archive': 'chrome-win32-nacl-irt-syms.zip', 746 'archive': 'chrome-win32-nacl-irt-syms.zip',
742 }, 747 },
743 { 748 {
744 'filename': 'nacl_irt_x86_64.nexe.debug', 749 'filename': 'nacl_irt_x86_64.nexe.debug',
745 'buildtype': ['official'], 750 'buildtype': ['official'],
746 'archive': 'chrome-win32-nacl-irt-syms.zip', 751 'archive': 'chrome-win32-nacl-irt-syms.zip',
747 }, 752 },
748 ] 753 ]
OLDNEW
« no previous file with comments | « chrome/tools/build/linux/TESTS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698