OLD | NEW |
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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 (r'content_common\.lib$', r'url_constants\.obj$'), | 148 (r'content_common\.lib$', r'url_constants\.obj$'), |
149 (r'gl_wrapper\.lib$', r'gl_switches\.obj$'), | 149 (r'gl_wrapper\.lib$', r'gl_switches\.obj$'), |
150 # TODO(scottmg): These are not solely constants, but look safe. | 150 # TODO(scottmg): These are not solely constants, but look safe. |
151 (r'libjingle_webrtc_common\.lib$', r'localaudiosource\.obj$'), | 151 (r'libjingle_webrtc_common\.lib$', r'localaudiosource\.obj$'), |
152 (r'libjingle_webrtc_common\.lib$', r'mediaconstraintsinterface\.obj$'), | 152 (r'libjingle_webrtc_common\.lib$', r'mediaconstraintsinterface\.obj$'), |
153 (r'\bmedia\.lib$', r'audio_manager_base\.obj$'), | 153 (r'\bmedia\.lib$', r'audio_manager_base\.obj$'), |
154 (r'\bmedia\.lib$', r'media_switches\.obj$'), | 154 (r'\bmedia\.lib$', r'media_switches\.obj$'), |
155 # TODO(scottmg): This one is not solely constants, but looks safe. | 155 # TODO(scottmg): This one is not solely constants, but looks safe. |
156 (r'\bnet\.lib$', r'http_request_headers\.obj$'), | 156 (r'\bnet\.lib$', r'http_request_headers\.obj$'), |
157 (r'\bnet\.lib$', r'net_errors\.obj$'), | 157 (r'\bnet\.lib$', r'net_errors\.obj$'), |
| 158 (r'ppapi_shared\.lib$', r'id_assignment\.obj$'), |
158 (r'ppapi_shared\.lib$', r'ppapi_switches\.obj$'), | 159 (r'ppapi_shared\.lib$', r'ppapi_switches\.obj$'), |
159 (r'printing\.lib$', r'print_job_constants\.obj$'), | 160 (r'printing\.lib$', r'print_job_constants\.obj$'), |
160 (r'skia\.lib$', r'skunpremultiply\.obj$'), | 161 (r'skia\.lib$', r'skunpremultiply\.obj$'), |
161 (r'\bui\.lib$', r'clipboard_constants\.obj$'), | 162 (r'\bui\.lib$', r'clipboard_constants\.obj$'), |
162 (r'\bui\.lib$', r'favicon_size\.obj$'), | 163 (r'\bui\.lib$', r'favicon_size\.obj$'), |
163 (r'\bui\.lib$', r'ui_base_switches\.obj$'), | 164 (r'\bui\.lib$', r'ui_base_switches\.obj$'), |
164 (r'webkit.*plugins_common\.lib$', r'plugin_switches\.obj$'), | 165 (r'webkit.*plugins_common\.lib$', r'plugin_switches\.obj$'), |
165 (r'webkit.*plugins_common\.lib$', r'plugin_constants'), | 166 (r'webkit.*plugins_common\.lib$', r'plugin_constants'), |
166 (r'webkit.*storage\.lib$', r'file_permission_policy\.obj$'), | 167 (r'webkit.*storage\.lib$', r'file_permission_policy\.obj$'), |
167 ], | 168 ], |
168 | 169 |
169 # This manifest will be merged with the intermediate one from the linker, | 170 # This manifest will be merged with the intermediate one from the linker, |
170 # and embedded in both DLLs. | 171 # and embedded in both DLLs. |
171 'manifest': '..\\..\\chrome\\app\\chrome.dll.manifest' | 172 'manifest': '..\\..\\chrome\\app\\chrome.dll.manifest' |
172 } | 173 } |
OLD | NEW |