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

Side by Side Diff: chrome/tools/build/linux/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: Sync master 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 }, 49 },
50 { 50 {
51 'filename': 'emit_login_prompt_ready', 51 'filename': 'emit_login_prompt_ready',
52 'buildtype': ['dev'], 52 'buildtype': ['dev'],
53 }, 53 },
54 { 54 {
55 'filename': 'icudtl.dat', 55 'filename': 'icudtl.dat',
56 'buildtype': ['dev', 'official'], 56 'buildtype': ['dev', 'official'],
57 }, 57 },
58 { 58 {
59 'filename': 'natives_blob.bin',
jochen (gone - plz use gerrit) 2014/10/15 15:40:14 shouldn't be required yet
baixo1 2014/10/16 10:10:30 Done.
60 'buildtype': ['dev', 'official'],
61 },
62 {
63 'filename': 'snapshot_blob.bin',
64 'buildtype': ['dev', 'official'],
65 },
66 {
59 'filename': 'installer', 67 'filename': 'installer',
60 'buildtype': ['official'], 68 'buildtype': ['official'],
61 }, 69 },
62 { 70 {
63 'filename': 'libffmpegsumo.so', 71 'filename': 'libffmpegsumo.so',
64 'buildtype': ['dev', 'official'], 72 'buildtype': ['dev', 'official'],
65 }, 73 },
66 { 74 {
67 'filename': 'lib/libpeerconnection.so', 75 'filename': 'lib/libpeerconnection.so',
68 'buildtype': ['dev', 'official'], 76 'buildtype': ['dev', 'official'],
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 'buildtype': ['official'], 217 'buildtype': ['official'],
210 'archive': 'chrome-linux-nacl-irt-syms.zip', 218 'archive': 'chrome-linux-nacl-irt-syms.zip',
211 }, 219 },
212 { 220 {
213 'filename': 'nacl_irt_x86_64.nexe.debug', 221 'filename': 'nacl_irt_x86_64.nexe.debug',
214 'arch': ['64bit'], 222 'arch': ['64bit'],
215 'buildtype': ['official'], 223 'buildtype': ['official'],
216 'archive': 'chrome-linux-nacl-irt-syms.zip', 224 'archive': 'chrome-linux-nacl-irt-syms.zip',
217 }, 225 },
218 ] 226 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698