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

Side by Side Diff: build/split_link_partition.py

Issue 14850021: Generate, merge, and embed manifest when doing split_link (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 7 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
« no previous file with comments | « no previous file | tools/win/split_link/install_split_link.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
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
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 }
OLDNEW
« no previous file with comments | « no previous file | tools/win/split_link/install_split_link.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698