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

Side by Side Diff: scripts/make_mac_assembly.sh

Issue 255943004: Add icudt.dll for Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/icu52/
Patch Set: Add icudt.dll for Windows Created 6 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 | « patches/data.build.win.patch ('k') | source/data/makedata.mak » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
## -0,0 +1 ##
+LF
\ No newline at end of property
OLDNEW
(Empty)
1 #!/bin/bash
2 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 ICUROOT="$(dirname $0)/.."
7 LINUX_SOURCE="${ICUROOT}/linux/icudtl_dat.S"
8 MAC_SOURCE="${ICUROOT}/mac/icudtl_dat.S"
9
10 cat > ${MAC_SOURCE} <<PREAMBLE
11 .globl _icudt52_dat
12 #ifdef U_HIDE_DATA_SYMBOL
13 .private_extern _icudt52_dat
14 #endif
15 .data
16 .const
17 .align 4
18 _icudt52_dat:
19 PREAMBLE
20
21 PREAMBLE_LENGTH=$(($(egrep -n '^icudt' ${LINUX_SOURCE} | cut -d : -f 1) + 1))
22 tail -n +${PREAMBLE_LENGTH} ${LINUX_SOURCE} >> ${MAC_SOURCE}
OLDNEW
« no previous file with comments | « patches/data.build.win.patch ('k') | source/data/makedata.mak » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698