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

Side by Side Diff: build/split_link_partition.py

Issue 14655021: fix line endings on split_link scripts (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/check_installed.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.
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 } 116 }
OLDNEW
« no previous file with comments | « no previous file | tools/win/split_link/check_installed.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698