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

Side by Side Diff: build/split_link_partition.py

Issue 15622002: add net_errors to both sides for split_link (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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
« no previous file with comments | « no previous file | 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 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This dict determines how chrome.dll is split into multiple parts. 5 # This dict determines how chrome.dll is split into multiple parts.
6 { 6 {
7 'parts': [ 7 'parts': [
8 # These sections are matched in order, and a matching input will go into 8 # These sections are matched in order, and a matching input will go into
9 # the part for the last block that matches. Inputs are lower()d before 9 # the part for the last block that matches. Inputs are lower()d before
10 # the regex is run. 10 # the regex is run.
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 (r'content_common\.lib$', r'page_zoom\.obj$'), 145 (r'content_common\.lib$', r'page_zoom\.obj$'),
146 (r'content_common\.lib$', r'url_constants\.obj$'), 146 (r'content_common\.lib$', r'url_constants\.obj$'),
147 (r'gl_wrapper\.lib$', r'gl_switches\.obj$'), 147 (r'gl_wrapper\.lib$', r'gl_switches\.obj$'),
148 # TODO(scottmg): These are not solely constants, but look safe. 148 # TODO(scottmg): These are not solely constants, but look safe.
149 (r'libjingle_webrtc_common\.lib$', r'localaudiosource\.obj$'), 149 (r'libjingle_webrtc_common\.lib$', r'localaudiosource\.obj$'),
150 (r'libjingle_webrtc_common\.lib$', r'mediaconstraintsinterface\.obj$'), 150 (r'libjingle_webrtc_common\.lib$', r'mediaconstraintsinterface\.obj$'),
151 (r'\bmedia\.lib$', r'audio_manager_base\.obj$'), 151 (r'\bmedia\.lib$', r'audio_manager_base\.obj$'),
152 (r'\bmedia\.lib$', r'media_switches\.obj$'), 152 (r'\bmedia\.lib$', r'media_switches\.obj$'),
153 # TODO(scottmg): This one is not solely constants, but looks safe. 153 # TODO(scottmg): This one is not solely constants, but looks safe.
154 (r'\bnet\.lib$', r'http_request_headers\.obj$'), 154 (r'\bnet\.lib$', r'http_request_headers\.obj$'),
155 (r'\bnet\.lib$', r'net_errors\.obj$'),
155 (r'ppapi_shared\.lib$', r'ppapi_switches\.obj$'), 156 (r'ppapi_shared\.lib$', r'ppapi_switches\.obj$'),
156 (r'printing\.lib$', r'print_job_constants\.obj$'), 157 (r'printing\.lib$', r'print_job_constants\.obj$'),
157 (r'skia\.lib$', r'skunpremultiply\.obj$'), 158 (r'skia\.lib$', r'skunpremultiply\.obj$'),
158 (r'\bui\.lib$', r'clipboard_constants\.obj$'), 159 (r'\bui\.lib$', r'clipboard_constants\.obj$'),
159 (r'\bui\.lib$', r'favicon_size\.obj$'), 160 (r'\bui\.lib$', r'favicon_size\.obj$'),
160 (r'\bui\.lib$', r'ui_base_switches\.obj$'), 161 (r'\bui\.lib$', r'ui_base_switches\.obj$'),
161 (r'webkit.*plugins_common\.lib$', r'plugin_switches\.obj$'), 162 (r'webkit.*plugins_common\.lib$', r'plugin_switches\.obj$'),
162 (r'webkit.*plugins_common\.lib$', r'plugin_constants'), 163 (r'webkit.*plugins_common\.lib$', r'plugin_constants'),
163 (r'webkit.*storage\.lib$', r'file_permission_policy\.obj$'), 164 (r'webkit.*storage\.lib$', r'file_permission_policy\.obj$'),
164 ], 165 ],
165 166
166 # This manifest will be merged with the intermediate one from the linker, 167 # This manifest will be merged with the intermediate one from the linker,
167 # and embedded in both DLLs. 168 # and embedded in both DLLs.
168 'manifest': '..\\..\\chrome\\app\\chrome.dll.manifest' 169 'manifest': '..\\..\\chrome\\app\\chrome.dll.manifest'
169 } 170 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698