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