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

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

Issue 11783036: Remove the SRPC IRT nexes from Chrome installers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 'filename': 'nacl_irt_x86_32.nexe', 102 'filename': 'nacl_irt_x86_32.nexe',
103 'arch': ['32bit'], 103 'arch': ['32bit'],
104 'buildtype': ['dev', 'official'], 104 'buildtype': ['dev', 'official'],
105 }, 105 },
106 { 106 {
107 'filename': 'nacl_irt_x86_64.nexe', 107 'filename': 'nacl_irt_x86_64.nexe',
108 'arch': ['64bit'], 108 'arch': ['64bit'],
109 'buildtype': ['dev', 'official'], 109 'buildtype': ['dev', 'official'],
110 }, 110 },
111 { 111 {
112 'filename': 'nacl_irt_srpc_x86_32.nexe',
113 'arch': ['32bit'],
114 'buildtype': ['dev', 'official'],
115 },
116 {
117 'filename': 'nacl_irt_srpc_x86_64.nexe',
118 'arch': ['64bit'],
119 'buildtype': ['dev', 'official'],
120 },
121 {
122 'filename': 'nacl_helper', 112 'filename': 'nacl_helper',
123 'buildtype': ['dev', 'official'], 113 'buildtype': ['dev', 'official'],
124 }, 114 },
125 { 115 {
126 'filename': 'nacl_helper_bootstrap', 116 'filename': 'nacl_helper_bootstrap',
127 'buildtype': ['dev', 'official'], 117 'buildtype': ['dev', 'official'],
128 }, 118 },
129 ] 119 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698