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. |
11 | 11 |
12 # chrome0.dll. | 12 # chrome.dll. |
13 [ | 13 [ |
14 r'.*', | 14 r'.*', |
15 ], | 15 ], |
16 | 16 |
17 # chrome1.dll. | 17 # chrome1.dll. |
18 [ | 18 [ |
19 r'\\libwebp\\.*\.lib$', | 19 r'\\libwebp\\.*\.lib$', |
20 r'\\media\\.*\.lib$', | 20 r'\\media\\.*\.lib$', |
21 r'bindings', | 21 r'bindings', |
22 r'content_worker\.lib$', | 22 r'content_worker\.lib$', |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 r'^strmiids\.lib$', | 106 r'^strmiids\.lib$', |
107 r'^user32\.winxp\.lib$', | 107 r'^user32\.winxp\.lib$', |
108 r'^usp10\.lib$', | 108 r'^usp10\.lib$', |
109 r'^uuid\.lib$', | 109 r'^uuid\.lib$', |
110 r'^version\.lib$', | 110 r'^version\.lib$', |
111 r'^wininet\.lib$', | 111 r'^wininet\.lib$', |
112 r'^winmm\.lib$', | 112 r'^winmm\.lib$', |
113 r'^winspool\.lib$', | 113 r'^winspool\.lib$', |
114 r'^ws2_32\.lib$', | 114 r'^ws2_32\.lib$', |
115 ], | 115 ], |
| 116 |
| 117 # This manifest will be merged with the intermediate one from the linker, |
| 118 # and embedded in both DLLs. |
| 119 'manifest': '..\\..\\chrome\\app\\chrome.dll.manifest' |
116 } | 120 } |
OLD | NEW |