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

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

Issue 594603003: Infrastructure for reading V8's initial snapshot from external files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android tests Created 6 years, 2 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 'filename': 'icudtl.dat', 103 'filename': 'icudtl.dat',
104 'buildtype': ['dev', 'official'], 104 'buildtype': ['dev', 'official'],
105 'optional': ['dev', 'official'], 105 'optional': ['dev', 'official'],
106 }, 106 },
107 { 107 {
108 'filename': 'icudt.dll', 108 'filename': 'icudt.dll',
109 'buildtype': ['dev', 'official'], 109 'buildtype': ['dev', 'official'],
110 'optional': ['dev', 'official'], 110 'optional': ['dev', 'official'],
111 }, 111 },
112 { 112 {
113 'filename': 'natives_blob.bin',
114 'buildtype': ['dev', 'official'],
115 'optional': ['dev', 'official'],
116 },
117 {
118 'filename': 'snapshot_blob.bin',
119 'buildtype': ['dev', 'official'],
120 'optional': ['dev', 'official'],
121 },
122 {
rmcilroy 2014/10/06 15:41:02 It's probably best to remove the Windows and Mac s
baixo 2014/10/07 14:53:27 Done.
113 'filename': 'libexif.dll', 123 'filename': 'libexif.dll',
114 'buildtype': ['dev', 'official'], 124 'buildtype': ['dev', 'official'],
115 'filegroup': ['default', 'symsrc'], 125 'filegroup': ['default', 'symsrc'],
116 }, 126 },
117 { 127 {
118 'filename': 'libpeerconnection.dll', 128 'filename': 'libpeerconnection.dll',
119 'buildtype': ['dev', 'official'], 129 'buildtype': ['dev', 'official'],
120 'optional': ['dev', 'official'], 130 'optional': ['dev', 'official'],
121 'filegroup': ['default', 'symsrc'], 131 'filegroup': ['default', 'symsrc'],
122 }, 132 },
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 'arch': ['32bit'], 754 'arch': ['32bit'],
745 'buildtype': ['official'], 755 'buildtype': ['official'],
746 'archive': 'chrome-win32-nacl-irt-syms.zip', 756 'archive': 'chrome-win32-nacl-irt-syms.zip',
747 }, 757 },
748 { 758 {
749 'filename': 'nacl_irt_x86_64.nexe.debug', 759 'filename': 'nacl_irt_x86_64.nexe.debug',
750 'buildtype': ['official'], 760 'buildtype': ['official'],
751 'archive': 'chrome-win32-nacl-irt-syms.zip', 761 'archive': 'chrome-win32-nacl-irt-syms.zip',
752 }, 762 },
753 ] 763 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698