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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 # that lib. The lib should not match anything in 'all'. | 121 # that lib. The lib should not match anything in 'all'. |
122 # | 122 # |
123 # Note: If you're considering adding something that isn't a _switches or a | 123 # Note: If you're considering adding something that isn't a _switches or a |
124 # _constants file, it'd probably be better to break the target into separate | 124 # _constants file, it'd probably be better to break the target into separate |
125 # .lib files. | 125 # .lib files. |
126 'all_from_libs': [ | 126 'all_from_libs': [ |
127 (r'autofill_common\.lib$', r'switches\.obj$'), | 127 (r'autofill_common\.lib$', r'switches\.obj$'), |
128 (r'autofill_common\.lib$', r'autofill_constants\.obj$'), | 128 (r'autofill_common\.lib$', r'autofill_constants\.obj$'), |
129 (r'\bbase\.lib$', r'scoped_variant\.obj$'), | 129 (r'\bbase\.lib$', r'scoped_variant\.obj$'), |
130 (r'\bbase\.lib$', r'string_util_constants\.obj$'), | 130 (r'\bbase\.lib$', r'string_util_constants\.obj$'), |
| 131 (r'\bbase\.lib$', r'trace_event_impl_constants\.obj$'), |
131 (r'\bbase_i18n\.lib$', r'i18n_constants\.obj$'), | 132 (r'\bbase_i18n\.lib$', r'i18n_constants\.obj$'), |
132 (r'base_static\.lib$', r'base_switches\.obj$'), | 133 (r'base_static\.lib$', r'base_switches\.obj$'), |
133 (r'\bbase\.lib$', r'file_path_constants\.obj$'), | 134 (r'\bbase\.lib$', r'file_path_constants\.obj$'), |
134 (r'\bcc\.lib$', r'switches\.obj$'), | 135 (r'\bcc\.lib$', r'switches\.obj$'), |
135 (r'\bcommon\.lib$', r'constants\.obj$'), | 136 (r'\bcommon\.lib$', r'constants\.obj$'), |
136 (r'\bcommon\.lib$', r'extension_manifest_constants\.obj$'), | 137 (r'\bcommon\.lib$', r'extension_manifest_constants\.obj$'), |
137 (r'\bcommon\.lib$', r'localized_error\.obj$'), | 138 (r'\bcommon\.lib$', r'localized_error\.obj$'), |
138 (r'\bcommon\.lib$', r'url_constants\.obj$'), | 139 (r'\bcommon\.lib$', r'url_constants\.obj$'), |
139 (r'\bcommon\.lib$', r'view_type\.obj$'), | 140 (r'\bcommon\.lib$', r'view_type\.obj$'), |
140 # It sort of looks like most of this lib could go in 'all', but there's a | 141 # It sort of looks like most of this lib could go in 'all', but there's a |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 (r'webkit.*storage\.lib$', r'database_tracker\.obj$'), | 175 (r'webkit.*storage\.lib$', r'database_tracker\.obj$'), |
175 (r'webkit.*storage\.lib$', r'database_util\.obj$'), | 176 (r'webkit.*storage\.lib$', r'database_util\.obj$'), |
176 (r'webkit.*storage\.lib$', r'file_permission_policy\.obj$'), | 177 (r'webkit.*storage\.lib$', r'file_permission_policy\.obj$'), |
177 (r'webkit.*storage\.lib$', r'file_system_task_runners\.obj$'), | 178 (r'webkit.*storage\.lib$', r'file_system_task_runners\.obj$'), |
178 ], | 179 ], |
179 | 180 |
180 # 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, |
181 # and embedded in both DLLs. | 182 # and embedded in both DLLs. |
182 'manifest': '..\\..\\chrome\\app\\chrome.dll.manifest' | 183 'manifest': '..\\..\\chrome\\app\\chrome.dll.manifest' |
183 } | 184 } |
OLD | NEW |