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

Side by Side Diff: build/split_link_partition.py

Issue 16091011: 2nd try: Split webkit_storage target into webkit_storage_{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: splint_link fix Created 7 years, 6 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 # 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 (r'ppapi_shared\.lib$', r'net_address_private_impl_constants\.obj$'), 164 (r'ppapi_shared\.lib$', r'net_address_private_impl_constants\.obj$'),
165 (r'printing\.lib$', r'print_job_constants\.obj$'), 165 (r'printing\.lib$', r'print_job_constants\.obj$'),
166 (r'protobuf_lite\.lib$', r'generated_message_util\.obj$'), 166 (r'protobuf_lite\.lib$', r'generated_message_util\.obj$'),
167 (r'skia\.lib$', r'skunpremultiply\.obj$'), 167 (r'skia\.lib$', r'skunpremultiply\.obj$'),
168 (r'skia\.lib$', r'skblitter\.obj$'), 168 (r'skia\.lib$', r'skblitter\.obj$'),
169 (r'\bui\.lib$', r'clipboard_constants\.obj$'), 169 (r'\bui\.lib$', r'clipboard_constants\.obj$'),
170 (r'\bui\.lib$', r'favicon_size\.obj$'), 170 (r'\bui\.lib$', r'favicon_size\.obj$'),
171 (r'\bui\.lib$', r'ui_base_switches\.obj$'), 171 (r'\bui\.lib$', r'ui_base_switches\.obj$'),
172 (r'webkit.*plugins_common\.lib$', r'plugin_switches\.obj$'), 172 (r'webkit.*plugins_common\.lib$', r'plugin_switches\.obj$'),
173 (r'webkit.*plugins_common\.lib$', r'plugin_constants'), 173 (r'webkit.*plugins_common\.lib$', r'plugin_constants'),
174 (r'webkit.*storage\.lib$', r'appcache_interfaces\.obj$'), 174 (r'webkit.*storage_common\.lib$', r'appcache_interfaces\.obj$'),
175 (r'webkit.*storage\.lib$', r'database_tracker\.obj$'), 175 (r'webkit.*storage_browser\.lib$', r'database_tracker\.obj$'),
176 (r'webkit.*storage\.lib$', r'database_util\.obj$'), 176 (r'webkit.*storage_browser\.lib$', r'database_util\.obj$'),
177 (r'webkit.*storage\.lib$', r'file_permission_policy\.obj$'), 177 (r'webkit.*storage_browser\.lib$', r'file_permission_policy\.obj$'),
178 (r'webkit.*storage\.lib$', r'file_system_task_runners\.obj$'), 178 (r'webkit.*storage_browser\.lib$', r'file_system_task_runners\.obj$'),
179 ], 179 ],
180 180
181 # This manifest will be merged with the intermediate one from the linker, 181 # This manifest will be merged with the intermediate one from the linker,
182 # and embedded in both DLLs. 182 # and embedded in both DLLs.
183 'manifest': '..\\..\\chrome\\app\\chrome.dll.manifest' 183 'manifest': '..\\..\\chrome\\app\\chrome.dll.manifest'
184 } 184 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698